Skip to content

Commit

Permalink
change default max_tablet_write_chunk_bytes to 128MB
Browse files Browse the repository at this point in the history
Signed-off-by: silverbullet233 <[email protected]>
  • Loading branch information
silverbullet233 committed Sep 18, 2024
1 parent aa0740a commit 5717597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/common/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -703,8 +703,8 @@ CONF_Int32(metric_late_materialization_ratio, "1000");

// Max batched bytes for each transmit request. (256KB)
CONF_Int64(max_transmit_batched_bytes, "262144");
// max chunk size for each tablet write request. (1MB)
CONF_mInt64(max_tablet_write_chunk_bytes, "1048576");
// max chunk size for each tablet write request. (128MB)
CONF_mInt64(max_tablet_write_chunk_bytes, "134217728");

CONF_Int16(bitmap_max_filter_items, "30");

Expand Down

0 comments on commit 5717597

Please sign in to comment.