Skip to content

Commit ab4bcd5

Browse files
authored
chore: adjust default value of setting max_storage_io_requests (#16680)
1 parent c1c0362 commit ab4bcd5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/query/settings/src/settings_default.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,8 @@ impl DefaultSettings {
955955
None => std::cmp::min(num_cpus, 64),
956956
Some(conf) => match conf.storage.params.is_fs() {
957957
true => 48,
958-
false => std::cmp::min(num_cpus, 64),
958+
// This value is chosen based on the performance test of pruning phase on cloud platform.
959+
false => 64,
959960
},
960961
}
961962
}

0 commit comments

Comments
 (0)