This repository was archived by the owner on May 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
DOCSP-47219 Midsync Reads FAQ #612
Merged
ajhuh-mdb
merged 4 commits into
mongodb:master
from
ajhuh-mdb:DOCSP-47219-midsync-reads-faq
Feb 13, 2025
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,20 +26,25 @@ following the steps in :ref:`c2c-reconfigure-mid-migration`. | |
Can I perform reads or writes to my destination cluster while ``mongosync`` is syncing? | ||
--------------------------------------------------------------------------------------- | ||
|
||
You can perform reads at any time during synchronization. | ||
However, ``mongosync`` combines and reorders writes from the source to destination during synchronization, | ||
and also temporarily modifies various collection characteristics. | ||
As a result, the destination is not guaranteed to match the source at any point in time when the sync is running. | ||
For consistent reads, wait for the migration to :ref:`c2c-api-commit`. To learn more, see :ref:`mongosync-considerations`. | ||
|
||
Performing writes to your destination cluster during synchronization results in undefined behavior. | ||
``mongosync`` blocks writes on the destination cluster by default. To learn | ||
more about write-blocking, see :ref:`c2c-write-blocking` and :ref:`c2c-api-start`. | ||
|
||
Upon commit, it is only safe to write to the destination cluster when ``canWrite`` is ``true``. | ||
To check the value of ``canWrite``, run the :ref:`c2c-api-progress` endpoint. | ||
|
||
To learn more about permissable reads and writes during synchronization, see :ref:`c2c-reads-and-writes`. | ||
``mongosync`` combines and reorders writes from the source to destination during | ||
synchronization, and temporarily modifies collection characteristics. As a | ||
result, ``mongosync`` can't guarantee that the destination matches the source, | ||
including a stale version of the source, at any point in time when the sync is | ||
running. To safely accept traffic to the destination cluster, wait for the | ||
|
||
migration to :ref:`c2c-api-commit`. To learn more, see | ||
:ref:`mongosync-considerations`. | ||
|
||
Performing writes to your destination cluster during synchronization results in | ||
undefined behavior. ``mongosync`` blocks writes on the destination cluster by | ||
default. To learn more about write-blocking, see :ref:`c2c-write-blocking` and | ||
:ref:`c2c-api-start`. | ||
|
||
Upon commit, it is only safe to write to the destination cluster when | ||
``canWrite`` is ``true``. To check the value of ``canWrite``, run the | ||
:ref:`c2c-api-progress` endpoint. | ||
|
||
To learn more about permissable reads and writes during synchronization, see | ||
:ref:`c2c-reads-and-writes`. | ||
|
||
.. note:: | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
"combines and reorders writes" -> link to https://www.mongodb.com/docs/cluster-to-cluster-sync/current/reference/mongosync/mongosync-behavior/#consistency
"temporarily modifies" -> link to https://www.mongodb.com/docs/cluster-to-cluster-sync/current/reference/mongosync/mongosync-behavior/#temporary-changes-to-collection-characteristics
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.
updated!