Skip to content

Commit

Permalink
Batch up sliding sync room subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Oct 3, 2024
1 parent d4e3ad0 commit 0d3d22b
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
12 changes: 7 additions & 5 deletions synapse/handlers/sliding_sync/room_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,18 +500,20 @@ async def _compute_interested_rooms_new_tables(
# depending on the `required_state` requested (see below).
partial_state_rooms = await self.store.get_partial_rooms()

subscription_sliding_sync_rooms = (
await self.store.get_sliding_sync_room_for_user_batch(
user_id, sync_config.room_subscriptions.keys()
)
)

for (
room_id,
room_subscription,
) in sync_config.room_subscriptions.items():
# Check if we have a membership for the room, but didn't pull it out
# above. This could be e.g. a leave that we don't pull out by
# default.
current_room_entry = (
await self.store.get_sliding_sync_room_for_user(
user_id, room_id
)
)
current_room_entry = subscription_sliding_sync_rooms.get(room_id)
if not current_room_entry:
# TODO: Handle rooms the user isn't in.
continue
Expand Down
48 changes: 48 additions & 0 deletions synapse/storage/databases/main/roommember.py
Original file line number Diff line number Diff line change
Expand Up @@ -1499,6 +1499,54 @@ def get_sliding_sync_room_for_user_txn(
"get_sliding_sync_room_for_user", get_sliding_sync_room_for_user_txn
)

async def get_sliding_sync_room_for_user_batch(
self, user_id: str, room_ids: StrCollection
) -> Dict[str, RoomsForUserSlidingSync]:
"""Get the sliding sync room entry for the given user and rooms."""

def get_sliding_sync_room_for_user_batch_txn(
txn: LoggingTransaction,
) -> Dict[str, RoomsForUserSlidingSync]:
clause, args = make_in_list_sql_clause(
self.database_engine, "m.room_id", room_ids
)
sql = f"""
SELECT m.room_id, m.sender, m.membership, m.membership_event_id,
r.room_version,
m.event_instance_name, m.event_stream_ordering,
m.has_known_state,
COALESCE(j.room_type, m.room_type),
COALESCE(j.is_encrypted, m.is_encrypted)
FROM sliding_sync_membership_snapshots AS m
INNER JOIN rooms AS r USING (room_id)
LEFT JOIN sliding_sync_joined_rooms AS j ON (j.room_id = m.room_id AND m.membership = 'join')
WHERE m.forgotten = 0
AND {clause}
AND user_id = ?
"""
args.append(user_id)
txn.execute(sql, args)

return {
row[0]: RoomsForUserSlidingSync(
room_id=row[0],
sender=row[1],
membership=row[2],
event_id=row[3],
room_version_id=row[4],
event_pos=PersistedEventPosition(row[5], row[6]),
has_known_state=bool(row[7]),
room_type=row[8],
is_encrypted=row[9],
)
for row in txn
}

return await self.db_pool.runInteraction(
"get_sliding_sync_room_for_user_batch",
get_sliding_sync_room_for_user_batch_txn,
)


class RoomMemberBackgroundUpdateStore(SQLBaseStore):
def __init__(
Expand Down

0 comments on commit 0d3d22b

Please sign in to comment.