diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2023-01-23 10:31:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 10:31:36 +0000 |
commit | 2ec9c58496e2138cbc4364aba238997c393d5308 (patch) | |
tree | 97218101bdf4683655cffcb49fdd80f151fcc65b /synapse/storage | |
parent | Enable Faster Remote Room Joins against worker-mode Synapse. (#14752) (diff) | |
download | synapse-2ec9c58496e2138cbc4364aba238997c393d5308.tar.xz |
Faster joins: Update room stats and the user directory on workers when finishing join (#14874)
* Faster joins: Update room stats and user directory on workers when done When finishing a partial state join to a room, we update the current state of the room without persisting additional events. Workers receive notice of the current state update over replication, but neglect to wake the room stats and user directory updaters, which then get incidentally triggered the next time an event is persisted or an unrelated event persister sends out a stream position update. We wake the room stats and user directory updaters at the appropriate time in this commit. Part of #12814 and #12815. Signed-off-by: Sean Quah <seanq@matrix.org> * fixup comment Signed-off-by: Sean Quah <seanq@matrix.org>
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/controllers/state.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/controllers/state.py b/synapse/storage/controllers/state.py index 26d79c6e62..2045169b9a 100644 --- a/synapse/storage/controllers/state.py +++ b/synapse/storage/controllers/state.py @@ -493,8 +493,6 @@ class StateStorageController: up to date. """ # FIXME(faster_joins): what do we do here? - # https://github.com/matrix-org/synapse/issues/12814 - # https://github.com/matrix-org/synapse/issues/12815 # https://github.com/matrix-org/synapse/issues/13008 return await self.stores.main.get_partial_current_state_deltas( |