我必须在Mongodb中存储一百万份文件。 Mongodb集群由4个分片,1个mongos和1个配置服务器组成。
如何获取文档的详细信息,如:
答案 0 :(得分:3)
嘿,找到您可以使用expalain()
的文档位置查找文件位置的步骤
1. Open Mongos terminanl
2. Switch to your databse
3. find document of which you want to search location using explain()
eg db.collection.find({"x":1234}).explain()
您将获得json格式的结果,在其中查找分片键。更多详情请查看link