<slide>
<title>Balancing tips</title>

<list>
	<bullet>Run the balancer during low traffic periods:
		<example>use config;

db.settings.update(
	{ _id: 'balancer' },
	{ $set: { activeWindow: { start: "23:00", stop: "4:00" } } }
);</example>
	</bullet>
	<bullet>Can be triggered manually using %moveChunk%</bullet>
	<bullet>Pre-creating ranges for heavy insertion loads can avoid over-populating a single shard</bullet>
	<bullet>Feel free to write your own smart balancer!</bullet>
</list>
</slide>
