Skip to content
Open
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 @@ -897,6 +897,18 @@ object SQLConf {
.booleanConf
.createWithDefault(true)

val SPLIT_STREAMED_SIDE_JOIN_CONDITION =
buildConf("spark.sql.join.splitStreamedSideJoinCondition")
.internal()
.doc("When true, split join conditions for LeftAnti, LeftOuter, RightOuter, and " +
"ExistenceJoin by referenced side, evaluating streamed-side-only conjuncts before " +
"the hash-bucket or merge walk. This avoids evaluating expensive streamed-side-only " +
"predicates once per matched buffered row.")
.version("4.3.0")
.withBindingPolicy(ConfigBindingPolicy.SESSION)
.booleanConf
.createWithDefault(false)

val SORT_MERGE_AS_OF_JOIN_ENABLED =
buildConf("spark.sql.join.sortMergeAsOfJoin.enabled")
.doc("When true, use a dedicated sort-merge physical operator for AS-OF joins " +
Expand Down Expand Up @@ -8274,6 +8286,8 @@ class SQLConf extends Serializable with Logging with SqlApiConf {

def preferSortMergeJoin: Boolean = getConf(PREFER_SORTMERGEJOIN)

def splitStreamedSideJoinCondition: Boolean = getConf(SPLIT_STREAMED_SIDE_JOIN_CONDITION)

def sortMergeAsOfJoinEnabled: Boolean = getConf(SORT_MERGE_AS_OF_JOIN_ENABLED)

def enableRadixSort: Boolean = getConf(RADIX_SORT_ENABLED)
Expand Down
Loading