-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-51016][SQL] Fix for incorrect results on retry for Left Outer Join with indeterministic join keys #50029
base: master
Are you sure you want to change the base?
Conversation
It is unclear to me why the changes to spark core are required - marking the RDD with the appropriate |
|
…minism via curried constructor of AttributeReference, as per feedback. Renamed the boolean
…minism via curried constructor of AttributeReference, as per feedback. Renamed the boolean
@mridulm @squito ,
Consider the test "SPARK-51016: ShuffleMapStage using indeterministic join keys should be INDETERMINATE", in newly added file ShuffleMapStageTest For RDD to me marked as inDeterministic, what else do you have in mind ? Partitioner interface augmentation ? |
What changes were proposed in this pull request?
Added a new boolean hasIndeterminism in the Expression class, to indicate whether the expression's evaluation result was obtained using some indeterministic calculation.
The main difference between existing deterministic boolean and hasIndeterminism is , that the former determines that if same expression is evaluated more than once in a given iteration would its value change or not. Also on that basis, AttributeReference would always be deterministic.
But the latter indicates if an expression's evaluation used/uses any non deterministic component. So here even the leaf expression ( like Attribute) can have hasIndeterminism flag as true, if its pointing to some result obtained via indeterministic calculation.
To further elaborate, consider following Alias expression:
Apart from that code of ShuffleDependency is augmented to indicate if the hashing expression is using any non deterministic component.
Why are the changes needed?
The method Stage.isIndeterminate is not returning true in case the ShuffleDependency is using Partitioner based on an inDeterministic evaluator. The bug is at Stage and RDD level.
SQL expression which is using an Attribute derived from an inDeterministic Expression, looses the information, that its Output is using an InDeterministic component or equivalently put, the Partition Evaluator function given to Partitioner is of inDeterministic nature.
Does this PR introduce any user-facing change?
No
How was this patch tested?
Added unit tests / Bug test to validate the behaviour of InDeterministic Stages
Was this patch authored or co-authored using generative AI tooling?
No