Why does most of the traffic go to the primary MongoDB node?
In a MongoDB cluster:
- all write traffic has to go to the primary node
- it is responsible for dispatching to the other nodes
- by default, most of the read traffic also goes to the primary node
- this is the default and safest option
You can alter that behavior by using Read and Write concerns