Skip to content

Commit

Permalink
update formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Aug 7, 2024
1 parent 405b8e2 commit 2c38104
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public class SessionVariable implements Serializable, Writable {
public static final String MAX_JOIN_NUMBER_BUSHY_TREE = "max_join_number_bushy_tree";
public static final String ENABLE_PARTITION_TOPN = "enable_partition_topn";
public static final String PARTITION_TOPN_PARTITION_THRESHOLD = "partition_topn_partition_threshold";

public static final String GLOBAL_PARTITION_TOPN_THRESHOLD = "global_partition_topn_threshold";

public static final String ENABLE_INFER_PREDICATE = "enable_infer_predicate";
Expand Down Expand Up @@ -1195,8 +1195,9 @@ public void setMaxJoinNumberOfReorder(int maxJoinNumberOfReorder) {

@VariableMgr.VarAttr(name = PARTITION_TOPN_PARTITION_THRESHOLD, needForward = true, description = {
"这个阈值决定了partition_topn计算时的分区数量,超过这个阈值后,剩余的数据将直接透传给下一个算子",
"This threshold determines how many partitions will be allocated for window function get topn." +
" and if this threshold is exceeded, the remaining data will be pass through to other node directly."
"This threshold determines how many partitions will be allocated for window function get topn."
+ " and if this threshold is exceeded, the remaining data will be pass through to other "
+ " node directly."
})
private int partitionTopNPartitionThreshold = 1024;

Expand Down

0 comments on commit 2c38104

Please sign in to comment.