compared to java ORC, Velox has a more significant read amplification issue #17068
Unanswered
zhaiyuyong0412-dot
asked this question in
Q&A
Replies: 2 comments 2 replies
|
Hi @zhaiyuyong0412-dot, thank you for initiating this discussion. Could you add some code pointers to help us better identify where the problem is? cc @Yuhta |
1 reply
|
I am not sure what the issue is, we have row group level skipping and merging of the conditions, we also have row level skipping that Apache ORC reader does not have. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The Java ORC logic first filters out the position of each row group based on the pushdown conditions, and then performs a merge
However, when Velox reads from Orc, the row group skip function becomes ineffective when multiple columns are merged
All reactions