summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@10gen.com>2020-03-27 11:20:34 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-03-27 18:31:11 +0000
commit24a5e2832be4ff7ad0e3eff1dc4198cb61c1ee5e (patch)
tree00ac4bc4c5841093b9c7cd5b6173ecf2903c6d2e
parent4aa3ad525c1012fe9e3dbcb6e0d79745a5446cf5 (diff)
downloadmongo-24a5e2832be4ff7ad0e3eff1dc4198cb61c1ee5e.tar.gz
SERVER-47146 Remove unused initial sync server parameters
-rw-r--r--src/mongo/db/repl/repl_server_parameters.idl29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/mongo/db/repl/repl_server_parameters.idl b/src/mongo/db/repl/repl_server_parameters.idl
index 3069072cb0f..b8744837746 100644
--- a/src/mongo/db/repl/repl_server_parameters.idl
+++ b/src/mongo/db/repl/repl_server_parameters.idl
@@ -150,28 +150,6 @@ server_parameters:
cpp_varname: writePeriodicNoops
default: true
- # From collection_cloner.cpp
- numInitialSyncCollectionCountAttempts:
- description: The number of attempts for the count command, which gets the document count.
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: numInitialSyncCollectionCountAttempts
- default: 3
-
- numInitialSyncListIndexesAttempts:
- description: The number of attempts for the listIndexes commands.
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: numInitialSyncListIndexesAttempts
- default: 3
-
- numInitialSyncCollectionFindAttempts:
- description: The number of attempts for the find command, which gets the data.
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: numInitialSyncCollectionFindAttempts
- default: 3
-
collectionClonerUsesExhaust:
description: Whether to use the "exhaust cursor" feature when retrieving collection data.
set_at: startup
@@ -203,13 +181,6 @@ server_parameters:
validator:
gte: 0
- numInitialSyncListCollectionsAttempts:
- description: The number of attempts for the listCollections commands.
- set_at: [ startup, runtime ]
- cpp_vartype: AtomicWord<int>
- cpp_varname: numInitialSyncListCollectionsAttempts
- default: 3
-
# From replication_coordinator_external_state_impl.cpp
oplogFetcherSteadyStateMaxFetcherRestarts:
description: >-