-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PERF] Split parquet scan tasks into individual row groups (#1799)
## Benchmark results All times averaged over 5 runs. ### Single file read Read one file in S3 using Ray with 4 worker nodes Parquet file info: - number of rows: 18,751,674 - number of row groups: 18 - file size: 711.3 MiB - number of columns: 16 | Split threshold (MiB) | # of scan tasks | Read time | |--------|--------|--------| | 32 | 18 | 3.84s | | 64 | 9 | 4.21s | | 128 | 5 | 5.47s | | 256 | 3 | 4.45s | | 512 | 2 | 6.06s | | 1024 | 1 | 10.51s | ### Multi-file workflow Read and aggregate (Dataframe.count()) 32 files in S3 using Ray with 4 worker nodes Parquet file info: - total rows: 600,037,902 - number of row groups per file: 18 - file sizes: 710.7-711.5 MiB - number of columns: 16 | Split threshold (MiB) | # of scan tasks per file | Time (4 workers) | Time (8 workers) | |--------|--------|--------|--------| | 32 | 18 | 23.83s | 14.17s | | 64 | 9 | 24.99s | 14.17s | | 128 | 5 | 26.51s | 15.23s | | 256 | 3 | 27.96s | 16.58s | | 512 | 2 | 30.27s | 16.85s | | 1024 | 1 | 26.50s | 29.06s | (Averaged over 5 runs)
- Loading branch information
1 parent
f471738
commit 8aba872
Showing
11 changed files
with
211 additions
and
70 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
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
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
Oops, something went wrong.