diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-11-16 17:44:52 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-11-16 17:52:23 +0000 |
commit | 06e5bcfc83c6853a9c9c7bf0aadd0226051d365e (patch) | |
tree | 5c9d824f92d966ad826188c19443a5816cbb7956 /synapse/storage/pusher.py | |
parent | Merge pull request #2684 from matrix-org/rav/unlock_upsert (diff) | |
download | synapse-06e5bcfc83c6853a9c9c7bf0aadd0226051d365e.tar.xz |
Avoid locking for upsert on pushers tables
* replace the upsert into deleted_pushers with an insert * no need to lock for upsert on pusher_throttle
Diffstat (limited to 'synapse/storage/pusher.py')
-rw-r--r-- | synapse/storage/pusher.py | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/synapse/storage/pusher.py b/synapse/storage/pusher.py index 19ce41fde9..3d8b4d5d5b 100644 --- a/synapse/storage/pusher.py +++ b/synapse/storage/pusher.py @@ -244,11 +244,19 @@ class PusherStore(SQLBaseStore): "pushers", {"app_id": app_id, "pushkey": pushkey, "user_name": user_id} ) - self._simple_upsert_txn( + + # it's possible for us to end up with duplicate rows for + # (app_id, pushkey, user_id) at different stream_ids, but that + # doesn't really matter. + self._simple_insert_txn( txn, - "deleted_pushers", - {"app_id": app_id, "pushkey": pushkey, "user_id": user_id}, - {"stream_id": stream_id}, + table="deleted_pushers", + values={ + "stream_id": stream_id, + "app_id": app_id, + "pushkey": pushkey, + "user_id": user_id, + }, ) with self._pushers_id_gen.get_next() as stream_id: @@ -311,9 +319,12 @@ class PusherStore(SQLBaseStore): @defer.inlineCallbacks def set_throttle_params(self, pusher_id, room_id, params): + # no need to lock because `pusher_throttle` has a primary key on + # (pusher, room_id) so _simple_upsert will retry yield self._simple_upsert( "pusher_throttle", {"pusher": pusher_id, "room_id": room_id}, params, - desc="set_throttle_params" + desc="set_throttle_params", + lock=False, ) |