summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_parameters.idl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/storage_parameters.idl')
-rw-r--r--src/mongo/db/storage/storage_parameters.idl43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/mongo/db/storage/storage_parameters.idl b/src/mongo/db/storage/storage_parameters.idl
index a4ee499c6ff..1b00d318f36 100644
--- a/src/mongo/db/storage/storage_parameters.idl
+++ b/src/mongo/db/storage/storage_parameters.idl
@@ -30,7 +30,6 @@ global:
cpp_namespace: "mongo"
cpp_includes:
- "mongo/bson/bson_depth.h"
- - "mongo/db/storage/ticketholders.h"
server_parameters:
notablescan:
@@ -115,40 +114,6 @@ server_parameters:
cpp_vartype: bool
default: false
- # The wiredTigerQueueingPolicy specifies which policy to use and is essentially
- # the same as the values of the enum QueueingPolicy
- storageEngineQueueingPolicy:
- description: "Storage Engine queueing policy to use"
- set_at: [ startup ]
- cpp_class:
- name: TicketQueueingPolicy
-
- storageEngineConcurrentWriteTransactions:
- description: "Storage Engine Concurrent Write Transactions"
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: gConcurrentWriteTransactions
- on_update: "TicketHolders::updateConcurrentWriteTransactions"
- deprecated_name:
- - wiredTigerConcurrentWriteTransactions
- # Default value being 0 means we're allowing the underlying storage engines to use their default values.
- default: 0
- validator:
- gt: 0
-
- storageEngineConcurrentReadTransactions:
- description: "Storage Engine Concurrent Read Transactions"
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: gConcurrentReadTransactions
- on_update: "TicketHolders::updateConcurrentReadTransactions"
- deprecated_name:
- - wiredTigerConcurrentReadTransactions
- # Default value being 0 means we're allowing the underlying storage engines to use their default values.
- default: 0
- validator:
- gt: 0
-
feature_flags:
featureFlagClusteredIndexes:
description: "When enabled, support non time-series collections with clustered indexes"
@@ -196,11 +161,3 @@ feature_flags:
description: "When enabled, allow renaming databases during restore"
cpp_varname: feature_flags::gDatabaseRenameDuringRestore
default: false
-
-enums:
- QueueingPolicy:
- description: Queueing policy to use for obtaining tickets
- type: string
- values:
- Semaphore: semaphore
- FifoQueue: fifoQueue