-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
ALL
-
(copied to CRM)
-
None
-
3
-
None
-
None
-
None
-
None
-
None
-
None
The server disallows any collection created with ".system." in its name.
https://github.com/mongodb/mongo/blob/r4.4.12/src/mongo/db/ops/insert.cpp#L273
When scan_checked_replset.js operates on system collections, it attempts to create the collection with names such as "admin.dbcheck_backup.system.users.3" which violates the constraint.
We can modify the prefix generated in the scan script to use a different character:
const saveCollPrefix = "dbcheck."; const backupCollPrefix = "dbcheck_backup.";
- is duplicated by
-
SERVER-65403 Update dbCheck-related scripts
-
- Closed
-