发布于 2015-09-14 14:59:41 | 203 次阅读 | 评论: 0 | 来源: 网络整理
The convertToCapped command converts an existing, non-capped collection to a capped collection within the same database.
The command has the following syntax:
{convertToCapped: <collection>, size: <capped size> }
convertToCapped takes an existing collection (<collection>) and transforms it into a capped collection with a maximum size in bytes, specified to the size argument (<capped size>).
During the conversion process, the convertToCapped command exhibit the following behavior:
注解
MongoDB does not support the convertToCapped command in a sharded cluster.
警告
The convertToCapped will not recreate indexes from the original collection on the new collection. If you need indexes on this collection you will need to create these indexes after the conversion is complete.
也可以参考
警告
This command obtains a global write lock and will block other operations until it has completed.