diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-29 11:48:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 11:48:39 +0000 |
commit | 56f0ee78a9c95844289ae71169f18f443ea2df6c (patch) | |
tree | 23818c8c3eb4c65b026b219e18a8b093cfa48bfd /synapse/handlers/room.py | |
parent | Support generating structured logs in addition to standard logs. (#8607) (diff) | |
download | synapse-56f0ee78a9c95844289ae71169f18f443ea2df6c.tar.xz |
Optimise createRoom with multiple invites (#8559)
By not dropping the membership lock between invites, we can stop joins from grabbing the lock when we're half-done and slowing the whole thing down.
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index c5b1f1f1e1..e73031475f 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -771,22 +771,29 @@ class RoomCreationHandler(BaseHandler): ratelimit=False, ) - for invitee in invite_list: + # we avoid dropping the lock between invites, as otherwise joins can + # start coming in and making the createRoom slow. + # + # we also don't need to check the requester's shadow-ban here, as we + # have already done so above (and potentially emptied invite_list). + with (await self.room_member_handler.member_linearizer.queue((room_id,))): content = {} is_direct = config.get("is_direct", None) if is_direct: content["is_direct"] = is_direct - # Note that update_membership with an action of "invite" can raise a - # ShadowBanError, but this was handled above by emptying invite_list. - _, last_stream_id = await self.room_member_handler.update_membership( - requester, - UserID.from_string(invitee), - room_id, - "invite", - ratelimit=False, - content=content, - ) + for invitee in invite_list: + ( + _, + last_stream_id, + ) = await self.room_member_handler.update_membership_locked( + requester, + UserID.from_string(invitee), + room_id, + "invite", + ratelimit=False, + content=content, + ) for invite_3pid in invite_3pid_list: id_server = invite_3pid["id_server"] |