Github user wzhfy commented on a diff in the pull request:
https://github.com/apache/spark/pull/16228#discussion_r93740005
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/estimation/JoinEstimation.scala
---
@@ -0,0 +1,310 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.spark.sql.catalyst.plans.logical.estimation
+
+import scala.collection.mutable
+
+import org.apache.spark.internal.Logging
+import org.apache.spark.sql.catalyst.expressions.{Attribute,
AttributeReference, Expression}
+import org.apache.spark.sql.catalyst.planning.ExtractEquiJoinKeys
+import org.apache.spark.sql.catalyst.plans._
+import org.apache.spark.sql.catalyst.plans.logical.{ColumnStat, Join,
Statistics}
+import
org.apache.spark.sql.catalyst.plans.logical.estimation.EstimationUtils._
+import org.apache.spark.sql.types.DataType
+
+
+object JoinEstimation extends Logging {
+ /**
+ * Estimate statistics after join. Return `None` if the join type is not
supported, or we don't
+ * have enough statistics for estimation.
+ */
+ def estimate(join: Join): Option[Statistics] = {
+ join.joinType match {
+ case Inner | Cross | LeftOuter | RightOuter | FullOuter =>
+ InnerOuterEstimation(join).doEstimate()
+ case LeftSemi | LeftAnti =>
+ LeftSemiAntiEstimation(join).doEstimate()
+ case _ =>
+ logDebug(s"Unsupported join type: ${join.joinType}")
+ None
+ }
+ }
+}
+
+case class InnerOuterEstimation(join: Join) extends Logging {
+
+ /**
+ * Estimate output size and number of rows after a join operator, and
update output column stats.
+ */
+ def doEstimate(): Option[Statistics] = join match {
+ case _ if !allPlanhaveRowCountStat(join.left, join.right) =>
+ None
+
+ case ExtractEquiJoinKeys(joinType, leftKeys, rightKeys, condition,
left, right) =>
+ // 1. Compute join selectivity
+ val leftStats = left.statistics
+ val rightStats = right.statistics
+ val joinKeyPairs = extractJoinKeys(leftKeys, rightKeys)
+ val selectivity = joinSelectivity(joinKeyPairs, leftStats,
rightStats)
+
+ // 2. Estimate the number of output rows
+ val leftRows = leftStats.rowCount.get
+ val rightRows = rightStats.rowCount.get
+ val innerRows = ceil(BigDecimal(leftRows * rightRows) * selectivity)
+
+ // Make sure outputRows won't be too small based on join type.
+ val outputRows = joinType match {
+ case LeftOuter =>
+ // All rows from left side should be in the result.
+ leftRows.max(innerRows)
+ case RightOuter =>
+ // All rows from right side should be in the result.
+ rightRows.max(innerRows)
+ case FullOuter =>
+ // Simulate full outer join as obtaining the number of elements
in the union of two
+ // finite sets: A \cup B = A + B - A \cap B => A FOJ B = A + B -
A IJ B.
+ // But the "inner join" part can be much larger than A \cap B,
making the simulated
+ // result much smaller. To prevent this, we choose the larger
one between the simulated
+ // part and the inner part.
+ (leftRows + rightRows - innerRows).max(innerRows)
--- End diff --
@Tagar I take your advice about full outer join, but with a little change
by lower bounding it using `innerRows`.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]