[AURON #2431] Prune Iceberg changelog tasks by metadata predicates - #2456
Open
goutamadwant wants to merge 1 commit into
Open
[AURON #2431] Prune Iceberg changelog tasks by metadata predicates#2456goutamadwant wants to merge 1 commit into
goutamadwant wants to merge 1 commit into
Conversation
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.
Which issue does this PR close?
Closes #2431
Rationale for this change
Iceberg changelog metadata values are constant for each changelog task. Auron currently plans every supported task in the changelog range even when a predicate on
_change_type,_commit_snapshot_id, or_change_ordinalproves that a task cannot match.What changes are included in this PR?
=andINpredicates combined withAND.OR,NOT, complex expressions, mixed data-column predicates, and ambiguous scan matches on the existing post-scan filter path.Are there any user-facing changes?
Yes. Eligible Iceberg changelog queries plan and read fewer native scan files. There are no public API or configuration changes.
How was this patch tested?
AuronIcebergIntegrationSuite: 43 tests passed../dev/reformat --check: passed across the configured Spark 3.0-3.5 and 4.0-4.1 profiles../build/mvn -B spotless:check test-compile -pl thirdparty/auron-iceberg -am -Ppre -Pscala-2.12 -Pspark-3.5 -Piceberg-1.10.1 -DskipBuildNative -DskipTests: passed.Was this patch authored or co-authored using generative AI tooling?
Codex was used to Review and understand the codebase