Details
-
Improvement
-
Resolution: Done
-
Trivial - P5
-
None
-
None
Description
On the following page:
http://docs.mongodb.org/manual/tutorial/manage-sharded-cluster-balancer/
It is stated to use the following format:
- For HH values, use hour values ranging from 00 - 23.
- For MM value, use minute values ranging from 00 - 59.
However, the example uses "6:00", not "06:00"
db.settings.update(
|
{ _id: "balancer" },
|
{ $set: { activeWindow : { start: "23:00", stop: "6:00" } } },
|
{ upsert: true }
|
)
|