2016-04-06 09:12:51 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2020-05-01 10:21:35 -04:00
|
|
|
from typing import Optional
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
from synapse.storage.database import DatabasePool
|
|
|
|
from synapse.storage.databases.main.cache import CacheInvalidationWorkerStore
|
2016-08-15 06:16:45 -04:00
|
|
|
from synapse.storage.engines import PostgresEngine
|
2020-05-07 08:51:08 -04:00
|
|
|
from synapse.storage.util.id_generators import MultiWriterIdGenerator
|
2016-08-15 06:16:45 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2016-04-06 09:12:51 -04:00
|
|
|
|
2020-03-25 10:54:01 -04:00
|
|
|
class BaseSlavedStore(CacheInvalidationWorkerStore):
|
2020-08-05 16:38:57 -04:00
|
|
|
def __init__(self, database: DatabasePool, db_conn, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2016-08-15 06:16:45 -04:00
|
|
|
if isinstance(self.database_engine, PostgresEngine):
|
2020-05-07 08:51:08 -04:00
|
|
|
self._cache_id_gen = MultiWriterIdGenerator(
|
|
|
|
db_conn,
|
|
|
|
database,
|
2020-09-24 11:53:51 -04:00
|
|
|
stream_name="caches",
|
2020-05-07 08:51:08 -04:00
|
|
|
instance_name=hs.get_instance_name(),
|
|
|
|
table="cache_invalidation_stream_by_instance",
|
|
|
|
instance_column="instance_name",
|
|
|
|
id_column="stream_id",
|
|
|
|
sequence_name="cache_invalidation_stream_seq",
|
2020-09-24 11:53:51 -04:00
|
|
|
writers=[],
|
2020-05-07 08:51:08 -04:00
|
|
|
) # type: Optional[MultiWriterIdGenerator]
|
2016-08-15 06:16:45 -04:00
|
|
|
else:
|
|
|
|
self._cache_id_gen = None
|
2016-04-06 09:12:51 -04:00
|
|
|
|
2017-03-27 11:32:07 -04:00
|
|
|
self.hs = hs
|