Skip to content
Snippets Groups Projects
Unverified Commit b1433bf2 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Don't table scan events on worker startup (#8419)


* Fix table scan of events on worker startup.

This happened because we assumed "new" writers had an initial stream
position of 0, so the replication code tried to fetch all events written
by the instance between 0 and the current position.

Instead, set the initial position of new writers to the current
persisted up to position, on the assumption that new writers won't have
written anything before that point.

* Consider old writers coming back as "new".

Otherwise we'd try and fetch entries between the old stale token and the
current position, even though it won't have written any rows.

Co-authored-by: default avatarAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>

Co-authored-by: default avatarAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>
parent 2649d545
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment