File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,15 @@ configs:
78
78
gte: 0.0
79
79
lte: { expr: 'StorageGlobalParams::kMaxSyncdelaySecs' }
80
80
81
+ 'storage.journal.commitIntervalMs':
82
+ description: 'how often to group/batch commit (ms)'
83
+ short_name: 'journalCommitInterval'
84
+ arg_vartype: Int
85
+ default: 100
86
+ validator:
87
+ gte: 1
88
+ lte: { expr: 'StorageGlobalParams::kMaxJournalCommitIntervalMs' }
89
+
81
90
'storage.indexBuildRetry':
82
91
description: "Do not retry any index builds that were interrupted by shutdown"
83
92
arg_vartype: Switch
@@ -112,4 +121,3 @@ configs:
112
121
deprecated_short_name: nodur
113
122
arg_vartype: Switch
114
123
source: [ cli, ini ]
115
-
Original file line number Diff line number Diff line change @@ -51,9 +51,8 @@ server_parameters:
51
51
lte: { expr: 'StorageGlobalParams::kMaxSyncdelaySecs' }
52
52
journalCommitInterval:
53
53
description: 'Number of milliseconds between journal commits'
54
- set_at: runtime
54
+ set_at: [ startup, runtime ]
55
55
cpp_varname: 'storageGlobalParams.journalCommitIntervalMs'
56
- default: 100
57
56
validator:
58
57
gte: 1
59
58
lte: { expr: 'StorageGlobalParams::kMaxJournalCommitIntervalMs' }
You can’t perform that action at this time.
0 commit comments