Skip to content

Commit

Permalink
Use non partitioned dynamic filter limits in FTE
Browse files Browse the repository at this point in the history
  • Loading branch information
arhimondr committed Jun 14, 2023
1 parent 3873ada commit 4dea674
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3054,12 +3054,12 @@ public PhysicalOperation visitDynamicFilterSource(DynamicFilterSourceNode node,
// In fault-tolerant execution, all tasks need to collect dynamic filters even if the join has
// broadcast distribution type because the collection takes place before the remote exchange
ImmutableList.of(taskContext::updateDomains),
getDynamicFilteringMaxSizePerOperator(session, true));
getDynamicFilteringMaxSizePerOperator(session, false));
return createDynamicFilterSourceOperatorFactory(
context.getNextOperatorId(),
dynamicFilterSourceConsumer,
node,
true,
false,
false,
source,
context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ protected QueryRunner createQueryRunner()
})
.setExtraProperties(FaultTolerantExecutionConnectorTestHelper.getExtraProperties())
// keep limits lower to test edge cases
.addExtraProperty("dynamic-filtering.small-partitioned.max-distinct-values-per-driver", "10")
.addExtraProperty("dynamic-filtering.small-partitioned.range-row-limit-per-driver", "100")
.addExtraProperty("dynamic-filtering.small.max-distinct-values-per-driver", "10")
.addExtraProperty("dynamic-filtering.small.range-row-limit-per-driver", "100")
.build();
}

Expand Down

0 comments on commit 4dea674

Please sign in to comment.