-
Type: New Feature
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: mongorestore
-
None
-
5
-
Needed
-
When we define a new flag for restoring existing UUIDs, it will need to be added to the docs.
In MongoDB 3.6, collections can be created in two ways:
- using create, they are assigned a new UUID
- using applyOps, they can be created with a pre-existing UUID (details TBD)
However, creating with a UUID will require special permissions. We need to create a command line flag to opt into reusing existing UUIDs when restoring and to use the appropriate mechanism if set. The implications of doing so or not doing so will need to be documented.
Update: from TOOLS-1862 epic, the desired behavior is as follows:
- Add a --preserveUUIDs flag
- With --preserveUUIDs, have the following behaviors:
- Require the --drop flag or abort
- Require collection metadata to contain UUID info or abort
- Require the destination to be in FCV 3.6 or abort (MUST check both ways that FCV could appear)
- Create collections with the desired UUID with a synthesized applyOps command
- Follow procedure in
SERVER-31906for creating admin.system.version with a given UUID
- Follow procedure in
- Apply oplog without removing UUIDs
- is related to
-
TOOLS-2032 Support UUID preservation for admin.system.version
- Closed