This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Limit the number of events that can be created on a given room concurrently #1620
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
from synapse.types import ( | ||
UserID, RoomAlias, RoomStreamToken, get_domain_from_id | ||
) | ||
from synapse.util.async import run_on_reactor, ReadWriteLock | ||
from synapse.util.async import run_on_reactor, ReadWriteLock, Limiter | ||
from synapse.util.logcontext import preserve_fn | ||
from synapse.util.metrics import measure_func | ||
from synapse.visibility import filter_events_for_client | ||
|
@@ -50,6 +50,8 @@ def __init__(self, hs): | |
|
||
self.pagination_lock = ReadWriteLock() | ||
|
||
self.limiter = Limiter(max_count=5) | ||
|
||
@defer.inlineCallbacks | ||
def purge_history(self, room_id, event_id): | ||
event = yield self.store.get_event(event_id) | ||
|
@@ -191,36 +193,38 @@ def create_event(self, event_dict, token_id=None, txn_id=None, prev_event_ids=No | |
""" | ||
builder = self.event_builder_factory.new(event_dict) | ||
|
||
self.validator.validate_new(builder) | ||
|
||
if builder.type == EventTypes.Member: | ||
membership = builder.content.get("membership", None) | ||
target = UserID.from_string(builder.state_key) | ||
with (yield self.limiter.queue(builder.room_id)): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
self.validator.validate_new(builder) | ||
|
||
if builder.type == EventTypes.Member: | ||
membership = builder.content.get("membership", None) | ||
target = UserID.from_string(builder.state_key) | ||
|
||
if membership in {Membership.JOIN, Membership.INVITE}: | ||
# If event doesn't include a display name, add one. | ||
profile = self.hs.get_handlers().profile_handler | ||
content = builder.content | ||
|
||
try: | ||
content["displayname"] = yield profile.get_displayname(target) | ||
content["avatar_url"] = yield profile.get_avatar_url(target) | ||
except Exception as e: | ||
logger.info( | ||
"Failed to get profile information for %r: %s", | ||
target, e | ||
) | ||
|
||
if membership in {Membership.JOIN, Membership.INVITE}: | ||
# If event doesn't include a display name, add one. | ||
profile = self.hs.get_handlers().profile_handler | ||
content = builder.content | ||
if token_id is not None: | ||
builder.internal_metadata.token_id = token_id | ||
|
||
try: | ||
content["displayname"] = yield profile.get_displayname(target) | ||
content["avatar_url"] = yield profile.get_avatar_url(target) | ||
except Exception as e: | ||
logger.info( | ||
"Failed to get profile information for %r: %s", | ||
target, e | ||
) | ||
if txn_id is not None: | ||
builder.internal_metadata.txn_id = txn_id | ||
|
||
if token_id is not None: | ||
builder.internal_metadata.token_id = token_id | ||
|
||
if txn_id is not None: | ||
builder.internal_metadata.txn_id = txn_id | ||
event, context = yield self._create_new_client_event( | ||
builder=builder, | ||
prev_event_ids=prev_event_ids, | ||
) | ||
|
||
event, context = yield self._create_new_client_event( | ||
builder=builder, | ||
prev_event_ids=prev_event_ids, | ||
) | ||
defer.returnValue((event, context)) | ||
|
||
@defer.inlineCallbacks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,6 +197,51 @@ def _ctx_manager(): | |
defer.returnValue(_ctx_manager()) | ||
|
||
|
||
class Limiter(object): | ||
"""Limits concurrent access to resources based on a key. Useful to ensure | ||
only a few thing happen at a time on a given resource. | ||
|
||
Example: | ||
|
||
with (yield limiter.queue("test_key")): | ||
# do some work. | ||
|
||
""" | ||
def __init__(self, max_count): | ||
""" | ||
Args: | ||
max_count(int): The maximum number of concurrent access | ||
""" | ||
self.max_count = max_count | ||
self.key_to_defer = {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
@defer.inlineCallbacks | ||
def queue(self, key): | ||
entry = self.key_to_defer.setdefault(key, [0, []]) | ||
|
||
if entry[0] >= self.max_count: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
new_defer = defer.Deferred() | ||
entry[1].append(new_defer) | ||
with PreserveLoggingContext(): | ||
yield new_defer | ||
|
||
entry[0] += 1 | ||
|
||
@contextmanager | ||
def _ctx_manager(): | ||
try: | ||
yield | ||
finally: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
entry[0] -= 1 | ||
try: | ||
entry[1].pop(0).callback(None) | ||
except IndexError: | ||
if entry[0] == 0: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
self.key_to_defer.pop(key, None) | ||
|
||
defer.returnValue(_ctx_manager()) | ||
|
||
|
||
class ReadWriteLock(object): | ||
"""A deferred style read write lock. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2016 OpenMarket Ltd | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
from tests import unittest | ||
|
||
from twisted.internet import defer | ||
|
||
from synapse.util.async import Limiter | ||
|
||
|
||
class LimiterTestCase(unittest.TestCase): | ||
|
||
@defer.inlineCallbacks | ||
def test_limiter(self): | ||
limiter = Limiter(3) | ||
|
||
key = object() | ||
|
||
d1 = limiter.queue(key) | ||
cm1 = yield d1 | ||
|
||
d2 = limiter.queue(key) | ||
cm2 = yield d2 | ||
|
||
d3 = limiter.queue(key) | ||
cm3 = yield d3 | ||
|
||
d4 = limiter.queue(key) | ||
self.assertFalse(d4.called) | ||
|
||
d5 = limiter.queue(key) | ||
self.assertFalse(d5.called) | ||
|
||
with cm1: | ||
self.assertFalse(d4.called) | ||
self.assertFalse(d5.called) | ||
|
||
self.assertTrue(d4.called) | ||
self.assertFalse(d5.called) | ||
|
||
with cm3: | ||
self.assertFalse(d5.called) | ||
|
||
self.assertTrue(d5.called) | ||
|
||
with cm2: | ||
pass | ||
|
||
with (yield d4): | ||
pass | ||
|
||
with (yield d5): | ||
pass | ||
|
||
d6 = limiter.queue(key) | ||
with (yield d6): | ||
pass |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment on the choice of 5 here.