What is the exact difference between mongod and mongos

前端 未结 4 1681
孤城傲影
孤城傲影 2021-02-05 01:32

While I was looking into the MongoDB documentation, I found two different terms mongod and mongos.

While starting the server, I am using

4条回答
  •  盖世英雄少女心
    2021-02-05 02:18

    mongod is the daemon, mongo is the client, mongos is the 'MongoDB Shard Utility'. Take a look at man mongos:

    mongos for "MongoDB Shard," is a routing service for MongoDB shard configurations that processes queries from the application layer, and determines the location of this data in the sharded cluster, in order to complete these operations. From the perspective of the application, a mongos instance behaves identically to any other MongoDB instance.

提交回复
热议问题