Skip to content

synapse_port_db cannt run because of background tasks in sqlite #19298

@AllardKrings

Description

@AllardKrings

Description

I have matrix running in a docker-container on kubernetes with the data-diretory mounted in the container. I am trying to migrate from sqlite3 to postgres. When i run the synapse script inside the container with postgres enabled in the homeserver.yaml i get:

synapse_port_db --curses --sqlite-database /data/homeserver.db --postgres-config /data/homeserver.yaml
Pending background updates exist in the SQLite3 database. Please start Synapse again and wait until every update has finished before running this script.

So i stop the matrix container, look in homeserverdb using sqlite3 commandline utility and i see:

sqlite> SELECT * FROM background_updates;
sliding_sync_joined_rooms_bg_update|{}||0
sqlite>

so i remove the background_update:

sqlite> DELETE FROM background_updates;
sqlite> SELECT * FROM background_updates;
sqlite>

The i restart the matrix container. Running the script again i get the same error. So i stop the container again and look in the homeserver.db. To my surprise the background task

sqlite> SELECT * FROM background_updates;
sliding_sync_joined_rooms_bg_update|{}||0
sqlite>

The “normal” synapse running in the container dooes not use homeserver.db so it must be the script.
How is it possible that the script inserts a background task to prevent itself from running?

And how can I fix this?

Steps to reproduce

I have matrix running in a docker-container on kubernetes with the data-diretory mounted in the container. I am trying to migrate from sqlite3 to postgres. When i run the synapse script inside the container with postgres enabled in the homeserver.yaml i get:

synapse_port_db --curses --sqlite-database /data/homeserver.db --postgres-config /data/homeserver.yaml
Pending background updates exist in the SQLite3 database. Please start Synapse again and wait until every update has finished before running this script.

So i stop the matrix container, look in homeserverdb using sqlite3 commandline utility and i see:

sqlite> SELECT * FROM background_updates;
sliding_sync_joined_rooms_bg_update|{}||0
sqlite>

so i remove the background_update:

sqlite> DELETE FROM background_updates;
sqlite> SELECT * FROM background_updates;
sqlite>

The i restart the matrix container. Running the script again i get the same error. So i stop the container again and look in the homeserver.db. To my surprise the background task

sqlite> SELECT * FROM background_updates;
sliding_sync_joined_rooms_bg_update|{}||0
sqlite>

The “normal” synapse running in the container dooes not use homeserver.db so it must be the script.
How is it possible that the script inserts a background task to prevent itself from running?

And how can I fix this?

Homeserver

homeserver runing on private cluster on kubernetes

Synapse Version

server_version: 1.144.0

Installation Method

Docker (matrixdotorg/synapse)

Database

migrating from sqlite to postgres15

Workers

Single process

Platform

ubuntu 24.4 on raspberry-pi 4 with microk8s 1.32.9

Configuration

No response

Relevant log output

Inside the container: synapse_port_db --curses --sqlite-database /data/homeserver.db --postgres-config /data/homeserver.yaml
Pending background updates exist in the SQLite3 database. Please start Synapse again and wait until every update has finished before running this script.

Normal logs:

kubectl logs matrix-69474c458b-nmrnz -n matrix
Starting synapse with args -m synapse.app.homeserver --config-path /data/homeserver.yaml
This server is configured to use 'matrix.org' as its trusted key server via the
'trusted_key_servers' config option. 'matrix.org' is a good choice for a key
server since it is long-lived, stable and trusted. However, some admins may
wish to use another server for this purpose.

To suppress this warning and continue using 'matrix.org', admins should set
'suppress_key_server_warning' to 'true' in homeserver.yaml.
--------------------------------------------------------------------------------
2025-12-11 08:40:56,490 - synapse.config.logger - 377 - WARNING - main - ***** STARTING SERVER *****
2025-12-11 08:40:56,490 - synapse.config.logger - 378 - WARNING - main - Server /usr/local/lib/python3.13/site-packages/synapse/app/homeserver.py version 1.144.0
2025-12-11 08:40:56,490 - synapse.config.logger - 383 - WARNING - main - Copyright (c) 2023 New Vector, Inc
2025-12-11 08:40:56,490 - synapse.config.logger - 384 - WARNING - main - Licensed under the AGPL 3.0 license. Website: https://github.com/element-hq/synapse
2025-12-11 08:40:56,490 - synapse.config.logger - 387 - INFO - main - Server hostname: matrix-lp.allarddcs.nl
2025-12-11 08:40:56,490 - synapse.config.logger - 388 - INFO - main - Public Base URL: https://matrix-lp.allarddcs.nl/
2025-12-11 08:40:56,490 - synapse.config.logger - 389 - INFO - main - Instance name: master
2025-12-11 08:40:56,491 - synapse.config.logger - 390 - INFO - main - Twisted reactor: EPollReactor
2025-12-11 08:40:56,491 - synapse.app.homeserver - 417 - INFO - main - Setting up server
2025-12-11 08:40:56,491 - synapse.server - 609 - INFO - main - Setting up.
2025-12-11 08:40:56,510 - synapse.storage.databases - 92 - INFO - main - [database config 'master']: Checking database server
2025-12-11 08:40:56,513 - synapse.storage.databases - 95 - INFO - main - [database config 'master']: Preparing for databases ['main', 'state']
2025-12-11 08:40:56,513 - synapse.storage.prepare_database - 132 - INFO - main - ['main', 'state']: Checking existing schema version
2025-12-11 08:40:56,517 - synapse.storage.prepare_database - 136 - INFO - main - ['main', 'state']: Existing schema is 93 (+2 deltas)
2025-12-11 08:40:56,517 - synapse.storage.databases.main - 399 - INFO - main - Checking database for consistency with configuration...
2025-12-11 08:40:56,519 - synapse.storage.prepare_database - 430 - INFO - main - Applying schema deltas for v93
2025-12-11 08:40:56,522 - synapse.storage.prepare_database - 565 - INFO - main - Schema now up to date
2025-12-11 08:40:56,524 - synapse.storage.databases - 110 - INFO - main - [database config 'master']: Starting 'main' database
2025-12-11 08:40:56,579 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for push_rules(id): 1
2025-12-11 08:40:56,580 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for push_rules_enable(id): 1
2025-12-11 08:40:56,593 - synapse.storage.databases.main.event_push_actions - 1238 - INFO - main - Searching for stream ordering 1 month ago
2025-12-11 08:40:56,597 - synapse.storage.databases.main.event_push_actions - 1242 - INFO - main - Found stream ordering 1 month ago: it's 2
2025-12-11 08:40:56,597 - synapse.storage.databases.main.event_push_actions - 1245 - INFO - main - Searching for stream ordering 1 day ago
2025-12-11 08:40:56,600 - synapse.storage.databases.main.event_push_actions - 1249 - INFO - main - Found stream ordering 1 day ago: it's 56
2025-12-11 08:40:56,607 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for access_tokens(id): 16
2025-12-11 08:40:56,609 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for refresh_tokens(id): 1
2025-12-11 08:40:56,613 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for event_reports(id): 1
2025-12-11 08:40:56,614 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for room_reports(id): 1
2025-12-11 08:40:56,615 - synapse.storage.util.id_generators - 91 - INFO - main - Initialising stream generator for user_reports(id): 1
2025-12-11 08:40:56,635 - synapse.storage.databases - 127 - INFO - main - [database config 'master']: Starting 'state' database
2025-12-11 08:40:56,639 - synapse.storage.databases - 143 - INFO - main - [database config 'master']: prepared
2025-12-11 08:40:56,639 - synapse.server - 612 - INFO - main - Finished setting up.
2025-12-11 08:40:56,639 - twisted - 273 - INFO - main - Redirected stdout/stderr to logs
2025-12-11 08:40:56,640 - synapse.app.homeserver - 207 - INFO - main - Running
2025-12-11 08:40:56,650 - synapse.app.homeserver - 36 - INFO - main - Set file limit to: 65536
2025-12-11 08:40:56,691 - synapse.push.pusher - 45 - INFO - call_when_running - email enable notifs: False
2025-12-11 08:40:56,713 - synapse.federation.federation_server - 1449 - INFO - call_when_running - Registering federation query handler for 'profile'
2025-12-11 08:40:56,717 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.device_list_update'
2025-12-11 08:40:56,718 - synapse.util.caches.lrucache - 241 - INFO - call_when_running - Expiring LRU caches after 1800 seconds
2025-12-11 08:40:56,729 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.presence'
2025-12-11 08:40:56,730 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.typing'
2025-12-11 08:40:56,735 - synapse.federation.federation_server - 1449 - INFO - call_when_running - Registering federation query handler for 'directory'
2025-12-11 08:40:56,770 - synapse.handlers.deactivate_account - 281 - INFO - user_parter_loop-0 - Starting user parter
2025-12-11 08:40:56,790 - synapse.push.mailer - 140 - INFO - call_when_running - Created Mailer for app_name Matrix
2025-12-11 08:40:56,791 - synapse.push.mailer - 140 - INFO - call_when_running - Created Mailer for app_name Matrix
2025-12-11 08:40:56,792 - synapse.push.mailer - 140 - INFO - call_when_running - Created Mailer for app_name Matrix
2025-12-11 08:40:56,793 - synapse.push.mailer - 140 - INFO - call_when_running - Created Mailer for app_name Matrix
2025-12-11 08:40:56,793 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.receipt'
2025-12-11 08:40:56,794 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.signing_key_update'
2025-12-11 08:40:56,794 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'org.matrix.signing_key_update'
2025-12-11 08:40:56,796 - synapse.federation.federation_server - 1449 - INFO - call_when_running - Registering federation query handler for 'client_keys'
2025-12-11 08:40:56,798 - synapse.federation.federation_server - 1429 - INFO - call_when_running - Registering federation EDU handler for 'm.direct_to_device'
2025-12-11 08:40:56,819 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.health.HealthResource object at 0x7b6202d69fd0> to path b'/health'
2025-12-11 08:40:56,820 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.ClientRestResource object at 0x7b6202d6a120> to path b'/_matrix/client'
2025-12-11 08:40:56,821 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <twisted.web.resource.Resource object at 0x7b6202decc20> to path b'/.well-known'
2025-12-11 08:40:56,822 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.http.server.JsonResource object at 0x7b6202dd3e00> to path b'/_synapse/admin'
2025-12-11 08:40:56,824 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.synapse.client.pick_idp.PickIdpResource object at 0x7b6202ded010> to path b'/_synapse/client/pick_idp'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <twisted.web.resource.Resource object at 0x7b6202dcdf90> to path b'/_synapse/client/pick_username'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.synapse.client.new_user_consent.NewUserConsentResource object at 0x7b6202ded550> to path b'/_synapse/client/new_user_consent'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.synapse.client.sso_register.SsoRegisterResource object at 0x7b6202ded6a0> to path b'/_synapse/client/sso_register'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.synapse.client.unsubscribe.UnsubscribeResource object at 0x7b6202ded7f0> to path b'/_synapse/client/unsubscribe'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.synapse.client.password_reset.PasswordResetSubmitTokenResource object at 0x7b6202ded940> to path b'/_synapse/client/password_reset/email/submit_token'
2025-12-11 08:40:56,825 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching FilePath('/usr/local/lib/python3.13/site-packages/synapse/static') to path b'/_matrix/static'
2025-12-11 08:40:56,826 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.media.media_repository_resource.MediaRepositoryResource object at 0x7b6202dedd30> to path b'/_matrix/media/r0'
2025-12-11 08:40:56,826 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.media.media_repository_resource.MediaRepositoryResource object at 0x7b6202dedd30> to path b'/_matrix/media/v3'
2025-12-11 08:40:56,826 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.media.media_repository_resource.MediaRepositoryResource object at 0x7b6202dedd30> to path b'/_matrix/media/v1'
2025-12-11 08:40:56,826 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.federation.transport.server.TransportLayerServer object at 0x7b6202dee660> to path b'/_matrix/federation'
2025-12-11 08:40:56,826 - synapse.util.httpresourcetree - 55 - INFO - call_when_running - Attaching <synapse.rest.key.v2.KeyResource object at 0x7b6202c0d2b0> to path b'/_matrix/key'
2025-12-11 08:40:56,830 - twisted - 273 - INFO - call_when_running - SynapseSite starting on 8008
2025-12-11 08:40:56,831 - synapse.app._base - 471 - INFO - call_when_running - Synapse now listening on TCP port 8008
2025-12-11 08:40:56,936 - synapse.storage.background_updates - 416 - INFO - background_updates-0 - Starting background schema updates for database master
2025-12-11 08:40:56,938 - synapse.handlers.deactivate_account - 291 - INFO - user_parter_loop-0 - User parter finished: stopping
2025-12-11 08:40:56,951 - synapse.push.pusherpool - 440 - INFO - start_pushers-0 - Starting pusher @allard:matrix-lp.allarddcs.nl / im.vector.app.ios.prod:fF8gp4btBDZQd9QRcz+OU7zr3n8lVZ/6c6x/S76+2bI=
2025-12-11 08:40:56,953 - synapse.storage.background_updates - 434 - INFO - background_updates-0 - No more background updates to do. Unscheduling background update task.
2025-12-11 08:40:56,984 - synapse.push.pusherpool - 382 - INFO - start_pushers-0 - Started pushers
2025-12-11 08:41:26,607 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-0 - Rotating notifications
2025-12-11 08:41:26,609 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-0 - Rotating notifications up to: 74
2025-12-11 08:41:26,613 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-0 - Rotating notifications, handling 0 rows
2025-12-11 08:41:26,619 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-0 - Rotating notifications, deleted 0 push actions
2025-12-11 08:41:26,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-0 - Dropped 0 items from caches
2025-12-11 08:41:49,554 - synapse.access.http.8008 - 521 - INFO - GET-0 - 127.0.0.1 - 8008 - {None} Processed request: 0.001sec/0.002sec (0.001sec, 0.000sec) (0.000sec/0.000sec/0) 28B 200 "GET /_synapse/admin/v1/server_version HTTP/1.1" "curl/8.14.1" [0 dbevts]
2025-12-11 08:41:56,604 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-1 - Rotating notifications
2025-12-11 08:41:56,605 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-1 - Rotating notifications up to: 74
2025-12-11 08:41:56,608 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-1 - Rotating notifications, handling 0 rows
2025-12-11 08:41:56,611 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-1 - Rotating notifications, deleted 0 push actions
2025-12-11 08:41:56,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-1 - Dropped 0 items from caches
2025-12-11 08:42:26,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-2 - Rotating notifications
2025-12-11 08:42:26,607 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-2 - Rotating notifications up to: 74
2025-12-11 08:42:26,610 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-2 - Rotating notifications, handling 0 rows
2025-12-11 08:42:26,615 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-2 - Rotating notifications, deleted 0 push actions
2025-12-11 08:42:26,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-2 - Dropped 0 items from caches
2025-12-11 08:42:56,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-3 - Rotating notifications
2025-12-11 08:42:56,608 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-3 - Rotating notifications up to: 74
2025-12-11 08:42:56,611 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-3 - Rotating notifications, handling 0 rows
2025-12-11 08:42:56,616 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-3 - Rotating notifications, deleted 0 push actions
2025-12-11 08:42:56,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-3 - Dropped 0 items from caches
2025-12-11 08:43:26,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-4 - Rotating notifications
2025-12-11 08:43:26,607 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-4 - Rotating notifications up to: 74
2025-12-11 08:43:26,610 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-4 - Rotating notifications, handling 0 rows
2025-12-11 08:43:26,615 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-4 - Rotating notifications, deleted 0 push actions
2025-12-11 08:43:26,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-4 - Dropped 0 items from caches
2025-12-11 08:43:56,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-5 - Rotating notifications
2025-12-11 08:43:56,606 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-5 - Rotating notifications up to: 74
2025-12-11 08:43:56,609 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-5 - Rotating notifications, handling 0 rows
2025-12-11 08:43:56,613 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-5 - Rotating notifications, deleted 0 push actions
2025-12-11 08:43:56,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-5 - Dropped 0 items from caches
2025-12-11 08:44:26,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-6 - Rotating notifications
2025-12-11 08:44:26,606 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-6 - Rotating notifications up to: 74
2025-12-11 08:44:26,609 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-6 - Rotating notifications, handling 0 rows
2025-12-11 08:44:26,612 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-6 - Rotating notifications, deleted 0 push actions
2025-12-11 08:44:26,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-6 - Dropped 0 items from caches
2025-12-11 08:44:56,606 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-7 - Rotating notifications
2025-12-11 08:44:56,607 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-7 - Rotating notifications up to: 74
2025-12-11 08:44:56,610 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-7 - Rotating notifications, handling 0 rows
2025-12-11 08:44:56,613 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-7 - Rotating notifications, deleted 0 push actions
2025-12-11 08:44:56,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-7 - Dropped 0 items from caches
2025-12-11 08:45:26,605 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-8 - Rotating notifications
2025-12-11 08:45:26,606 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-8 - Rotating notifications up to: 74
2025-12-11 08:45:26,609 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-8 - Rotating notifications, handling 0 rows
2025-12-11 08:45:26,613 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-8 - Rotating notifications, deleted 0 push actions
2025-12-11 08:45:26,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-8 - Dropped 0 items from caches
2025-12-11 08:45:56,603 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-9 - Rotating notifications
2025-12-11 08:45:56,605 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-9 - Rotating notifications up to: 74
2025-12-11 08:45:56,607 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-9 - Rotating notifications, handling 0 rows
2025-12-11 08:45:56,610 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-9 - Rotating notifications, deleted 0 push actions
2025-12-11 08:45:56,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-9 - Dropped 0 items from caches
2025-12-11 08:45:56,833 - synapse.storage.databases.main.metrics - 404 - INFO - generate_user_daily_visits-0 - Calling _generate_user_daily_visits
2025-12-11 08:46:26,604 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-10 - Rotating notifications
2025-12-11 08:46:26,605 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-10 - Rotating notifications up to: 74
2025-12-11 08:46:26,609 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-10 - Rotating notifications, handling 0 rows
2025-12-11 08:46:26,612 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-10 - Rotating notifications, deleted 0 push actions
2025-12-11 08:46:26,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-10 - Dropped 0 items from caches
2025-12-11 08:46:56,604 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-11 - Rotating notifications
2025-12-11 08:46:56,605 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-11 - Rotating notifications up to: 74
2025-12-11 08:46:56,607 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-11 - Rotating notifications, handling 0 rows
2025-12-11 08:46:56,611 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-11 - Rotating notifications, deleted 0 push actions
2025-12-11 08:46:56,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-11 - Dropped 0 items from caches
2025-12-11 08:47:26,606 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-12 - Rotating notifications
2025-12-11 08:47:26,607 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-12 - Rotating notifications up to: 74
2025-12-11 08:47:26,609 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-12 - Rotating notifications, handling 0 rows
2025-12-11 08:47:26,613 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-12 - Rotating notifications, deleted 0 push actions
2025-12-11 08:47:26,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-12 - Dropped 0 items from caches
2025-12-11 08:47:56,603 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-13 - Rotating notifications
2025-12-11 08:47:56,605 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-13 - Rotating notifications up to: 74
2025-12-11 08:47:56,607 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-13 - Rotating notifications, handling 0 rows
2025-12-11 08:47:56,611 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-13 - Rotating notifications, deleted 0 push actions
2025-12-11 08:47:56,719 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-13 - Dropped 0 items from caches
2025-12-11 08:48:26,603 - synapse.storage.databases.main.event_push_actions - 1392 - INFO - rotate_notifs-14 - Rotating notifications
2025-12-11 08:48:26,604 - synapse.storage.databases.main.event_push_actions - 1595 - INFO - rotate_notifs-14 - Rotating notifications up to: 74
2025-12-11 08:48:26,606 - synapse.storage.databases.main.event_push_actions - 1681 - INFO - rotate_notifs-14 - Rotating notifications, handling 0 rows
2025-12-11 08:48:26,611 - synapse.storage.databases.main.event_push_actions - 1766 - INFO - rotate_notifs-14 - Rotating notifications, deleted 0 push actions
2025-12-11 08:48:26,720 - synapse.util.caches.lrucache - 220 - INFO - LruCache._expire_old_entries-14 - Dropped 0 items from caches

Anything else that would be useful to know?

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions