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

Avro codec enhancements #6965

Open
wants to merge 45 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
7d4e6fd
Added basic support for arrow -> avro codec along with beginnings of …
jecsand838 Dec 28, 2024
36d56a9
Added codec support + tests for:
jecsand838 Dec 30, 2024
36b4b73
Added reader record decoder support for non-null Enum, Map, and Decim…
jecsand838 Dec 31, 2024
9d0bf4c
Added reader record decoder support for non-null Enum, Map, and Decim…
jecsand838 Dec 31, 2024
082581a
Added reader record decoder support for non-null Enum, Map, and Decim…
jecsand838 Dec 31, 2024
6647b25
Added null support
jecsand838 Dec 31, 2024
9cfda09
* Reader decoder Support for nullable types.
jecsand838 Dec 31, 2024
84ffb62
* Minor Cleanup
jecsand838 Dec 31, 2024
8600680
* Added record decoder support for the following types:
jecsand838 Dec 31, 2024
2792037
Merge pull request #1 from elastiflow/avro-codec-improvements
svencowart Jan 3, 2025
3029efc
Merge branch 'apache:main' into avro-codec
jecsand838 Jan 3, 2025
01e5224
Merge branch 'apache:main' into avro-codec
jecsand838 Jan 6, 2025
8331058
Minor cleanup
jecsand838 Jan 6, 2025
c54de48
chore: import cleanup and formatting
svencowart Jan 7, 2025
fc696c8
chore: simplifies and cleans code
svencowart Jan 7, 2025
81d7bba
ran linter
jecsand838 Jan 10, 2025
03bd5f0
Merge branch 'apache:main' into avro-codec
jecsand838 Jan 10, 2025
eeabc49
Merge branch 'apache:main' into avro-codec
jecsand838 Jan 13, 2025
1bc9a51
Removed Avro writer module and Avro writer related logic from codec.rs
jecsand838 Jan 13, 2025
b157584
chore: clean up UUIDs and Durations
svencowart Jan 14, 2025
8d0fe77
chore: clean up UUIDs Durations
svencowart Jan 14, 2025
0496dcf
add aliases to record fields
svencowart Jan 14, 2025
7208f78
Merge branch 'apache:main' into avro-codec
jecsand838 Jan 14, 2025
92e105f
* Fixed size issue in codec.rs fixed type decimal
jecsand838 Jan 15, 2025
51586d8
* Removed Avro writer specific `maybe_add_namespace` function from co…
jecsand838 Jan 17, 2025
a51b202
Aligns mapping between avro and codec and tests all paths of arrow_fi…
svencowart Jan 17, 2025
5585a87
* Organized Types to match Avro spec ordering
jecsand838 Jan 18, 2025
26faf5b
* Fixed failing `test_enum_decoding` test due to constructing Codec:…
jecsand838 Jan 18, 2025
cf45fcf
* Optimized avro codec.rs data_type Self::Decimal case:
jecsand838 Jan 18, 2025
75e0ad1
Fixed hyperlink linter errors
jecsand838 Jan 29, 2025
f93331d
Implemented improved defaults
jecsand838 Feb 2, 2025
eee3948
Implemented `test_nonnullable_impala` in `arrow-avro/src/reader/mod.rs`
jecsand838 Feb 3, 2025
6d1ae49
Implemented `test_nullable_impala` testcase in `arrow-avro/src/reader…
jecsand838 Feb 6, 2025
332b3fb
linter
jecsand838 Feb 7, 2025
fadbf5e
Added a `strict_model` parameter to the Avro `read_file` method for e…
jecsand838 Feb 7, 2025
dbe8555
Added `test_nulls_snappy` and ``test_repeated_no_annotation` to `arro…
jecsand838 Feb 8, 2025
ec6d0ca
Added remaining Avro `read_file` tests to `arrow-avro/src/reader/mod.rs`
jecsand838 Feb 8, 2025
dbdf79a
Added Avro `Decoder`, `ReaderBuilder`, and `Reader`
jecsand838 Feb 9, 2025
fffcbed
Implemented Avro `Decoder`, `ReaderBuilder`, and `Reader` + minor cod…
jecsand838 Feb 11, 2025
e5c9dd6
Merge branch 'main' into avro-codec
jecsand838 Feb 11, 2025
3dfe0df
Optimized the code in Avro codec.rs and record.rs files.
jecsand838 Feb 12, 2025
0de2eda
Small arrow-avro lib.rs update
jecsand838 Feb 12, 2025
0bea7cc
Merge branch 'main' into avro-codec
jecsand838 Feb 15, 2025
ad34fb4
Reverted all changes not related to enhanced Avro codec and record de…
jecsand838 Feb 15, 2025
3424300
Fixed dev-dependency lint issue and removed some currently unused fun…
jecsand838 Feb 16, 2025
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
9 changes: 5 additions & 4 deletions arrow-avro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ path = "src/lib.rs"
bench = false

[features]
default = ["deflate", "snappy", "zstd"]
default = ["deflate", "snappy", "zstd", "bzip2", "xz"]
deflate = ["flate2"]
snappy = ["snap", "crc"]

Expand All @@ -47,9 +47,10 @@ serde = { version = "1.0.188", features = ["derive"] }
flate2 = { version = "1.0", default-features = false, features = ["rust_backend"], optional = true }
snap = { version = "1.0", default-features = false, optional = true }
zstd = { version = "0.13", default-features = false, optional = true }
bzip2 = { version = "0.4.4", default-features = false, optional = true }
xz = { version = "0.1.0", default-features = false, optional = true }
crc = { version = "3.0", optional = true }


[dev-dependencies]
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }

arrow-data = { workspace = true }
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }
Loading