Skip to content

Commit e18f8e8

Browse files
committed
[SPARK-59080][SQL][4.1] Pick one ShuffleSpecCollection member for the SPJ pushdown and the re-shuffle
### Backport of apache#58527 to `branch-4.2` Cherry-pick of `4605662b6e4` with two test-only adjustments; the production change applies unchanged. - The subset opt-in is named `spark.sql.sources.v2.bucketing.allowJoinKeysSubsetOfPartitionKeys.enabled` on this branch, so the four `V2_BUCKETING_ALLOW_KEYS_SUBSET_OF_PARTITION_KEYS` references in the new tests become `V2_BUCKETING_ALLOW_JOIN_KEYS_SUBSET_OF_PARTITION_KEYS`. - `PartitioningCollection.fromPartitionings` does not exist here, and neither does the invariant it maintains: this branch's `PartitioningCollection` only requires its members to agree on `numPartitions`, with no shared `partitionKeys` reference to intern. The two fixtures use the plain constructor, which the members' equal key lists make sound. Green on this branch: `ShuffleSpecSuite` 13 tests, `EnsureRequirementsSuite` + `KeyGroupedPartitioningSuite` 162 tests, all passing. `dev/lint-scala` is clean. --- ### What changes were proposed in this pull request? `EnsureRequirements` stops asking a `ShuffleSpecCollection` for a single answer. It resolves the one member the matched children agreed on, preferring the finest when several qualify, and uses that member to build a re-shuffled child's partitioning. - `flattenSpec` replaces the head read. It recurses, because `ShuffledJoin.outputPartitioning` builds `PartitioningCollection.fromPartitionings(Seq(left, right))` for an inner join, so a chain of same-key joins nests collections. - The chosen member has to be compatible with every matched child. When no member is, there is no shared layout, so every child takes the ordinary shuffle. Reaching that needs three or more clustered children, and no operator has three today. - The `joinKeyPositions` pushed into a compatible child now come from that child's own matching member, because they index into that child's partition expressions. - `ShuffleSpecCollection.createPartitioning` is untouched. Its `require` stays as a guard, and a new unit test pins it. ### Why are the changes needed? Under `spark.sql.sources.v2.bucketing.allowKeysSubsetOfPartitionKeys.enabled`, `KeyedPartitioning.createShuffleSpec` projects each member of a `PartitioningCollection` onto *its own* join-key subset and drops the duplicate keys that projection creates. The members of the resulting `ShuffleSpecCollection` can therefore end up with different `numPartitions`. `EnsureRequirements` then asks the collection for a shuffle template, and `ShuffleSpecCollection.createPartitioning` requires all members to agree: ``` java.lang.IllegalArgumentException: requirement failed: expected all specs in the collection to have the same number of partitions ``` so planning fails outright. With `items` partitioned by `[identity(id), identity(arrive_time)]`, one row per split, `purchases` unpartitioned, and `v2BucketingShuffleEnabled=true`, `partiallyClusteredDistribution=false`, `allowKeysSubsetOfPartitionKeys=true`: ```sql SELECT /*+ MERGE(i, p) */ id, t1, t2, i.price AS purchase_price, p.price AS sale_price FROM (SELECT id, arrive_time AS t1, arrive_time AS t2, price FROM testcat.ns.items) i JOIN testcat.ns.purchases p ON i.id = p.item_id AND i.t1 = p.time ``` Selecting `arrive_time` twice under two aliases makes the alias cross-product produce members that cover different numbers of join keys, which is where the counts diverge. The collection cannot answer that question locally. `isCompatibleWith` succeeds when *any* member matches, so the collection alone never said which member the two sides agreed on, and `createPartitioning` fell back to `specs.head`, whichever the alias cross-product enumerated first. Narrowing the collection to its finest members would satisfy the `require`, but it would still be a guess: the right member is the one the *other* side matched, and that is only visible in `EnsureRequirements`. ### Does this PR introduce _any_ user-facing change? Yes. The query above failed to plan and now runs, producing one shuffle and the right rows. The `joinKeyPositions` half is user-facing too. I originally wrote here that it was latent, on the grounds that a cogroup's grouping key is synthesized so neither side stays keyed. sunchao pointed out that this is only true of the Scala `CoGroupExec`, whose key comes from an `AppendColumns` that no `KeyedPartitioning` satisfies. A Pandas or Arrow cogroup groups on real columns, so two keyed children do reach the per-child branch, and this suite already had a `FlatMapCoGroupsInPandasExec` test with two of them. So: with two keyed children whose partition expressions are laid out differently, the second side is handed the first side's positions and ends up grouped on its other partition column. The plan test below reproduces it and fails without the fix, reporting `List(Some(List(1)), Some(List(1)))` where `List(Some(List(1)), Some(List(0)))` is right. I have not built an end-to-end query for it. The only part that stays latent is the three-or-more clustered children case, which no operator has. ### How was this patch tested? Four new tests. Each was measured against the same commit with only the `EnsureRequirements` change reverted. | test | on base | |---|---| | `KeyGroupedPartitioningSuite`: both sides of the join land on the same collection member | fails with the `require` above | | `EnsureRequirementsSuite`: the re-shuffled side lands on the member the keyed side was matched on | fails with the `require` above | | `EnsureRequirementsSuite`: pushed-down positions index into the child's own partition expressions (a Pandas cogroup over two keyed children) | fails | | `ShuffleSpecSuite`: a collection whose members cover different key subsets disagrees | passes, by design | The last one pins the guard rather than the fix. It asserts that the members disagree on purpose, that every one of them stays available for `isCompatibleWith`, and that asking the collection for a single partitioning throws. That turns the `require` from untested prose into a pinned contract, which matters now that the method has no production caller. Green: `ShuffleSpecSuite`, `EnsureRequirementsSuite`, `KeyGroupedPartitioningSuite`, 202 tests in all. `dev/lint-scala` is clean. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Code Closes apache#58565 from peter-toth/SPARK-59080-shufflespec-numpartitions-4.2. Authored-by: Peter Toth <peter.toth@gmail.com> Signed-off-by: Peter Toth <peter.toth@gmail.com> (cherry picked from commit c4b1024)
1 parent 032b7e5 commit e18f8e8

4 files changed

Lines changed: 191 additions & 16 deletions

File tree

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/ShuffleSpecSuite.scala

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,4 +664,34 @@ class ShuffleSpecSuite extends SparkFunSuite with SQLHelper {
664664
"identical marked functions remain compatible")
665665
}
666666
}
667+
668+
test("SPARK-59080: a collection whose members cover different key subsets disagrees") {
669+
val id = $"id".int
670+
val t1 = $"t1".int
671+
val t2 = $"t2".int
672+
val keys = Seq(InternalRow(1, 1), InternalRow(1, 2), InternalRow(2, 1))
673+
674+
// The shape an alias cross-product produces: same arity, same keys, different expressions. The
675+
// operation clusters on (id, t1), so the first member projects onto both positions and keeps
676+
// three partitions, while the second matches only `id` and keeps two.
677+
val collection = PartitioningCollection(Seq(
678+
KeyGroupedPartitioning(Seq(id, t1), keys.size, keys),
679+
KeyGroupedPartitioning(Seq(id, t2), keys.size, keys)))
680+
681+
withSQLConf(SQLConf.V2_BUCKETING_ALLOW_JOIN_KEYS_SUBSET_OF_PARTITION_KEYS.key -> "true") {
682+
val spec = collection.createShuffleSpec(ClusteredDistribution(Seq(id, t1)))
683+
.asInstanceOf[ShuffleSpecCollection]
684+
685+
// The disagreement is kept rather than resolved here. Every member has to stay for
686+
// `isCompatibleWith`, which answers for any of them, and the collection cannot know which one
687+
// the other side matched. `EnsureRequirements` resolves that and asks the member, not the
688+
// collection.
689+
assert(spec.specs.map(_.numPartitions).toSet === Set(3, 2))
690+
assert(spec.isCompatibleWith(spec), "every member stays available for matching")
691+
692+
// So asking the collection for a single answer is the caller's mistake, and it says so.
693+
val e = intercept[IllegalArgumentException](spec.createPartitioning(Seq(id, t1)))
694+
assert(e.getMessage.contains("expected all specs in the collection to have the same number"))
695+
}
696+
}
667697
}

sql/core/src/main/scala/org/apache/spark/sql/execution/exchange/EnsureRequirements.scala

Lines changed: 33 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
package org.apache.spark.sql.execution.exchange
1919

20-
import scala.annotation.tailrec
2120
import scala.collection.mutable
2221
import scala.collection.mutable.ArrayBuffer
2322

@@ -194,30 +193,50 @@ case class EnsureRequirements(
194193
}
195194
}
196195

196+
// A `ShuffleSpecCollection` answers `isCompatibleWith` if *any* of its members does, so the
197+
// collection alone does not say which member the sides agreed on. The projection pushed into
198+
// a compatible child and the partitioning built for a re-shuffled child both have to come
199+
// from one member, otherwise the sides end up grouped on different keys, or on a key set the
200+
// child does not even have. Pick that member once, preferring the finest when several
201+
// qualify. Only the branch that shuffles a child reads these, hence `lazy`.
202+
lazy val matchedIndexes = bestSpecOpt.toSeq.flatMap { best =>
203+
childrenIndexes.filter(i => best.isCompatibleWith(specs(i)))
204+
}
205+
lazy val bestMemberOpt = bestSpecOpt.flatMap { best =>
206+
val matchedMembers = matchedIndexes.map(i => flattenSpec(specs(i)))
207+
// No member serving every matched child means there is no layout to align them on, so they
208+
// all take the ordinary shuffle. That needs three or more clustered children, since with
209+
// two the member that reported the match serves both, and no operator has three today.
210+
flattenSpec(best)
211+
.filter(m => matchedMembers.forall(_.exists(m.isCompatibleWith)))
212+
.maxByOption(_.numPartitions)
213+
}
214+
197215
children = children.zip(requiredChildDistributions).zipWithIndex.map {
198216
case ((child, _), idx) if areChildrenCompatible ||
199217
!childrenIndexes.contains(idx) =>
200218
child
201219
case ((child, dist), idx) =>
202-
if (bestSpecOpt.isDefined && bestSpecOpt.get.isCompatibleWith(specs(idx))) {
203-
// If the child's partitioning is a `PartitioningCollection`, its spec is a
204-
// `ShuffleSpecCollection` whose `createPartitioning` delegates to the head spec,
205-
// so unwrap to the head spec to stay aligned with the re-shuffled side below.
206-
unwrapSpecCollection(bestSpecOpt.get) match {
207-
// If keyGroupCompatible = false, we can still perform SPJ
220+
if (bestMemberOpt.isDefined && matchedIndexes.contains(idx)) {
221+
// The positions come from this child's own matching member, since they index into its
222+
// own partition expressions -- the chosen best member only says which member of it the
223+
// two sides agreed on.
224+
val bestMember = bestMemberOpt.get
225+
flattenSpec(specs(idx)).find(bestMember.isCompatibleWith) match {
226+
// If `areChildrenCompatible` is false, we can still perform SPJ
208227
// by shuffling the other side based on join keys (see the else case below).
209228
// Hence we need to ensure that after this call, the outputPartitioning of the
210229
// partitioned side's BatchScanExec is grouped by join keys to match,
211230
// and we do that by pushing down the join keys
212-
case KeyGroupedShuffleSpec(_, _, Some(joinKeyPositions)) =>
231+
case Some(KeyGroupedShuffleSpec(_, _, Some(joinKeyPositions))) =>
213232
populateJoinKeyPositions(child, Some(joinKeyPositions))
214233
case _ => child
215234
}
216235
} else {
217-
val newPartitioning = bestSpecOpt.map { bestSpec =>
236+
val newPartitioning = bestMemberOpt.map { bestMember =>
218237
// Use the best spec to create a new partitioning to re-shuffle this child
219238
val clustering = dist.asInstanceOf[ClusteredDistribution].clustering
220-
bestSpec.createPartitioning(clustering)
239+
bestMember.createPartitioning(clustering)
221240
}.getOrElse {
222241
// No best spec available, so we create default partitioning from the required
223242
// distribution
@@ -721,12 +740,10 @@ case class EnsureRequirements(
721740
}
722741
}
723742

724-
// Unwraps a `ShuffleSpecCollection` (possibly nested) to the spec that its
725-
// `createPartitioning` delegates to, i.e. the head spec.
726-
@tailrec
727-
private def unwrapSpecCollection(spec: ShuffleSpec): ShuffleSpec = spec match {
728-
case ShuffleSpecCollection(specs) => unwrapSpecCollection(specs.head)
729-
case other => other
743+
// Flattens a (possibly nested) `ShuffleSpecCollection` into its member specs.
744+
private def flattenSpec(spec: ShuffleSpec): Seq[ShuffleSpec] = spec match {
745+
case ShuffleSpecCollection(specs) => specs.flatMap(flattenSpec)
746+
case other => Seq(other)
730747
}
731748

732749
/**

sql/core/src/test/scala/org/apache/spark/sql/connector/KeyGroupedPartitioningSuite.scala

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2295,6 +2295,58 @@ class KeyGroupedPartitioningSuite extends DistributionAndOrderingSuiteBase {
22952295
}
22962296
}
22972297

2298+
test("SPARK-59080: both sides of the join land on the same collection member") {
2299+
// `arrive_time` is selected twice under two aliases, so the projected partitioning is a
2300+
// `PartitioningCollection` whose members cover different numbers of the join keys: one covers
2301+
// (id, t1), another only id. Each member's spec is projected onto its own subset, so the specs
2302+
// disagree on `numPartitions`, and asking the collection for one partitioning fails with
2303+
// "expected all specs in the collection to have the same number of partitions".
2304+
//
2305+
// `EnsureRequirements` now resolves the member the two sides agreed on before it asks, so the
2306+
// keyed side is grouped on both join keys and the shuffled side is laid out on those same keys.
2307+
val items_partitions = Array(identity("id"), identity("arrive_time"))
2308+
createTable(items, itemsColumns, items_partitions)
2309+
2310+
sql(s"INSERT INTO testcat.ns.$items VALUES " +
2311+
"(1, 'aa', 40.0, cast('2020-01-01' as timestamp)), " +
2312+
"(1, 'ab', 30.0, cast('2020-01-02' as timestamp)), " +
2313+
"(3, 'bb', 10.0, cast('2020-01-01' as timestamp)), " +
2314+
"(4, 'cc', 15.5, cast('2020-02-01' as timestamp))")
2315+
2316+
createTable(purchases, purchasesColumns, Array.empty)
2317+
sql(s"INSERT INTO testcat.ns.$purchases VALUES " +
2318+
"(1, 42.0, cast('2020-01-01' as timestamp)), " +
2319+
"(1, 89.0, cast('2020-01-02' as timestamp)), " +
2320+
"(3, 19.5, cast('2020-01-01' as timestamp)), " +
2321+
"(5, 26.0, cast('2023-01-01' as timestamp))")
2322+
2323+
withSQLConf(
2324+
SQLConf.V2_BUCKETING_SHUFFLE_ENABLED.key -> "true",
2325+
SQLConf.V2_BUCKETING_PARTIALLY_CLUSTERED_DISTRIBUTION_ENABLED.key -> "false",
2326+
SQLConf.V2_BUCKETING_ALLOW_JOIN_KEYS_SUBSET_OF_PARTITION_KEYS.key -> "true") {
2327+
val df = sql(
2328+
s"""
2329+
|${selectWithMergeJoinHint("i", "p")}
2330+
|id, t1, t2, i.price AS purchase_price, p.price AS sale_price
2331+
|FROM (SELECT id, arrive_time AS t1, arrive_time AS t2, price FROM testcat.ns.$items) i
2332+
|JOIN testcat.ns.$purchases p ON i.id = p.item_id AND i.t1 = p.time
2333+
|""".stripMargin)
2334+
val plan = df.queryExecution.executedPlan
2335+
// On this branch the resolved member is recorded on the scan rather than on a grouping node.
2336+
val positions = collectScans(plan).flatMap(_.spjParams.joinKeyPositions)
2337+
assert(positions === Seq(Seq(0, 1)),
2338+
"the keyed side must be grouped on both join keys, the finest granularity available")
2339+
assert(collectAllShuffles(plan).size == 1, "only the unpartitioned side shuffles")
2340+
checkAnswer(df, Seq(
2341+
Row(1, java.sql.Timestamp.valueOf("2020-01-01 00:00:00"),
2342+
java.sql.Timestamp.valueOf("2020-01-01 00:00:00"), 40.0, 42.0),
2343+
Row(1, java.sql.Timestamp.valueOf("2020-01-02 00:00:00"),
2344+
java.sql.Timestamp.valueOf("2020-01-02 00:00:00"), 30.0, 89.0),
2345+
Row(3, java.sql.Timestamp.valueOf("2020-01-01 00:00:00"),
2346+
java.sql.Timestamp.valueOf("2020-01-01 00:00:00"), 10.0, 19.5)))
2347+
}
2348+
}
2349+
22982350
test("SPARK-59025: shuffle one side and join keys are less than partition keys " +
22992351
"when the keyed side reports a PartitioningCollection") {
23002352
val items_partitions = Array(identity("id"), identity("name"))

sql/core/src/test/scala/org/apache/spark/sql/execution/exchange/EnsureRequirementsSuite.scala

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,82 @@ class EnsureRequirementsSuite extends SharedSparkSession {
11901190
}
11911191
}
11921192

1193+
test("SPARK-59080: the re-shuffled side lands on the member the keyed side was matched on") {
1194+
val id = AttributeReference("id", IntegerType)()
1195+
val t1 = AttributeReference("t1", IntegerType)()
1196+
val t2 = AttributeReference("t2", IntegerType)()
1197+
// Same arity and the same keys, different expressions: what an alias cross-product produces
1198+
// when one column is selected twice. Clustering on (id, t1), the first member covers `id` only
1199+
// and keeps two partitions, the second covers both positions and keeps three. The coarse
1200+
// member comes first so that reading the collection's head would pick the wrong one.
1201+
val keys = Seq(InternalRow(1, 1), InternalRow(1, 2), InternalRow(2, 1))
1202+
val keyed = new DummySparkPlanWithBatchScanChild(
1203+
outputPartitioning = PartitioningCollection(Seq(
1204+
KeyGroupedPartitioning(Seq(id, t2), keys.size, keys),
1205+
KeyGroupedPartitioning(Seq(id, t1), keys.size, keys))))
1206+
val unpartitioned = DummySparkPlan(outputPartitioning = UnknownPartitioning(0))
1207+
1208+
withSQLConf(
1209+
SQLConf.V2_BUCKETING_SHUFFLE_ENABLED.key -> "true",
1210+
SQLConf.V2_BUCKETING_ALLOW_JOIN_KEYS_SUBSET_OF_PARTITION_KEYS.key -> "true") {
1211+
val smj = SortMergeJoinExec(Seq(id, t1), Seq(id, t1), Inner, None, keyed, unpartitioned)
1212+
val planned = EnsureRequirements.apply(smj).asInstanceOf[SortMergeJoinExec]
1213+
1214+
// The keyed side is grouped on both join keys, which is the finest member. On this branch
1215+
// the resolved member is recorded on the scan rather than on a grouping node.
1216+
assert(planned.left.collect { case b: BatchScanExec => b.spjParams.joinKeyPositions } ===
1217+
Seq(Some(Seq(0, 1))),
1218+
"the keyed side must be grouped on the member covering both join keys")
1219+
// And the shuffled side lands on that same member. Reading the collection instead would take
1220+
// whichever member came first and could put the two sides on different key sets.
1221+
val shuffles = planned.right.collect { case s: ShuffleExchangeExec => s }
1222+
assert(shuffles.map(_.outputPartitioning.numPartitions) === Seq(3),
1223+
"the re-shuffled side must land on the same member, not on whichever came first")
1224+
}
1225+
}
1226+
1227+
test("SPARK-59080: pushed-down positions index into the child's own partition expressions") {
1228+
val nL = AttributeReference("nL", IntegerType)()
1229+
val iL = AttributeReference("iL", IntegerType)()
1230+
val iR = AttributeReference("iR", IntegerType)()
1231+
val nR = AttributeReference("nR", IntegerType)()
1232+
// Both sides declare the same two key columns, in the opposite order, so the cogroup key sits
1233+
// at position 1 on the left and at position 0 on the right. Both project onto {1, 2}, so the
1234+
// sides are co-partitioned and neither is re-shuffled.
1235+
val leftKeys = Seq(InternalRow(1, 1), InternalRow(2, 1), InternalRow(3, 2))
1236+
val rightKeys = Seq(InternalRow(1, 1), InternalRow(1, 2), InternalRow(2, 3))
1237+
val left = new DummySparkPlanWithBatchScanChild(
1238+
outputPartitioning = KeyGroupedPartitioning(Seq(nL, iL), leftKeys.size, leftKeys))
1239+
val right = new DummySparkPlanWithBatchScanChild(
1240+
outputPartitioning = KeyGroupedPartitioning(Seq(iR, nR), rightKeys.size, rightKeys))
1241+
1242+
val pythonUdf = PythonUDF("pyUDF", null,
1243+
StructType(Seq(StructField("value", IntegerType))),
1244+
Seq.empty,
1245+
PythonEvalType.SQL_COGROUPED_MAP_PANDAS_UDF,
1246+
true)
1247+
// A cogroup requires `ClusteredDistribution` on both children but is not a `ShuffledJoin`, so
1248+
// `checkKeyGroupCompatible` declines and both children go through the per-child branch that
1249+
// pushes the positions down. Unlike the Scala `CoGroupExec`, whose key comes from an
1250+
// `AppendColumns` no `KeyGroupedPartitioning` satisfies, the Pandas one groups on real columns,
1251+
// so both sides stay keyed.
1252+
val cogroup = FlatMapCoGroupsInPandasExec(
1253+
Seq(iL), Seq(iR), pythonUdf,
1254+
AttributeReference("value", IntegerType)() :: Nil, left, right)
1255+
1256+
withSQLConf(
1257+
SQLConf.V2_BUCKETING_SHUFFLE_ENABLED.key -> "true",
1258+
SQLConf.V2_BUCKETING_ALLOW_JOIN_KEYS_SUBSET_OF_PARTITION_KEYS.key -> "true") {
1259+
val result = EnsureRequirements.apply(cogroup)
1260+
1261+
assert(result.collect { case s: ShuffleExchangeExec => s }.isEmpty,
1262+
"the sides are co-partitioned on the cogroup key")
1263+
assert(result.collect { case b: BatchScanExec => b.spjParams.joinKeyPositions } ===
1264+
Seq(Some(Seq(1)), Some(Seq(0))),
1265+
"the positions pushed into a child must index into that child's own expressions")
1266+
}
1267+
}
1268+
11931269
def bucket(numBuckets: Int, expr: Expression): TransformExpression = {
11941270
TransformExpression(BucketFunction, Seq(expr), Some(numBuckets))
11951271
}

0 commit comments

Comments
 (0)