Skip to content

Commit

Permalink
[chore](session_variable) change parallel_scan_min_rows_per_scanner' …
Browse files Browse the repository at this point in the history
…default value to 16384 (#32939)
  • Loading branch information
mrhhsg authored Mar 29, 2024
1 parent 3a5ee41 commit 86e99f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ public class SessionVariable implements Serializable, Writable {

@VariableMgr.VarAttr(name = PARALLEL_SCAN_MIN_ROWS_PER_SCANNER, fuzzy = true,
varType = VariableAnnotation.EXPERIMENTAL, needForward = true)
private long parallelScanMinRowsPerScanner = 2097152; // 2MB
private long parallelScanMinRowsPerScanner = 16384; // 16K

@VariableMgr.VarAttr(name = IGNORE_STORAGE_DATA_DISTRIBUTION, fuzzy = false,
varType = VariableAnnotation.EXPERIMENTAL, needForward = true)
Expand Down

0 comments on commit 86e99f9

Please sign in to comment.