Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要对集合进行分片,并且该集合必须没有任何索引(用于快速插入操作)。我使用 autoIndexId 创建集合:false 并将其分片,但是当对它进行分片时,mongo 在分片键上创建索引。现在,我可以有一个没有任何索引的分片集合吗?
不,分片集合总是需要一个以后不能更改的索引。跨多个集群的分布需要此索引。
http://docs.mongodb.org/manual/core/sharding-shard-key/