Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
971059a7
Unverified
Commit
971059a7
authored
7 years ago
by
Erik Johnston
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #3088 from matrix-org/erikj/as_parallel
Send events to ASes concurrently
parents
233699c4
12159156
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/appservice.py
+19
-2
19 additions, 2 deletions
synapse/handlers/appservice.py
with
19 additions
and
2 deletions
synapse/handlers/appservice.py
+
19
−
2
View file @
971059a7
...
...
@@ -18,7 +18,9 @@ from twisted.internet import defer
import
synapse
from
synapse.api.constants
import
EventTypes
from
synapse.util.metrics
import
Measure
from
synapse.util.logcontext
import
make_deferred_yieldable
,
preserve_fn
from
synapse.util.logcontext
import
(
make_deferred_yieldable
,
preserve_fn
,
run_in_background
,
)
import
logging
...
...
@@ -84,11 +86,16 @@ class ApplicationServicesHandler(object):
if
not
events
:
break
events_by_room
=
{}
for
event
in
events
:
events_by_room
.
setdefault
(
event
.
room_id
,
[]).
append
(
event
)
@defer.inlineCallbacks
def
handle_event
(
event
):
# Gather interested services
services
=
yield
self
.
_get_services_for_event
(
event
)
if
len
(
services
)
==
0
:
continue
# no services need notifying
return
# no services need notifying
# Do we know this user exists? If not, poke the user
# query API for all services which match that user regex.
...
...
@@ -108,6 +115,16 @@ class ApplicationServicesHandler(object):
service
,
event
)
@defer.inlineCallbacks
def
handle_room_events
(
events
):
for
event
in
events
:
yield
handle_event
(
event
)
yield
make_deferred_yieldable
(
defer
.
gatherResults
([
run_in_background
(
handle_room_events
,
evs
)
for
evs
in
events_by_room
.
itervalues
()
],
consumeErrors
=
True
))
events_processed_counter
.
inc_by
(
len
(
events
))
yield
self
.
store
.
set_appservice_last_pos
(
upper_bound
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment