Skip to content
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

[contiv] Watchers may get closed after server restart if db was compacted #266

Merged
merged 1 commit into from May 11, 2018

Conversation

milanlenco
Copy link
Collaborator

Every watcher internally remembers the revision of the last
notification it has received for the watched prefix.
The revision currently in use by the server may be higher
if keys outside of the watched scope were edited since then.

When etcd server restarts, watcher will ask for all changes since
the last revision it has seen. This is not a problem even if the
revision is older than the (restored) current one, provided that
the server has kept the history of changes in-between. However,
this is not the case if etcd was compacted between the last
notification delivered to the watcher and the server restart.
In such case, the server refuses the watcher to reconnect after
the restart, with a reason that it can only deliver notifications
since the last compaction.

This is not a fatal case, however, since changes between the last
delivered notification and the compaction were not related to the
watched prefix. Watcher just needs to re-create subscription,
starting with the revision of the compaction.

Signed-off-by: Milan Lenco milan.lenco@pantheon.tech

Every watcher internally remembers the revision of the last
notification it has received for the watched prefix.
The revision currently in use by the server may be higher
if keys outside of the watched scope were edited since then.
When etcd server restarts, watcher will ask for all changes since
the last revision it has seen. This is not a problem even if the
revision is older than the (restored) current one, provided that
the server has kept the history of changes in-between. However,
this is not the case if etcd was compacted between the the last
notification delivered to the watcher and the server restart.
In such case, the server refuses the watcher to reconnect after
the restart, with a reason that it can only deliver notifications
since the last compaction.
This is not a fatal case, however, since changes between the last
delivered notification and the compaction were not related to the
watched prefix. Watcher just needs to re-create subscription,
starting with the revision of the compaction.

Signed-off-by: Milan Lenco <milan.lenco@pantheon.tech>
@milanlenco milanlenco merged commit 14701b3 into ligato:contiv May 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant