Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 75888c2

Browse files
author
Mathieu Velten
authored
Faster joins: do not wait for full state when creating events to send (#14403)
Signed-off-by: Mathieu Velten <[email protected]>
1 parent 115f0eb commit 75888c2

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

changelog.d/14403.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Faster joins: do not wait for full state when creating events to send.

synapse/events/builder.py

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ async def build(
128128
state_filter=StateFilter.from_types(
129129
auth_types_for_event(self.room_version, self)
130130
),
131+
await_full_state=False,
131132
)
132133
auth_event_ids = self._event_auth_handler.compute_auth_events(
133134
self, state_ids

synapse/state/__init__.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ async def compute_state_after_events(
190190
room_id: str,
191191
event_ids: Collection[str],
192192
state_filter: Optional[StateFilter] = None,
193+
await_full_state: bool = True,
193194
) -> StateMap[str]:
194195
"""Fetch the state after each of the given event IDs. Resolve them and return.
195196
@@ -200,13 +201,18 @@ async def compute_state_after_events(
200201
Args:
201202
room_id: the room_id containing the given events.
202203
event_ids: the events whose state should be fetched and resolved.
204+
await_full_state: if `True`, will block if we do not yet have complete state
205+
at the given `event_id`s, regardless of whether `state_filter` is
206+
satisfied by partial state.
203207
204208
Returns:
205209
the state dict (a mapping from (event_type, state_key) -> event_id) which
206210
holds the resolution of the states after the given event IDs.
207211
"""
208212
logger.debug("calling resolve_state_groups from compute_state_after_events")
209-
ret = await self.resolve_state_groups_for_events(room_id, event_ids)
213+
ret = await self.resolve_state_groups_for_events(
214+
room_id, event_ids, await_full_state
215+
)
210216
return await ret.get_state(self._state_storage_controller, state_filter)
211217

212218
async def get_current_user_ids_in_room(

0 commit comments

Comments
 (0)