-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[WIP][SPARK-35137][SQL] Revise outputpartitioning in some SparkPlan #32236
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
Conversation
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #137630 has finished for PR 32236 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #137855 has finished for PR 32236 at commit
|
| val df3 = Seq(1 -> "a").toDF("i", "j").orderBy($"i") | ||
| val df4 = Seq(1 -> "a").toDF("i", "j").orderBy($"i") | ||
| val df3 = Seq(1 -> "a", 2 -> "b").toDF("i", "j").orderBy($"i") | ||
| val df4 = Seq(1 -> "a", 2 -> "b").toDF("i", "j").orderBy($"i") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seq(1 -> "a").toDF("i", "j") output partitioning number is 1 so it's SinglePartition.
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #137899 has finished for PR 32236 at commit
|
|
Kubernetes integration test unable to build dist. exiting with code: 1 |
…outputpartitioning
|
Test build #138777 has finished for PR 32236 at commit
|
|
Kubernetes integration test unable to build dist. exiting with code: 1 |
|
We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable. |
What changes were proposed in this pull request?
Revise the outputPartitioning number in some
SparkPlanThe mian change follow the logical
rdd.partitions.lengthchild.outputPartitioning.numPartitionsSinglePartitionWhy are the changes needed?
Make outputPartitioning more reasonable.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Pass CI.