mirror of https://github.com/watcha-fr/synapse
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: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>code_spécifique_watcha
parent
2649d545a5
commit
b1433bf231
@ -0,0 +1 @@ |
||||
Add experimental support for sharding event persister. |
Loading…
Reference in new issue