0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2025-03-05 17:01:00 +01:00
synapse/tests
Erik Johnston b1433bf231
Don't table scan events on worker startup (#8419)
* Fix table scan of events on worker startup.

This happened because we assumed "new" writers had an initial stream
position of 0, so the replication code tried to fetch all events written
by the instance between 0 and the current position.

Instead, set the initial position of new writers to the current
persisted up to position, on the assumption that new writers won't have
written anything before that point.

* Consider old writers coming back as "new".

Otherwise we'd try and fetch entries between the old stale token and the
current position, even though it won't have written any rows.

Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>

Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
2020-09-29 16:42:19 +01:00
..
api
app
appservice
config
crypto Create a mechanism for marking tests "logcontext clean" (#8399) 2020-09-28 17:58:33 +01:00
events
federation Catch-up after Federation Outage (bonus): Catch-up on Synapse Startup (#8322) 2020-09-18 14:59:13 +01:00
handlers Allow existing users to login via OpenID Connect. (#8345) 2020-09-25 07:01:45 -04:00
http Fix handling of connection timeouts in outgoing http requests (#8400) 2020-09-29 10:29:21 +01:00
logging
module_api
push
replication Add EventStreamPosition type (#8388) 2020-09-24 13:24:17 +01:00
rest Only assert valid next_link params when provided (#8417) 2020-09-29 12:36:44 +01:00
scripts
server_notices
state
storage Don't table scan events on worker startup (#8419) 2020-09-29 16:42:19 +01:00
test_utils
util
__init__.py
server.py Simplify super() calls to Python 3 syntax. (#8344) 2020-09-18 09:56:44 -04:00
test_distributor.py
test_event_auth.py
test_federation.py
test_mau.py
test_metrics.py
test_phone_home.py
test_preview.py
test_server.py
test_state.py Simplify super() calls to Python 3 syntax. (#8344) 2020-09-18 09:56:44 -04:00
test_terms_auth.py
test_test_utils.py
test_types.py
test_visibility.py
unittest.py Add checks for postgres sequence consistency (#8402) 2020-09-28 18:00:30 +01:00
utils.py