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
08284c86
Commit
08284c86
authored
7 years ago
by
Erik Johnston
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2343 from matrix-org/erikj/fastpush
Perf: Don't filter events for push
parents
58dc1f2c
f502b0de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
synapse/push/bulk_push_rule_evaluator.py
+8
-17
8 additions, 17 deletions
synapse/push/bulk_push_rule_evaluator.py
synapse/storage/account_data.py
+13
-0
13 additions, 0 deletions
synapse/storage/account_data.py
synapse/visibility.py
+0
-19
0 additions, 19 deletions
synapse/visibility.py
with
21 additions
and
36 deletions
synapse/push/bulk_push_rule_evaluator.py
+
8
−
17
View file @
08284c86
...
...
@@ -19,7 +19,6 @@ from twisted.internet import defer
from
.push_rule_evaluator
import
PushRuleEvaluatorForEvent
from
synapse.visibility
import
filter_events_for_clients_context
from
synapse.api.constants
import
EventTypes
,
Membership
from
synapse.util.caches.descriptors
import
cached
from
synapse.util.async
import
Linearizer
...
...
@@ -92,15 +91,6 @@ class BulkPushRuleEvaluator(object):
rules_by_user
=
yield
self
.
_get_rules_for_event
(
event
,
context
)
actions_by_user
=
{}
# None of these users can be peeking since this list of users comes
# from the set of users in the room, so we know for sure they're all
# actually in the room.
user_tuples
=
[(
u
,
False
)
for
u
in
rules_by_user
]
filtered_by_user
=
yield
filter_events_for_clients_context
(
self
.
store
,
user_tuples
,
[
event
],
{
event
.
event_id
:
context
}
)
room_members
=
yield
self
.
store
.
get_joined_users_from_context
(
event
,
context
)
...
...
@@ -110,6 +100,14 @@ class BulkPushRuleEvaluator(object):
condition_cache
=
{}
for
uid
,
rules
in
rules_by_user
.
iteritems
():
if
event
.
sender
==
uid
:
continue
if
not
event
.
is_state
():
is_ignored
=
yield
self
.
store
.
is_ignored_by
(
event
.
sender
,
uid
)
if
is_ignored
:
continue
display_name
=
None
profile_info
=
room_members
.
get
(
uid
)
if
profile_info
:
...
...
@@ -121,13 +119,6 @@ class BulkPushRuleEvaluator(object):
if
event
.
type
==
EventTypes
.
Member
and
event
.
state_key
==
uid
:
display_name
=
event
.
content
.
get
(
"
displayname
"
,
None
)
filtered
=
filtered_by_user
[
uid
]
if
len
(
filtered
)
==
0
:
continue
if
filtered
[
0
].
sender
==
uid
:
continue
for
rule
in
rules
:
if
'
enabled
'
in
rule
and
not
rule
[
'
enabled
'
]:
continue
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/account_data.py
+
13
−
0
View file @
08284c86
...
...
@@ -308,3 +308,16 @@ class AccountDataStore(SQLBaseStore):
"
WHERE stream_id < ?
"
)
txn
.
execute
(
update_max_id_sql
,
(
next_id
,
next_id
))
@cachedInlineCallbacks
(
num_args
=
2
,
cache_context
=
True
,
max_entries
=
5000
)
def
is_ignored_by
(
self
,
ignored_user_id
,
ignorer_user_id
,
cache_context
):
ignored_account_data
=
yield
self
.
get_global_account_data_by_type_for_user
(
"
m.ignored_user_list
"
,
ignorer_user_id
,
on_invalidate
=
cache_context
.
invalidate
,
)
if
not
ignored_account_data
:
defer
.
returnValue
(
False
)
defer
.
returnValue
(
ignored_user_id
in
ignored_account_data
.
get
(
"
ignored_users
"
,
{})
)
This diff is collapsed.
Click to expand it.
synapse/visibility.py
+
0
−
19
View file @
08284c86
...
...
@@ -188,25 +188,6 @@ def filter_events_for_clients(store, user_tuples, events, event_id_to_state):
})
@defer.inlineCallbacks
def
filter_events_for_clients_context
(
store
,
user_tuples
,
events
,
event_id_to_context
):
user_ids
=
set
(
u
[
0
]
for
u
in
user_tuples
)
event_id_to_state
=
{}
for
event_id
,
context
in
event_id_to_context
.
items
():
state
=
yield
store
.
get_events
([
e_id
for
key
,
e_id
in
context
.
current_state_ids
.
iteritems
()
if
key
==
(
EventTypes
.
RoomHistoryVisibility
,
""
)
or
(
key
[
0
]
==
EventTypes
.
Member
and
key
[
1
]
in
user_ids
)
])
event_id_to_state
[
event_id
]
=
state
res
=
yield
filter_events_for_clients
(
store
,
user_tuples
,
events
,
event_id_to_state
)
defer
.
returnValue
(
res
)
@defer.inlineCallbacks
def
filter_events_for_client
(
store
,
user_id
,
events
,
is_peeking
=
False
):
"""
...
...
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