summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-09-29 16:42:19 +0100
committerGitHub <noreply@github.com>2020-09-29 16:42:19 +0100
commitb1433bf231370636b817ffa01e6cda5a567cfafe (patch)
tree7357924dea4233ae76dba772c9a6ec1fb55ba2dd /changelog.d
parentMypy fixes for `synapse.handlers.federation` (#8422) (diff)
downloadsynapse-b1433bf231370636b817ffa01e6cda5a567cfafe.tar.xz
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>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8419.feature1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8419.feature b/changelog.d/8419.feature
new file mode 100644
index 0000000000..b363e929ea
--- /dev/null
+++ b/changelog.d/8419.feature
@@ -0,0 +1 @@
+Add experimental support for sharding event persister.