-
Notifications
You must be signed in to change notification settings - Fork 2k
feat(aws_s3 sink): Add Apache Parquet encoder support #24372
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
Open
rorylshanks
wants to merge
18
commits into
vectordotdev:master
Choose a base branch
from
rorylshanks:add-parquet
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,386
−58
Open
Changes from 12 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
c120c86
Added parquet encoding to Vector AWS S3 Output
rorylshanks 1b630aa
Added schema def
rorylshanks 5a7f6bf
Added parquet to default features
rorylshanks 52d4c8e
Added changelog item for parquet
rorylshanks 672999d
Pre-allocate buffer for parquet output based on herustic 2kb per even…
rorylshanks b54228f
Added ability to write bloom filters to parquet files. Configurable b…
rorylshanks 9c9bb9e
Use parquet V2 by default, added compression level support, added sch…
rorylshanks 3377365
Merge branch 'master' into add-parquet
rorylshanks 0adb848
Merge branch 'master' into add-parquet
rorylshanks f9178c2
Add exceptions to spelling/expect.txt
thomasqueirozb 31a76cf
Merge remote-tracking branch 'origin/master' into add-parquet
thomasqueirozb a0ca0bf
cargo fmt
thomasqueirozb b5d0859
Update Cargo.toml
rorylshanks 861d9a4
Fixed docs and check failures
rorylshanks a30e58c
Merge branch 'master' into add-parquet
rorylshanks d871753
Merge branch 'master' into add-parquet
rorylshanks 63fb18d
updated LICENSE-3rdparty.csv
rorylshanks 4d660af
Fixed markdown checker
rorylshanks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| The `aws_s3` sink now supports [Apache Parquet](https://parquet.apache.org/) encoding, enabling | ||
| Vector to write columnar Parquet files optimized for analytics workloads. | ||
|
|
||
| Parquet is a columnar storage format that provides efficient compression and encoding schemes, | ||
| making it ideal for long-term storage and query performance with tools like AWS Athena, Apache Spark, | ||
| and Presto. Users can now configure Parquet encoding with custom schemas defined directly in YAML | ||
| as a simple map of field names to data types. | ||
|
|
||
| Features include: | ||
| - Support for all common data types: strings (utf8), integers (int8-int64), unsigned integers, | ||
| floats (float32, float64), timestamps (second/millisecond/microsecond/nanosecond precision), | ||
| booleans, binary data, and decimals | ||
| - Configurable compression algorithms: snappy (default), gzip, zstd, lz4, brotli, or uncompressed | ||
|
|
||
| Each batch of events becomes one Parquet file in S3, with batch size controlled by the standard | ||
| `batch.max_events`, `batch.max_bytes`, and `batch.timeout_secs` settings. | ||
|
|
||
| authors: rorylshanks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.