Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Async file close and S3 upload #101

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions writers/parquet/parquet.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,15 @@
}

for basePath, parquetFiles := range p.partitionedFiles {
for _, fileMetadata := range parquetFiles {
// TODO: Async file close and S3 upload (Good First Issue)
ctx := context.Background()
err := utils.Concurrent(ctx, parquetFiles, len(parquetFiles), func(_ context.Context, fileMetadata FileMetadata, _ int) error {
// construct full file path
filePath := filepath.Join(p.config.Path, basePath, fileMetadata.fileName)

// Remove empty files
if fileMetadata.recordCount == 0 {
removeLocalFile(filePath, "no records written", fileMetadata.recordCount)
continue
return nil
}

// Close writers
Expand Down Expand Up @@ -286,6 +286,10 @@
removeLocalFile(filePath, "uploaded to S3", fileMetadata.recordCount)
logger.Infof("Successfully uploaded file to S3: s3://%s/%s", p.config.Bucket, s3KeyPath)
}
return nil
})
if err != nil {
return fmt.Errorf("failed to close writers and files: %s", err)
}
}
return nil
Expand Down Expand Up @@ -350,7 +354,7 @@
switch granularity {
case "HH":
value = timestamp.UTC().Hour()
case "DD":

Check failure on line 357 in writers/parquet/parquet.go

View workflow job for this annotation

GitHub Actions / golangci-lint

File is not properly formatted (gofmt)
value = timestamp.UTC().Day()
case "WW":
_, value = timestamp.UTC().ISOWeek()
Expand All @@ -366,6 +370,7 @@
}
return fmt.Sprintf("%v", value)
}

if colName == "now()" {
return granularityFunction(time.Now().UTC())
}
Expand Down
Loading