Skip to content
Snippets Groups Projects
Unverified Commit 9daf8227 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Merge pull request #3078 from matrix-org/erikj/federation_sender

Send federation events concurrently
parents dd723267 a060dfa1
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,7 @@ class TransactionQueue(object): ...@@ -169,7 +169,7 @@ class TransactionQueue(object):
while True: while True:
last_token = yield self.store.get_federation_out_pos("events") last_token = yield self.store.get_federation_out_pos("events")
next_token, events = yield self.store.get_all_new_events_stream( next_token, events = yield self.store.get_all_new_events_stream(
last_token, self._last_poked_id, limit=20, last_token, self._last_poked_id, limit=100,
) )
logger.debug("Handling %s -> %s", last_token, next_token) logger.debug("Handling %s -> %s", last_token, next_token)
...@@ -177,24 +177,33 @@ class TransactionQueue(object): ...@@ -177,24 +177,33 @@ class TransactionQueue(object):
if not events and next_token >= self._last_poked_id: if not events and next_token >= self._last_poked_id:
break break
for event in events: @defer.inlineCallbacks
def handle_event(event):
# Only send events for this server. # Only send events for this server.
send_on_behalf_of = event.internal_metadata.get_send_on_behalf_of() send_on_behalf_of = event.internal_metadata.get_send_on_behalf_of()
is_mine = self.is_mine_id(event.event_id) is_mine = self.is_mine_id(event.event_id)
if not is_mine and send_on_behalf_of is None: if not is_mine and send_on_behalf_of is None:
continue return
# Get the state from before the event. try:
# We need to make sure that this is the state from before # Get the state from before the event.
# the event and not from after it. # We need to make sure that this is the state from before
# Otherwise if the last member on a server in a room is # the event and not from after it.
# banned then it won't receive the event because it won't # Otherwise if the last member on a server in a room is
# be in the room after the ban. # banned then it won't receive the event because it won't
destinations = yield self.state.get_current_hosts_in_room( # be in the room after the ban.
event.room_id, latest_event_ids=[ destinations = yield self.state.get_current_hosts_in_room(
prev_id for prev_id, _ in event.prev_events event.room_id, latest_event_ids=[
], prev_id for prev_id, _ in event.prev_events
) ],
)
except Exception:
logger.exception(
"Failed to calculate hosts in room for event: %s",
event.event_id,
)
return
destinations = set(destinations) destinations = set(destinations)
if send_on_behalf_of is not None: if send_on_behalf_of is not None:
...@@ -207,6 +216,23 @@ class TransactionQueue(object): ...@@ -207,6 +216,23 @@ class TransactionQueue(object):
self._send_pdu(event, destinations) self._send_pdu(event, destinations)
@defer.inlineCallbacks
def handle_room_events(events):
for event in events:
yield handle_event(event)
events_by_room = {}
for event in events:
events_by_room.setdefault(event.room_id, []).append(event)
yield logcontext.make_deferred_yieldable(defer.gatherResults(
[
logcontext.run_in_background(handle_room_events, evs)
for evs in events_by_room.itervalues()
],
consumeErrors=True
))
events_processed_counter.inc_by(len(events)) events_processed_counter.inc_by(len(events))
yield self.store.update_federation_out_pos( yield self.store.update_federation_out_pos(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment