MongoDB集群设置集合分片生效

Posted 右介

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB集群设置集合分片生效相关的知识,希望对你有一定的参考价值。

#连接mongos
/opt/mongodb/mongodb-linux-x86_64-2.4.8/bin/mongo  127.0.0.1:27017
 
#使用admin数据库
user admin
 
#指定testdb分片生效
db.runCommand( { enablesharding :"库名"});
 
#指定数据库里需要分片的集合和片键
db.runCommand( { shardcollection : "库名.表名",key : {_id: 1} } )

以上是关于MongoDB集群设置集合分片生效的主要内容,如果未能解决你的问题,请参考以下文章

Docker——基于Docker搭建MongoDB分片集群

Mongodb集群架构之分片架构

深入学习MongoDB分片(Sharding)集群技术

MongoDB之分片集群与复制集

MongoDB Sharding Cluster分片集群

MongoDB 分片、仲裁器和集群设置