-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(DOCSP-39188): Clarify that restores can be at most one major version ahead #150
Changes from 9 commits
dbb305f
909796d
c22e511
8c57739
9c6a8ab
ceb41e4
965b449
a2bb415
ab929e3
42d13b3
d2a9947
83f7c78
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,15 @@ To change your feature compatibility version, see | |
|
||
.. note:: | ||
|
||
You can restore the BSON files generated from ``mongodump`` | ||
into MongoDB deployments running the same or newer version | ||
as the source deployment. | ||
You can restore the BSON files generated from ``mongodump`` into | ||
MongoDB deployments that run the same version or one major version | ||
later than the source deployment. For example, to restore to a | ||
MongoDB {+server-version+} deployment from a source deployment that | ||
is lower than MongoDB {+server-previous-version+}, you must | ||
successively upgrade the major release of the source deployment until | ||
you upgrade to {+server-previous-version+}-series. To learn how to | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After lines 17-19, we can say something like the following: The issue isn't that the current claims on BSON are wrong, but ideally we don't want to push users to try to use this instead of our standard upgrade procedures. |
||
upgrade your deployment, see the :manual:`upgrade documentation | ||
</release-notes/{+server-version+}-upgrade>`. | ||
|
||
This guarantee does not apply to metadata, archive, or oplog replay | ||
files. If you try to restore these files using different | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
You can restore the BSON files generated from ``mongodump`` into MongoDB | ||
This comment was marked as resolved.
Sorry, something went wrong. |
||
deployments that run the same version or one major version later than | ||
the source deployment. For more information see | ||
:ref:`mongodump-matching-server-version`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, to clarify, it's possible to restore BSON files across multiple versions - we can keep lines 17-19 as they are.