定义
sh.abortReshardCollection(namespace)版本 5.0 中的新增功能。
During a resharding operation, you can abort the operation with the
sh.abortReshardCollection()method.You can abort a resharding operation at any point until the commit phase. If the resharding operation has reached the commit phase before you run the
sh.abortReshardCollection()method, the method returns an error.重要
mongosh 方法
This page documents a
mongoshmethod. This is not the documentation for database commands or language-specific drivers, such as Node.js.有关数据库命令,请参阅
abortReshardCollection命令。如需了解 MongoDB API 驱动程序,请参阅特定语言的 MongoDB 驱动程序文档。
兼容性
此方法可用于以下环境中托管的部署:
- MongoDB Atlas:用于云中 MongoDB 部署的完全托管服务
重要
M0 和 Flex 集群不支持此命令。有关更多信息,请参阅不支持的命令。
MongoDB Enterprise:基于订阅、自我管理的 MongoDB 版本
MongoDB Community:源代码可用、免费使用且可自行管理的 MongoDB 版本
语法
The sh.abortReshardCollection() method has the following syntax:
sh.abortReshardCollection( <namespace> )
Parameter
The sh.abortReshardCollection() method takes the following parameter:
Parameter | 类型 | 说明 |
|---|---|---|
字符串 | 要分片的集合名称,格式为 |
例子
中止重新分片操作
以下示例中止对sales.orders集合正在运行的重新分片操作:
sh.abortReshardCollection("sales.orders")
提示