-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor join implementations to support existence joins and BHJ building hash map on driver side. supports spark333 batch shuffle reading. update rust-toolchain to latest nightly version. other minor improvements. update docs.
- Loading branch information
zhangli20
committed
Jul 1, 2024
1 parent
173607e
commit 8e4b4cd
Showing
73 changed files
with
4,750 additions
and
3,592 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
# blaze-v2.0.9.1 | ||
# blaze-v3.0.0 | ||
|
||
## Features | ||
* Supports failing-back nondeterministic expressions. | ||
* Supports "$[].xxx" jsonpath syntax in get_json_object(). | ||
* Supports using spark.io.compression.codec for shuffle/broadcast compression | ||
* Supports date type casting | ||
* Refactor join implementations to support existence joins and BHJ building hash map on driver side | ||
|
||
## Performance | ||
* Supports adaptive batch size in ParquetScan, improving vectorized reading performance. | ||
* Supports directly spill to disk file when on-heap memory is full. | ||
* Fixed performance issues when running on spark3 with default configurations | ||
* Use cached parquet metadata | ||
* Refactor native broadcast to avoid duplicated broadcast jobs | ||
* Supports spark333 batch shuffle reading | ||
|
||
## Bugfix | ||
* Fix incorrect parquet rowgroup pruning with files containing deprecated min/max values. | ||
* Fix in_list conversion in from_proto.rs |
Oops, something went wrong.