summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarah Zhou <sarah.zhou@10gen.com>2018-07-10 11:35:02 -0400
committerSarah Zhou <sarah.zhou@10gen.com>2018-07-11 11:02:52 -0400
commitc6554668d9a4b6a7bdc107bd96c916f5b04bc307 (patch)
treefa84722d4efb907925b8528bbc4af9ceca98d1f3
parent13942929a54621c15afe6b9f5d6aff26882bb681 (diff)
downloadmongo-c6554668d9a4b6a7bdc107bd96c916f5b04bc307.tar.gz
SERVER-36041 Increase the size of changelog and actionlog
(cherry picked from commit a7f2cf99a1ab6548eff63d3eddafab1134fe6b84)
-rw-r--r--src/mongo/s/catalog/sharding_catalog_client_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/catalog/sharding_catalog_client_impl.cpp b/src/mongo/s/catalog/sharding_catalog_client_impl.cpp
index c2ac2de43cb..abd0601fa57 100644
--- a/src/mongo/s/catalog/sharding_catalog_client_impl.cpp
+++ b/src/mongo/s/catalog/sharding_catalog_client_impl.cpp
@@ -93,10 +93,10 @@ const int kMaxReadRetry = 3;
const int kMaxWriteRetry = 3;
const std::string kActionLogCollectionName("actionlog");
-const int kActionLogCollectionSizeMB = 2 * 1024 * 1024;
+const int kActionLogCollectionSizeMB = 20 * 1024 * 1024;
const std::string kChangeLogCollectionName("changelog");
-const int kChangeLogCollectionSizeMB = 10 * 1024 * 1024;
+const int kChangeLogCollectionSizeMB = 200 * 1024 * 1024;
const NamespaceString kSettingsNamespace("config", "settings");