开发者社区 问答 正文

MongoDB如何清理孤儿文档

已解决

MongoDB如何清理孤儿文档

展开
收起
阿里云服务支持 2022-11-01 11:14:31 724 分享 版权
1 条回答
写回答
取消 提交回答
  • 官方回答

    指定 shard 清理孤儿文档

    db.adminCommand({ runCommandOnShard: "dds-xx1", command: { cleanupOrphaned: "test.info", startingFromKey: { x: 10 } // 换成对应shardkey的起点 } })

    2022-11-01 14:20:01
    赞同 展开评论