Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17544#discussion_r110029591
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/StarSchemaDetection.scala
 ---
    @@ -0,0 +1,351 @@
    +/*
    + * 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.optimizer
    +
    +import scala.annotation.tailrec
    +
    +import org.apache.spark.sql.catalyst.expressions._
    +import org.apache.spark.sql.catalyst.planning.PhysicalOperation
    +import org.apache.spark.sql.catalyst.plans._
    +import org.apache.spark.sql.catalyst.plans.logical._
    +import org.apache.spark.sql.internal.SQLConf
    +
    +/**
    + * Encapsulates star-schema detection logic.
    + */
    +case class StarSchemaDetection(conf: SQLConf) extends PredicateHelper {
    +
    +  /**
    +   * Star schema consists of one or more fact tables referencing a number 
of dimension
    +   * tables. In general, star-schema joins are detected using the 
following conditions:
    +   *  1. Informational RI constraints (reliable detection)
    +   * + Dimension contains a primary key that is being joined to the fact 
table.
    +   * + Fact table contains foreign keys referencing multiple dimension 
tables.
    +   * 2. Cardinality based heuristics
    +   * + Usually, the table with the highest cardinality is the fact table.
    +   * + Table being joined with the most number of tables is the fact table.
    +   *
    +   * To detect star joins, the algorithm uses a combination of the above 
two conditions.
    +   * The fact table is chosen based on the cardinality heuristics, and the 
dimension
    +   * tables are chosen based on the RI constraints. A star join will 
consist of the largest
    +   * fact table joined with the dimension tables on their primary keys. To 
detect that a
    +   * column is a primary key, the algorithm uses table and column 
statistics.
    +   *
    +   * The algorithm currently returns only the star join with the largest 
fact table.
    +   * Choosing the largest fact table on the driving arm to avoid large 
inners is in
    +   * general a good heuristic. This restriction will be lifted to observe 
multiple
    +   * star joins.
    +   *
    +   * The highlights of the algorithm are the following:
    +   *
    +   * Given a set of joined tables/plans, the algorithm first verifies if 
they are eligible
    +   * for star join detection. An eligible plan is a base table access with 
valid statistics.
    +   * A base table access represents Project or Filter operators above a 
LeafNode. Conservatively,
    +   * the algorithm only considers base table access as part of a star join 
since they provide
    +   * reliable statistics. This restriction can be lifted with the CBO 
enablement by default.
    +   *
    +   * If some of the plans are not base table access, or statistics are not 
available, the algorithm
    +   * returns an empty star join plan since, in the absence of statistics, 
it cannot make
    +   * good planning decisions. Otherwise, the algorithm finds the table 
with the largest cardinality
    +   * (number of rows), which is assumed to be a fact table.
    +   *
    +   * Next, it computes the set of dimension tables for the current fact 
table. A dimension table
    +   * is assumed to be in a RI relationship with a fact table. To infer 
column uniqueness,
    +   * the algorithm compares the number of distinct values with the total 
number of rows in the
    +   * table. If their relative difference is within certain limits (i.e. 
ndvMaxError * 2, adjusted
    +   * based on 1TB TPC-DS data), the column is assumed to be unique.
    +   */
    +  def findStarJoins(
    +      input: Seq[LogicalPlan],
    +      conditions: Seq[Expression]): Seq[LogicalPlan] = {
    --- End diff --
    
    To the other reviewers, this is to address the comment by @cloud-fan  in 
the previous PR. 
    https://github.com/apache/spark/pull/15363#discussion_r106774155


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to