去年的笔记
For instance, if a chunk represents a single shard key value, then MongoDB cannot split the chunk even when the chunk exceeds the size at which splits occur.
如果一个chunk只包含一个分片键值,mongodb 就不会split这个chunk,即使这个chunk超过了 chunk需要split时的大小。所以分片键的选择非常重要。
这里举个例子,比如我们使用日期(精确到日) 作为分片键,当某一天的数据非常多时,这个分片键值(比如2015/12/12)的对应的chunk会非常大,
超过64M,但是这个chunk是不可分割的。这会造成数据在各个分片中不平衡,出现性能问题。
所以我们要以 选择性高的字段做为分片键,如果这个字段(比如 日志级别)选择性低,我们可以再添加一个选择性高的字段,两个字段做为分片键。
如果以日期做为分片键,为了避免大的chunk,我们可以把日期精确到 时分秒 然后做分片键。
if your chunk ranges get down to a single key value then no further splits are possible and you get "jumbo" chunks。
以下是 大的chunk的例子:
http://dba.stackexchange.com/questions/72626/mongo-large-chunks-will-not-split
一个常见的错误:
Mongos version 3.0.1 Split Chunk Error with Sharding
http://dba.stackexchange.com/questions/96732/mongos-version-3-0-1-split-chunk-error-with-sharding?rq=1
手动切割分片:
http://www.cnblogs.com/xuegang/archive/2012/12/27/2836209.html
一、使用splitFind对可分割的chunk 手动分割。
splitFind(namespace, query),query的值必须包括分片键。将一个query指定的chunk,分割为两个基本相等大小的chunk。
执行splitFind之后,chunk被分割为两个基本相同大小的chunk:
二、使用splitAt对可分割的chunk 手动分割。
splitAt(namespace, query) 官方解释:
sh.splitAt() splits the original chunk into two chunks. One chunk has a shard key range
that starts with the original lower bound (inclusive) and ends at the specified shard key value (exclusive).
The other chunk has a shard key range that starts with the specified shard key value (inclusive) as the lower bound
and ends at the original upper bound (exclusive).
三、手动迁移chunk
db.runCommand( { moveChunk : "myapp.users" ,
find : {username : "smith"} ,
to : "mongodb-shard3.example.net" } )
注释:
moveChunk:一个集合的名字要加上数据库的名称:比如test.yql
find:一个查询语句,指定集合中的符合查询的数据或者chunk,系统自动查出from 的shard
to: 指向chunk的目的shard
只要目的shard和源sharad同意指定的chunk由目的shard接管,命令就返回。迁移chunk是一个比较复杂的过程,它包括两个内部通信协议:
1 复制数据,包括在复制过程中的变化的数据
2 确保所有参与迁移的组成部分:目的shard ,源shard ,config server都确定迁移已经完成!
The command will block until the migration is complete.
四、相关脚本