-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Update resiliency docs #19303
Update resiliency docs #19303
Conversation
Add clarifications about Jepsen tests and new section on issues with versioning.
=== The _version field may not uniquely identify document content during a network partition (STATUS: ONGOING) | ||
|
||
When a primary is partitioned away from the cluster there is a short period of time until it detects this. During that time it will continue | ||
indexing writes locally, thereby updated document versions. When it tries replicating the operation, however, it will discover that it is |
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.
Typo: updated
-> updating
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.
indexing -> to index
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.
replicating -> to replicate
LGTM. |
|
||
When a primary is partitioned away from the cluster there is a short period of time until it detects this. During that time it will continue | ||
indexing writes locally, thereby updated document versions. When it tries replicating the operation, however, it will discover that it is | ||
partitioned away. It won't acknowledge the write and wait until the partition is resolved to negotiate with the master on how to proceed. |
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.
is partitioned -> has been partitioned
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.
write and wait -> write and will wait
Minor grammar changes, but LGTM |
Thanks @jasontedor @clintongormley. |
Adds clarifications about Jepsen tests and new section on issues with versioning.