2016-06-29 06:41:20 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2016-06-29 06:41:20 -04:00
|
|
|
#
|
|
|
|
#
|
2019-10-23 11:14:16 -04:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
import logging
|
2021-10-22 13:15:41 -04:00
|
|
|
from typing import TYPE_CHECKING, Generic, List, Optional, Type, TypeVar
|
2019-12-18 05:45:12 -05:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
from synapse.storage._base import SQLBaseStore
|
2020-08-05 16:38:57 -04:00
|
|
|
from synapse.storage.database import DatabasePool, make_conn
|
|
|
|
from synapse.storage.databases.main.events import PersistEventsStore
|
|
|
|
from synapse.storage.databases.state import StateGroupDataStore
|
2019-12-18 05:45:12 -05:00
|
|
|
from synapse.storage.engines import create_engine
|
2019-12-06 08:09:40 -05:00
|
|
|
from synapse.storage.prepare_database import prepare_database
|
2019-12-06 08:40:02 -05:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2022-02-25 05:20:40 -05:00
|
|
|
from synapse.storage.databases.main import DataStore
|
2021-10-22 13:15:41 -04:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2019-10-23 11:14:16 -04:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
DataStoreT = TypeVar("DataStoreT", bound=SQLBaseStore, covariant=True)
|
|
|
|
|
|
|
|
|
|
|
|
class Databases(Generic[DataStoreT]):
|
2020-08-05 16:38:57 -04:00
|
|
|
"""The various databases.
|
2019-10-23 11:14:16 -04:00
|
|
|
|
|
|
|
These are low level interfaces to physical databases.
|
2019-12-18 05:45:12 -05:00
|
|
|
|
|
|
|
Attributes:
|
2021-10-22 13:15:41 -04:00
|
|
|
databases
|
|
|
|
main
|
|
|
|
state
|
|
|
|
persist_events
|
2019-10-23 11:14:16 -04:00
|
|
|
"""
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
databases: List[DatabasePool]
|
2023-11-15 08:02:11 -05:00
|
|
|
main: "DataStore" # FIXME: https://github.com/matrix-org/synapse/issues/11165: actually an instance of `main_store_class`
|
2021-10-22 13:15:41 -04:00
|
|
|
state: StateGroupDataStore
|
|
|
|
persist_events: Optional[PersistEventsStore]
|
|
|
|
|
|
|
|
def __init__(self, main_store_class: Type[DataStoreT], hs: "HomeServer"):
|
2019-12-09 06:47:55 -05:00
|
|
|
# Note we pass in the main store class here as workers use a different main
|
2019-10-23 11:14:16 -04:00
|
|
|
# store.
|
2019-12-06 08:09:40 -05:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
self.databases = []
|
2021-10-22 13:15:41 -04:00
|
|
|
main: Optional[DataStoreT] = None
|
|
|
|
state: Optional[StateGroupDataStore] = None
|
|
|
|
persist_events: Optional[PersistEventsStore] = None
|
2019-12-18 05:45:12 -05:00
|
|
|
|
|
|
|
for database_config in hs.config.database.databases:
|
|
|
|
db_name = database_config.name
|
|
|
|
engine = create_engine(database_config.config)
|
|
|
|
|
2020-10-02 10:20:45 -04:00
|
|
|
with make_conn(database_config, engine, "startup") as db_conn:
|
2020-09-07 08:36:02 -04:00
|
|
|
logger.info("[database config %r]: Checking database server", db_name)
|
2020-01-09 12:21:30 -05:00
|
|
|
engine.check_database(db_conn)
|
2020-09-07 08:36:02 -04:00
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"[database config %r]: Preparing for databases %r",
|
|
|
|
db_name,
|
|
|
|
database_config.databases,
|
|
|
|
)
|
2019-12-18 05:45:12 -05:00
|
|
|
prepare_database(
|
2020-08-05 16:38:57 -04:00
|
|
|
db_conn,
|
|
|
|
engine,
|
|
|
|
hs.config,
|
|
|
|
databases=database_config.databases,
|
2019-12-18 05:45:12 -05:00
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
database = DatabasePool(hs, database_config, engine)
|
2019-12-18 05:45:12 -05:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
if "main" in database_config.databases:
|
2020-09-07 08:36:02 -04:00
|
|
|
logger.info(
|
|
|
|
"[database config %r]: Starting 'main' database", db_name
|
|
|
|
)
|
2020-01-06 09:44:01 -05:00
|
|
|
|
|
|
|
# Sanity check we don't try and configure the main store on
|
|
|
|
# multiple databases.
|
2020-08-11 13:00:17 -04:00
|
|
|
if main:
|
2020-01-06 09:44:01 -05:00
|
|
|
raise Exception("'main' data store already configured")
|
|
|
|
|
2020-08-11 13:00:17 -04:00
|
|
|
main = main_store_class(database, db_conn, hs)
|
2019-12-18 05:45:12 -05:00
|
|
|
|
2020-05-22 11:11:35 -04:00
|
|
|
# If we're on a process that can persist events also
|
|
|
|
# instantiate a `PersistEventsStore`
|
2020-09-14 05:16:41 -04:00
|
|
|
if hs.get_instance_name() in hs.config.worker.writers.events:
|
2023-04-27 07:59:14 -04:00
|
|
|
persist_events = PersistEventsStore(hs, database, main, db_conn) # type: ignore[arg-type]
|
2020-05-13 08:38:22 -04:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
if "state" in database_config.databases:
|
2020-09-07 08:36:02 -04:00
|
|
|
logger.info(
|
|
|
|
"[database config %r]: Starting 'state' database", db_name
|
|
|
|
)
|
2020-01-06 09:44:01 -05:00
|
|
|
|
|
|
|
# Sanity check we don't try and configure the state store on
|
|
|
|
# multiple databases.
|
2020-08-11 13:00:17 -04:00
|
|
|
if state:
|
2020-01-06 09:44:01 -05:00
|
|
|
raise Exception("'state' data store already configured")
|
|
|
|
|
2020-08-11 13:00:17 -04:00
|
|
|
state = StateGroupDataStore(database, db_conn, hs)
|
2019-12-20 05:48:24 -05:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
db_conn.commit()
|
2019-12-06 08:09:40 -05:00
|
|
|
|
2019-12-18 05:45:12 -05:00
|
|
|
self.databases.append(database)
|
2019-12-06 08:09:40 -05:00
|
|
|
|
2020-09-07 08:36:02 -04:00
|
|
|
logger.info("[database config %r]: prepared", db_name)
|
2020-01-06 09:44:01 -05:00
|
|
|
|
2020-08-19 15:41:53 -04:00
|
|
|
# Closing the context manager doesn't close the connection.
|
|
|
|
# psycopg will close the connection when the object gets GCed, but *only*
|
|
|
|
# if the PID is the same as when the connection was opened [1], and
|
|
|
|
# it may not be if we fork in the meantime.
|
|
|
|
#
|
|
|
|
# [1]: https://github.com/psycopg/psycopg2/blob/2_8_5/psycopg/connection_type.c#L1378
|
|
|
|
|
|
|
|
db_conn.close()
|
|
|
|
|
2020-01-06 09:44:01 -05:00
|
|
|
# Sanity check that we have actually configured all the required stores.
|
2020-08-11 13:00:17 -04:00
|
|
|
if not main:
|
2020-09-07 08:36:02 -04:00
|
|
|
raise Exception("No 'main' database configured")
|
2020-01-06 09:44:01 -05:00
|
|
|
|
2020-08-11 13:00:17 -04:00
|
|
|
if not state:
|
2020-09-07 08:36:02 -04:00
|
|
|
raise Exception("No 'state' database configured")
|
2020-08-11 13:00:17 -04:00
|
|
|
|
|
|
|
# We use local variables here to ensure that the databases do not have
|
|
|
|
# optional types.
|
2023-04-27 07:59:14 -04:00
|
|
|
self.main = main # type: ignore[assignment]
|
2020-08-11 13:00:17 -04:00
|
|
|
self.state = state
|
|
|
|
self.persist_events = persist_events
|