table.optimizer.agg-phase-strategy Batch Streaming |
"AUTO" |
String |
Strategy for aggregate phase. Only AUTO, TWO_PHASE or ONE_PHASE can be set.
AUTO: No special enforcer for aggregate stage. Whether to choose two stage aggregate or one stage aggregate depends on cost.
TWO_PHASE: Enforce to use two stage aggregate which has localAggregate and globalAggregate. Note that if aggregate call does not support optimize into two phase, we will still use one stage aggregate.
ONE_PHASE: Enforce to use one stage aggregate which only has CompleteGlobalAggregate. |
table.optimizer.distinct-agg.split.bucket-num Streaming |
1024 |
Integer |
Configure the number of buckets when splitting distinct aggregation. The number is used in the first level aggregation to calculate a bucket key 'hash_code(distinct_key) % BUCKET_NUM' which is used as an additional group key after splitting. |
table.optimizer.distinct-agg.split.enabled Streaming |
false |
Boolean |
Tells the optimizer whether to split distinct aggregation (e.g. COUNT(DISTINCT col), SUM(DISTINCT col)) into two level. The first aggregation is shuffled by an additional key which is calculated using the hashcode of distinct_key and number of buckets. This optimization is very useful when there is data skew in distinct aggregation and gives the ability to scale-up the job. Default is false. |
table.optimizer.join-reorder-enabled Batch Streaming |
false |
Boolean |
Enables join reorder in optimizer. Default is disabled. |
table.optimizer.join.broadcast-threshold Batch |
1048576 |
Long |
Configures the maximum size in bytes for a table that will be broadcast to all worker nodes when performing a join. By setting this value to -1 to disable broadcasting. |
table.optimizer.multiple-input-enabled Batch |
true |
Boolean |
When it is true, the optimizer will merge the operators with pipelined shuffling into a multiple input operator to reduce shuffling and improve performance. Default value is true. |
table.optimizer.reuse-source-enabled Batch Streaming |
true |
Boolean |
When it is true, the optimizer will try to find out duplicated table sources and reuse them. This works only when table.optimizer.reuse-sub-plan-enabled is true. |
table.optimizer.reuse-sub-plan-enabled Batch Streaming |
true |
Boolean |
When it is true, the optimizer will try to find out duplicated sub-plans and reuse them. |
table.optimizer.source.predicate-pushdown-enabled Batch Streaming |
true |
Boolean |
When it is true, the optimizer will push down predicates into the FilterableTableSource. Default value is true. |