summaryrefslogtreecommitdiff
path: root/src/mongo/s/mongos_options.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-05-31 22:22:31 +0300
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2016-06-02 13:39:33 +0300
commitd900c3b855e66a337ebe6c6f46ab5656d79e1db9 (patch)
treec15d3cfd1857b49dfe2ab3dce6d01aa477fd4949 /src/mongo/s/mongos_options.h
parent2ec8d1e5c03e2000c4cc4eac1d961bbc7b817ab4 (diff)
downloadmongo-d900c3b855e66a337ebe6c6f46ab5656d79e1db9.tar.gz
SERVER-23733 Remove the mongos chunkSize startup option
This change removes the chunkSize startup option from mongos in place of the 'chunksize' setting.
Diffstat (limited to 'src/mongo/s/mongos_options.h')
-rw-r--r--src/mongo/s/mongos_options.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mongo/s/mongos_options.h b/src/mongo/s/mongos_options.h
index b14c688e6a9..732bcbda9b1 100644
--- a/src/mongo/s/mongos_options.h
+++ b/src/mongo/s/mongos_options.h
@@ -31,7 +31,6 @@
#include "mongo/base/status.h"
#include "mongo/client/connection_string.h"
#include "mongo/db/server_options.h"
-#include "mongo/s/balancer/balancer_configuration.h"
#include "mongo/util/options_parser/environment.h"
#include "mongo/util/options_parser/option_section.h"
@@ -48,9 +47,6 @@ struct MongosGlobalParams {
// The config server connection string
ConnectionString configdbs;
- // The max chunk size after which a chunk will be considered jumbo
- uint64_t maxChunkSizeBytes{ChunkSizeSettingsType::kDefaultMaxChunkSizeBytes};
-
// Whether auto-splitting is enabled
bool shouldAutoSplit{true};
};