Skip to content
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

[DNM][VL] enable hash build side selection #3626

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import io.glutenproject.substrait.rel.LocalFilesNode.ReadFileFormat.{DwrfReadFor

import org.apache.spark.sql.catalyst.expressions.{Alias, CumeDist, DenseRank, Descending, Expression, Literal, NamedExpression, NthValue, PercentRank, RangeFrame, Rank, RowNumber, SortOrder, SpecialFrameBoundary, SpecifiedWindowFrame}
import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Count, Sum}
import org.apache.spark.sql.catalyst.plans.{LeftOuter, LeftSemi, RightOuter}
import org.apache.spark.sql.catalyst.plans.JoinType
import org.apache.spark.sql.execution.SparkPlan
import org.apache.spark.sql.execution.aggregate.HashAggregateExec
Expand Down Expand Up @@ -209,7 +210,7 @@ object BackendSettings extends BackendSettingsApi {
// The file should be removed and we temporarily disable the improvement
// introduced by OPPRO-266 by commenting out the following prerequisite
// condition.
// case LeftOuter | LeftSemi => true
case LeftOuter | LeftSemi => true
case _ => false
}
}
Expand All @@ -226,7 +227,7 @@ object BackendSettings extends BackendSettingsApi {
// The file should be removed and we temporarily disable the improvement
// introduced by OPPRO-266 by commenting out the following prerequisite
// condition.
// case RightOuter => true
case RightOuter => true
case _ => false
}
}
Expand Down
7 changes: 7 additions & 0 deletions package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,13 @@
<ignoreClass>org.apache.spark.sql.hive.execution.HiveFileFormat</ignoreClass>
<ignoreClass>org.apache.spark.sql.hive.execution.HiveFileFormat$$$$anon$1</ignoreClass>
<ignoreClass>org.apache.spark.sql.hive.execution.HiveOutputWriter</ignoreClass>
<!-- org/apache/spark/sql/execution/joins/HashedRelationInfo -->
<ignoreClass>org.apache.spark.sql.execution.joins.HashedRelationInfo$</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.joins.HashedRelationInfo</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.joins.HashJoin$$$anon$1</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.joins.HashJoin$$anon$</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.joins.HashJoin$</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.joins.HashJoin</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.datasources.BasicWriteTaskStats</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.datasources.BasicWriteTaskStats$</ignoreClass>
<ignoreClass>org.apache.spark.sql.execution.datasources.BasicWriteTaskStatsTracker</ignoreClass>
Expand Down
Loading