From e822375882b000d11295b826ece06af6d6ac85b8 Mon Sep 17 00:00:00 2001 From: Asya Kamsky Date: Mon, 28 Jul 2014 10:24:05 -0400 Subject: [PATCH 1/2] Change example to set secondaryThrottle to false Since secondary throttle default is true since 2.4, example should show how to set it to false (or off) since the page that explains when to to turn it off links to here. --- source/tutorial/configure-sharded-cluster-balancer.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorial/configure-sharded-cluster-balancer.txt b/source/tutorial/configure-sharded-cluster-balancer.txt index 1c122dbd630..f1dcdc1e79a 100644 --- a/source/tutorial/configure-sharded-cluster-balancer.txt +++ b/source/tutorial/configure-sharded-cluster-balancer.txt @@ -138,7 +138,7 @@ following command: use config db.settings.update( { "_id" : "balancer" }, - { $set : { "_secondaryThrottle" : true } }, + { $set : { "_secondaryThrottle" : false } }, { upsert : true } ) From 6b419a48d526dfa140159e09f24945640e3cbbb7 Mon Sep 17 00:00:00 2001 From: Asya Kamsky Date: Mon, 28 Jul 2014 10:27:43 -0400 Subject: [PATCH 2/2] restarting does not require special option --- source/tutorial/configure-sharded-cluster-balancer.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tutorial/configure-sharded-cluster-balancer.txt b/source/tutorial/configure-sharded-cluster-balancer.txt index f1dcdc1e79a..7010dadcf6a 100644 --- a/source/tutorial/configure-sharded-cluster-balancer.txt +++ b/source/tutorial/configure-sharded-cluster-balancer.txt @@ -143,6 +143,6 @@ following command: ) The effects of changing the ``_secondaryThrottle`` value may not be -immediate. To ensure an immediate effect, stop the balancer and restart -it with the selected value of ``_secondaryThrottle``. See +immediate. To ensure an immediate effect, stop and restart the balancer +to enable the selected value of ``_secondaryThrottle``. See :doc:`/tutorial/manage-sharded-cluster-balancer` for details.