summaryrefslogtreecommitdiff
path: root/src/mongo/db/mongod_options_storage.idl
diff options
context:
space:
mode:
authorDianna <dianna.hohensee@10gen.com>2019-05-16 14:14:42 -0400
committerDianna <dianna.hohensee@10gen.com>2019-05-22 09:22:39 -0400
commit48ea7f8532c6390cad46c0e81bbf3dee79229eab (patch)
tree40c789cffd94e9b04f936d7f1733ca38a557e0e4 /src/mongo/db/mongod_options_storage.idl
parent0dfca0d56a1774b6ed40d72f04b7ed3ec0cc2045 (diff)
downloadmongo-48ea7f8532c6390cad46c0e81bbf3dee79229eab.tar.gz
SERVER-40882 Restore the --noIndexBuildRetry server parameter flag and the storage.indexBuildRetry config file option
Diffstat (limited to 'src/mongo/db/mongod_options_storage.idl')
-rw-r--r--src/mongo/db/mongod_options_storage.idl20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mongo/db/mongod_options_storage.idl b/src/mongo/db/mongod_options_storage.idl
index 222eb750516..d784ef931e9 100644
--- a/src/mongo/db/mongod_options_storage.idl
+++ b/src/mongo/db/mongod_options_storage.idl
@@ -54,11 +54,13 @@ configs:
description: 'Each database will be stored in a separate directory'
short_name: directoryperdb
arg_vartype: Switch
+
'storage.queryableBackupMode':
description: 'Enable read-only mode - if true the server will not accept writes'
short_name: queryableBackupMode
arg_vartype: Switch
hidden: true
+
'storage.groupCollections':
description: >-
Group collections - if true the storage engine may group
@@ -66,6 +68,7 @@ configs:
short_name: groupCollections
arg_vartype: Switch
hidden: true
+
'storage.syncPeriodSecs':
description: 'Seconds between disk syncs (0=never, but not recommended)'
short_name: syncdelay
@@ -74,19 +77,36 @@ configs:
validator:
gte: 0.0
lte: { expr: 'StorageGlobalParams::kMaxSyncdelaySecs' }
+
+ 'storage.indexBuildRetry':
+ description: "Do not retry any index builds that were interrupted by shutdown"
+ arg_vartype: Switch
+ conflicts: ['replication.replSet', 'replication.replSetName']
+ source: yaml
+
+ noIndexBuildRetry:
+ description: "Do not retry any index builds that were interrupted by shutdown"
+ short_name: noIndexBuildRetry
+ arg_vartype: Switch
+ conflicts: ['replication.replSet', 'replication.replSetName']
+ source: [ cli, ini ]
+
upgrade:
description: 'Upgrade db if needed'
arg_vartype: Switch
source: [ cli, ini ]
+
repair:
description: 'Run repair on all dbs'
arg_vartype: Switch
source: [ cli, ini ]
+
'storage.journal.enabled':
description: 'Enable journaling'
short_name: journal
deprecated_short_name: dur
arg_vartype: Switch
+
nojournal:
description: 'Disable journaling (journaling is on by default for 64 bit)'
deprecated_short_name: nodur