diff options
author | Erik Johnston <erikj@element.io> | 2024-04-04 11:05:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 11:05:40 +0100 |
commit | 31122b71bcf29b4a034be4fc14770f4b8a45b2c5 (patch) | |
tree | da60a43fc6057827f6b8fff71eaa69622f4fb108 /synapse | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-31122b71bcf29b4a034be4fc14770f4b8a45b2c5.tar.xz |
Add missing index to `access_tokens` table (#17045)
This was causing sequential scans when using refresh tokens.
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/registration.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/storage/databases/main/registration.py b/synapse/storage/databases/main/registration.py index d939ade427..30a3ae3055 100644 --- a/synapse/storage/databases/main/registration.py +++ b/synapse/storage/databases/main/registration.py @@ -2266,6 +2266,13 @@ class RegistrationStore(StatsStore, RegistrationBackgroundUpdateStore): ): super().__init__(database, db_conn, hs) + self.db_pool.updates.register_background_index_update( + update_name="access_tokens_refresh_token_id_idx", + index_name="access_tokens_refresh_token_id_idx", + table="access_tokens", + columns=("refresh_token_id",), + ) + self._ignore_unknown_session_error = ( hs.config.server.request_token_inhibit_3pid_errors ) |