浏览代码

Add MongoDB Compact Example

Force MongoDB to release disk space from a collection after documents
have been deleted.
master
Nate Bohman 4 年前
父节点
当前提交
77408dc423
签署人:: Nate Bohman <natrinicle@gmail.com> GPG 密钥 ID: C10546A54ABA1CE5
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. +6
    -0
      python_utils/mongodb_compact.py

+ 6
- 0
python_utils/mongodb_compact.py 查看文件

@@ -0,0 +1,6 @@
from pymongo import MongoClient

mongo = MongoClient("mongodb+srv://admin:PASSWORD@staging.mongodb.staging.oonum.io/admin?ssl=false&retryWrites=true&serverSelectionTimeoutMS=5000&connectTimeoutMS=10000&authMechanism=SCRAM-SHA-256&w=majority")

# mongo["auth"].command({"compact": "Orgs", "force": True})
mongo["database"].command({"compact": "collection", "force": True}) # Mongo 4.4 can compact without blocking, older versions block IO during compaction.

正在加载...
取消
保存