Skip to content

Commit 92818ca

Browse files
goffrieConvex, Inc.
authored andcommitted
Raise DATABASE_WORKERS_MIN_COMMITS (#42714)
GitOrigin-RevId: 811c9c75e362e13c24fa86ed0ed39997a260b57b
1 parent f6f45c5 commit 92818ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/common/src/knobs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ pub static MAX_SEARCHLIGHT_REQUEST_SIZE: LazyLock<usize> =
12411241
/// even if no writes occur. So any worker that checks this should always have
12421242
/// some maximum period of time after which they checkpoint unconditionally.
12431243
pub static DATABASE_WORKERS_MIN_COMMITS: LazyLock<usize> =
1244-
LazyLock::new(|| env_config("DATABASE_WORKERS_MIN_COMMITS", 100));
1244+
LazyLock::new(|| env_config("DATABASE_WORKERS_MIN_COMMITS", 500));
12451245

12461246
/// The TableSummaryWorker must checkpoint every
12471247
/// [`DATABASE_WORKERS_MAX_CHECKPOINT_AGE`] seconds even if nothing has changed.

0 commit comments

Comments
 (0)