Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Avoid table-scanning users at startup (#8271)
Browse files Browse the repository at this point in the history
This takes about 10 seconds in the best case; often more.
  • Loading branch information
richvdh committed Sep 7, 2020
1 parent a55e270 commit ef2804d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
1 change: 1 addition & 0 deletions changelog.d/8271.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix slow start times for large servers by removing a table scan of the `users` table from startup code.
25 changes: 14 additions & 11 deletions synapse/storage/databases/main/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
MultiWriterIdGenerator,
StreamIdGenerator,
)
from synapse.types import get_domain_from_id
from synapse.util.caches.stream_change_cache import StreamChangeCache

from .account_data import AccountDataStore
Expand Down Expand Up @@ -591,22 +592,24 @@ def check_database_before_upgrade(cur, database_engine, config: HomeServerConfig
"""Called before upgrading an existing database to check that it is broadly sane
compared with the configuration.
"""
logger.info("Running sanity-checks on database...")
domain = config.server_name
logger.info("Checking database for consistency with configuration...")

sql = database_engine.convert_param_style(
"SELECT COUNT(*) FROM users WHERE name NOT LIKE ?"
)
pat = "%:" + domain
cur.execute(sql, (pat,))
num_not_matching = cur.fetchall()[0][0]
if num_not_matching == 0:
# if there are any users in the database, check that the username matches our
# configured server name.

cur.execute("SELECT name FROM users LIMIT 1")
rows = cur.fetchall()
if not rows:
return

user_domain = get_domain_from_id(rows[0][0])
if user_domain == config.server_name:
return

raise Exception(
"Found users in database not native to %s!\n"
"You cannot changed a synapse server_name after it's been configured"
% (domain,)
"You cannot change a synapse server_name after it's been configured"
% (config.server_name,)
)


Expand Down

0 comments on commit ef2804d

Please sign in to comment.