feat(java): speed up zonemap reads#6906
Open
summaryzb wants to merge 1 commit into
Open
Conversation
Replaces per-row JNI object construction with a single Arrow IPC byte stream returned across the JNI boundary, then decoded back to List<ZoneStats> in pure Java via the new ZonemapStatsCodec. The profiled hot path drops from O(N) JNI calls (one new_object + 3 method invocations per zone, plus per-value scalar_value_to_java) to O(1) — one byte[] crossing the boundary, regardless of zone count. Tests: - New ZonemapStatsCodecTest: 9 tests on synthetic IPC streams covering empty/null bytes, null-in-non-nullable across all id columns, date/ timestamp round-trip, and multi-batch ordering. - ZonemapStatsTest extended with 6 integration tests covering VARCHAR, FLOAT8, BIT, DATEDAY, non-TZ TIMESTAMP, and all-null zones (was IntVector-only). Change-Id: If0680e1be67c9c9323d7c6d34b8727f34a599068
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Replaces per-row JNI object construction with a single Arrow IPC byte stream returned across the JNI boundary, then decoded back to List in pure Java via the new ZonemapStatsCodec. The profiled hot path drops from O(N) JNI calls (one new_object + 3 method invocations per zone, plus per-value scalar_value_to_java) to O(1) — one byte[] crossing the boundary, regardless of zone count.
Tests: