-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Adding KV tombstones to fix non-monotonic index on deletes #577
Merged
Conversation
This file contains 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
armon
added a commit
that referenced
this pull request
Jan 5, 2015
Adding KV tombstones to fix non-monotonic index on deletes
Straight outta India (literally). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #195. The visible issue from the outside of Consul is that if you are watching a prefix for changes (say service/web/config) for changes, and a key is deleted from the folder then the X-Consul-Index value either doesn't change or goes backward. This means that long-polling for changes breaks during a deletion. The reason for this is that the index is calculated as the Max(ModifyTime) of all the entries. The Max() function however is only monotonic if the inputs are also monotonic. A delete breaks this by removing entries, causing the Max value to slide backward or to stagnate. Because of this, blocking queries get "stuck". This is what a user experiences.
To fix this, we need to ensure X-Consul-Index is monotonic, even with deletes. This is tricky because you need to detect the absence of data. One way to do this is to never actually delete, but only soft delete and filter the results. Unfortunately, this causes unbounded data usage. The trade off we make is to soft delete by creating a "tombstone" entry. These are kept around for a configurable amount of time (default 15 minutes) and then GC'd later. This prevents unbounded data growth. However, while the tombstones are around, we use them to calculate the X-Consul-Index value and ensure the inputs are monotonic. Because of the tradeoff with unbounded storage growth, this only papers over the issue until the GC happens, at which point the index may slide backwards again.
In practice, this fixes the issues with replication and change detection and so works well enough. The only clients that would be affected by the GC are ones that are doing blocking queries extremely infrequently (less often than the GC runs). This is an edge case, and the behavior will be no worse than it currently is for them.