2015-04-09 06:41:36 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2015-04-09 06:41:36 -04:00
|
|
|
#
|
|
|
|
#
|
2021-11-11 08:47:31 -05:00
|
|
|
import abc
|
2020-08-25 12:32:30 -04:00
|
|
|
import heapq
|
2020-09-07 08:36:02 -04:00
|
|
|
import logging
|
2015-04-09 06:41:36 -04:00
|
|
|
import threading
|
2021-10-08 10:25:16 -04:00
|
|
|
from types import TracebackType
|
|
|
|
from typing import (
|
2023-01-20 13:02:18 -05:00
|
|
|
TYPE_CHECKING,
|
2021-10-08 10:25:16 -04:00
|
|
|
AsyncContextManager,
|
|
|
|
ContextManager,
|
|
|
|
Dict,
|
|
|
|
Generic,
|
|
|
|
Iterable,
|
|
|
|
List,
|
|
|
|
Optional,
|
|
|
|
Sequence,
|
|
|
|
Set,
|
|
|
|
Tuple,
|
|
|
|
Type,
|
|
|
|
TypeVar,
|
|
|
|
Union,
|
|
|
|
cast,
|
|
|
|
)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-23 11:11:18 -04:00
|
|
|
import attr
|
2021-10-12 09:27:09 -04:00
|
|
|
from sortedcontainers import SortedList, SortedSet
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2021-10-08 10:25:16 -04:00
|
|
|
from synapse.storage.database import (
|
|
|
|
DatabasePool,
|
|
|
|
LoggingDatabaseConnection,
|
|
|
|
LoggingTransaction,
|
2024-05-29 08:19:10 -04:00
|
|
|
make_in_list_sql_clause,
|
2021-10-08 10:25:16 -04:00
|
|
|
)
|
2024-05-29 08:19:10 -04:00
|
|
|
from synapse.storage.engines import PostgresEngine
|
2020-10-07 10:15:57 -04:00
|
|
|
from synapse.storage.types import Cursor
|
2024-05-29 08:19:10 -04:00
|
|
|
from synapse.storage.util.sequence import build_sequence_generator
|
2015-04-09 06:41:36 -04:00
|
|
|
|
2023-01-20 13:02:18 -05:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.notifier import ReplicationNotifier
|
|
|
|
|
2020-09-07 08:36:02 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2015-04-09 06:41:36 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
T = TypeVar("T")
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class IdGenerator:
|
2021-10-08 10:25:16 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
table: str,
|
|
|
|
column: str,
|
|
|
|
):
|
2015-04-09 06:41:36 -04:00
|
|
|
self._lock = threading.Lock()
|
2016-04-01 08:29:05 -04:00
|
|
|
self._next_id = _load_current_id(db_conn, table, column)
|
2015-04-09 06:41:36 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def get_next(self) -> int:
|
2015-04-29 14:17:00 -04:00
|
|
|
with self._lock:
|
2015-04-09 06:41:36 -04:00
|
|
|
self._next_id += 1
|
2016-03-01 08:35:37 -05:00
|
|
|
return self._next_id
|
|
|
|
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def _load_current_id(
|
|
|
|
db_conn: LoggingDatabaseConnection, table: str, column: str, step: int = 1
|
|
|
|
) -> int:
|
2020-10-02 10:20:45 -04:00
|
|
|
cur = db_conn.cursor(txn_name="_load_current_id")
|
2016-04-01 08:50:54 -04:00
|
|
|
if step == 1:
|
2019-04-03 05:07:29 -04:00
|
|
|
cur.execute("SELECT MAX(%s) FROM %s" % (column, table))
|
2016-04-01 08:29:05 -04:00
|
|
|
else:
|
2019-04-03 05:07:29 -04:00
|
|
|
cur.execute("SELECT MIN(%s) FROM %s" % (column, table))
|
2021-10-08 10:25:16 -04:00
|
|
|
result = cur.fetchone()
|
|
|
|
assert result is not None
|
|
|
|
(val,) = result
|
2016-03-01 08:35:37 -05:00
|
|
|
cur.close()
|
2016-04-01 08:50:54 -04:00
|
|
|
current_id = int(val) if val else step
|
2021-12-08 09:15:14 -05:00
|
|
|
res = (max if step > 0 else min)(current_id, step)
|
|
|
|
logger.info("Initialising stream generator for %s(%s): %i", table, column, res)
|
|
|
|
return res
|
2015-04-09 06:41:36 -04:00
|
|
|
|
|
|
|
|
2023-03-03 08:13:37 -05:00
|
|
|
class AbstractStreamIdGenerator(metaclass=abc.ABCMeta):
|
|
|
|
"""Generates or tracks stream IDs for a stream that may have multiple writers.
|
|
|
|
|
|
|
|
Each stream ID represents a write transaction, whose completion is tracked
|
|
|
|
so that the "current" stream ID of the stream can be determined.
|
2021-11-26 13:41:31 -05:00
|
|
|
|
|
|
|
Stream IDs are monotonically increasing or decreasing integers representing write
|
|
|
|
transactions. The "current" stream ID is the stream ID such that all transactions
|
|
|
|
with equal or smaller stream IDs have completed. Since transactions may complete out
|
|
|
|
of order, this is not the same as the stream ID of the last completed transaction.
|
|
|
|
|
|
|
|
Completed transactions include both committed transactions and transactions that
|
|
|
|
have been rolled back.
|
|
|
|
"""
|
2021-11-11 08:47:31 -05:00
|
|
|
|
|
|
|
@abc.abstractmethod
|
2021-11-26 13:41:31 -05:00
|
|
|
def advance(self, instance_name: str, new_id: int) -> None:
|
|
|
|
"""Advance the position of the named writer to the given ID, if greater
|
|
|
|
than existing entry.
|
|
|
|
"""
|
2021-11-11 08:47:31 -05:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def get_current_token(self) -> int:
|
2021-11-26 13:41:31 -05:00
|
|
|
"""Returns the maximum stream id such that all stream ids less than or
|
|
|
|
equal to it have been successfully persisted.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The maximum stream id.
|
|
|
|
"""
|
2021-11-11 08:47:31 -05:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def get_current_token_for_writer(self, instance_name: str) -> int:
|
2021-11-26 13:41:31 -05:00
|
|
|
"""Returns the position of the given writer.
|
|
|
|
|
|
|
|
For streams with single writers this is equivalent to `get_current_token`.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
@abc.abstractmethod
|
|
|
|
def get_minimal_local_current_token(self) -> int:
|
|
|
|
"""Tries to return a minimal current token for the local instance,
|
|
|
|
i.e. for writers this would be the last successful write.
|
|
|
|
|
|
|
|
If local instance is not a writer (or has written yet) then falls back
|
|
|
|
to returning the normal "current token".
|
|
|
|
"""
|
|
|
|
|
2021-11-26 13:41:31 -05:00
|
|
|
@abc.abstractmethod
|
|
|
|
def get_next(self) -> AsyncContextManager[int]:
|
|
|
|
"""
|
|
|
|
Usage:
|
|
|
|
async with stream_id_gen.get_next() as stream_id:
|
|
|
|
# ... persist event ...
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def get_next_mult(self, n: int) -> AsyncContextManager[Sequence[int]]:
|
|
|
|
"""
|
|
|
|
Usage:
|
|
|
|
async with stream_id_gen.get_next(n) as stream_ids:
|
|
|
|
# ... persist events ...
|
|
|
|
"""
|
2021-11-11 08:47:31 -05:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2023-03-02 13:27:00 -05:00
|
|
|
@abc.abstractmethod
|
|
|
|
def get_next_txn(self, txn: LoggingTransaction) -> int:
|
|
|
|
"""
|
|
|
|
Usage:
|
|
|
|
stream_id_gen.get_next_txn(txn)
|
|
|
|
# ... persist events ...
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2021-11-11 08:47:31 -05:00
|
|
|
|
|
|
|
class MultiWriterIdGenerator(AbstractStreamIdGenerator):
|
2021-11-26 13:41:31 -05:00
|
|
|
"""Generates and tracks stream IDs for a stream with multiple writers.
|
2020-05-04 12:17:45 -04:00
|
|
|
|
|
|
|
Uses a Postgres sequence to coordinate ID assignment, but positions of other
|
|
|
|
writers will only get updated when `advance` is called (by replication).
|
|
|
|
|
|
|
|
Note: Only works with Postgres.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
db_conn
|
|
|
|
db
|
2021-01-18 10:47:59 -05:00
|
|
|
stream_name: A name for the stream, for use in the `stream_positions`
|
|
|
|
table. (Does not need to be the same as the replication stream name)
|
2020-05-04 12:17:45 -04:00
|
|
|
instance_name: The name of this instance.
|
2021-01-18 10:47:59 -05:00
|
|
|
tables: List of tables associated with the stream. Tuple of table
|
|
|
|
name, column name that stores the writer's instance name, and
|
|
|
|
column name that stores the stream ID.
|
2020-05-04 12:17:45 -04:00
|
|
|
sequence_name: The name of the postgres sequence used to generate new
|
|
|
|
IDs.
|
2020-09-24 11:53:51 -04:00
|
|
|
writers: A list of known writers to use to populate current positions
|
|
|
|
on startup. Can be empty if nothing uses `get_current_token` or
|
|
|
|
`get_positions` (e.g. caches stream).
|
2020-09-01 08:36:25 -04:00
|
|
|
positive: Whether the IDs are positive (true) or negative (false).
|
|
|
|
When using negative IDs we go backwards from -1 to -2, -3, etc.
|
2020-05-04 12:17:45 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
2021-10-08 10:25:16 -04:00
|
|
|
db_conn: LoggingDatabaseConnection,
|
2020-08-05 16:38:57 -04:00
|
|
|
db: DatabasePool,
|
2023-01-20 13:02:18 -05:00
|
|
|
notifier: "ReplicationNotifier",
|
2020-09-24 11:53:51 -04:00
|
|
|
stream_name: str,
|
2020-05-04 12:17:45 -04:00
|
|
|
instance_name: str,
|
2021-01-18 10:47:59 -05:00
|
|
|
tables: List[Tuple[str, str, str]],
|
2020-05-04 12:17:45 -04:00
|
|
|
sequence_name: str,
|
2020-09-24 11:53:51 -04:00
|
|
|
writers: List[str],
|
2020-09-01 08:36:25 -04:00
|
|
|
positive: bool = True,
|
2021-10-08 10:25:16 -04:00
|
|
|
) -> None:
|
2020-05-04 12:17:45 -04:00
|
|
|
self._db = db
|
2023-01-20 13:02:18 -05:00
|
|
|
self._notifier = notifier
|
2020-09-24 11:53:51 -04:00
|
|
|
self._stream_name = stream_name
|
2020-05-04 12:17:45 -04:00
|
|
|
self._instance_name = instance_name
|
2020-09-01 08:36:25 -04:00
|
|
|
self._positive = positive
|
2020-09-24 11:53:51 -04:00
|
|
|
self._writers = writers
|
2020-09-01 08:36:25 -04:00
|
|
|
self._return_factor = 1 if positive else -1
|
2020-05-04 12:17:45 -04:00
|
|
|
|
|
|
|
# We lock as some functions may be called from DB threads.
|
|
|
|
self._lock = threading.Lock()
|
|
|
|
|
2020-09-01 08:36:25 -04:00
|
|
|
# Note: If we are a negative stream then we still store all the IDs as
|
|
|
|
# positive to make life easier for us, and simply negate the IDs when we
|
|
|
|
# return them.
|
2021-07-15 12:46:54 -04:00
|
|
|
self._current_positions: Dict[str, int] = {}
|
2020-05-04 12:17:45 -04:00
|
|
|
|
|
|
|
# Set of local IDs that we're still processing. The current position
|
|
|
|
# should be less than the minimum of this set (if not empty).
|
2021-09-03 13:23:46 -04:00
|
|
|
self._unfinished_ids: SortedSet[int] = SortedSet()
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2021-10-12 09:27:09 -04:00
|
|
|
# We also need to track when we've requested some new stream IDs but
|
|
|
|
# they haven't yet been added to the `_unfinished_ids` set. Every time
|
|
|
|
# we request a new stream ID we add the current max stream ID to the
|
|
|
|
# list, and remove it once we've added the newly allocated IDs to the
|
|
|
|
# `_unfinished_ids` set. This means that we *may* be allocated stream
|
|
|
|
# IDs above those in the list, and so we can't advance the local current
|
|
|
|
# position beyond the minimum stream ID in this list.
|
|
|
|
self._in_flight_fetches: SortedList[int] = SortedList()
|
|
|
|
|
2020-09-08 09:26:54 -04:00
|
|
|
# Set of local IDs that we've processed that are larger than the current
|
|
|
|
# position, due to there being smaller unpersisted IDs.
|
2021-07-15 12:46:54 -04:00
|
|
|
self._finished_ids: Set[int] = set()
|
2020-09-08 09:26:54 -04:00
|
|
|
|
2020-08-25 12:32:30 -04:00
|
|
|
# We track the max position where we know everything before has been
|
|
|
|
# persisted. This is done by a) looking at the min across all instances
|
|
|
|
# and b) noting that if we have seen a run of persisted positions
|
|
|
|
# without gaps (e.g. 5, 6, 7) then we can skip forward (e.g. to 7).
|
|
|
|
#
|
2021-02-12 11:01:48 -05:00
|
|
|
# Note: There is no guarantee that the IDs generated by the sequence
|
2020-08-25 12:32:30 -04:00
|
|
|
# will be gapless; gaps can form when e.g. a transaction was rolled
|
|
|
|
# back. This means that sometimes we won't be able to skip forward the
|
|
|
|
# position even though everything has been persisted. However, since
|
|
|
|
# gaps should be relatively rare it's still worth doing the book keeping
|
|
|
|
# that allows us to skip forwards when there are gapless runs of
|
|
|
|
# positions.
|
2020-09-14 05:16:41 -04:00
|
|
|
#
|
|
|
|
# We start at 1 here as a) the first generated stream ID will be 2, and
|
|
|
|
# b) other parts of the code assume that stream IDs are strictly greater
|
|
|
|
# than 0.
|
2020-08-25 12:32:30 -04:00
|
|
|
self._persisted_upto_position = (
|
2020-09-14 05:16:41 -04:00
|
|
|
min(self._current_positions.values()) if self._current_positions else 1
|
2020-08-25 12:32:30 -04:00
|
|
|
)
|
2021-07-15 12:46:54 -04:00
|
|
|
self._known_persisted_positions: List[int] = []
|
2020-08-25 12:32:30 -04:00
|
|
|
|
2021-10-12 09:27:09 -04:00
|
|
|
# The maximum stream ID that we have seen been allocated across any writer.
|
|
|
|
self._max_seen_allocated_stream_id = 1
|
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
# The maximum position of the local instance. This can be higher than
|
|
|
|
# the corresponding position in `current_positions` table when there are
|
|
|
|
# no active writes in progress.
|
|
|
|
self._max_position_of_local_instance = self._max_seen_allocated_stream_id
|
|
|
|
|
2024-05-29 08:19:10 -04:00
|
|
|
self._sequence_gen = build_sequence_generator(
|
|
|
|
db_conn=db_conn,
|
|
|
|
database_engine=db.engine,
|
|
|
|
get_first_callback=lambda _: self._persisted_upto_position,
|
|
|
|
sequence_name=sequence_name,
|
|
|
|
# We only need to set the below if we want it to call
|
|
|
|
# `check_consistency`, but we do that ourselves below so we can
|
|
|
|
# leave them blank.
|
|
|
|
table=None,
|
|
|
|
id_column=None,
|
|
|
|
stream_name=None,
|
|
|
|
positive=positive,
|
|
|
|
)
|
2020-07-16 05:56:49 -04:00
|
|
|
|
2020-09-28 13:00:30 -04:00
|
|
|
# We check that the table and sequence haven't diverged.
|
2021-01-18 10:47:59 -05:00
|
|
|
for table, _, id_column in tables:
|
|
|
|
self._sequence_gen.check_consistency(
|
2021-01-21 10:09:09 -05:00
|
|
|
db_conn,
|
|
|
|
table=table,
|
|
|
|
id_column=id_column,
|
|
|
|
stream_name=stream_name,
|
|
|
|
positive=positive,
|
2021-01-18 10:47:59 -05:00
|
|
|
)
|
2020-09-28 13:00:30 -04:00
|
|
|
|
2024-06-17 07:50:00 -04:00
|
|
|
# This goes and fills out the above state from the database.
|
|
|
|
# This may read on the PostgreSQL sequence, and
|
|
|
|
# SequenceGenerator.check_consistency might have fixed up the sequence, which
|
|
|
|
# means the SequenceGenerator needs to be setup before we read the value from
|
|
|
|
# the sequence.
|
|
|
|
self._load_current_ids(db_conn, tables, sequence_name)
|
|
|
|
|
2021-10-12 09:27:09 -04:00
|
|
|
self._max_seen_allocated_stream_id = max(
|
|
|
|
self._current_positions.values(), default=1
|
|
|
|
)
|
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
# For the case where `stream_positions` is not up to date,
|
|
|
|
# `_persisted_upto_position` may be higher.
|
|
|
|
self._max_seen_allocated_stream_id = max(
|
|
|
|
self._max_seen_allocated_stream_id, self._persisted_upto_position
|
|
|
|
)
|
|
|
|
|
|
|
|
# Bump our local maximum position now that we've loaded things from the
|
|
|
|
# DB.
|
|
|
|
self._max_position_of_local_instance = self._max_seen_allocated_stream_id
|
|
|
|
|
2023-01-18 14:35:29 -05:00
|
|
|
if not writers:
|
|
|
|
# If there have been no explicit writers given then any instance can
|
|
|
|
# write to the stream. In which case, let's pre-seed our own
|
|
|
|
# position with the current minimum.
|
|
|
|
self._current_positions[self._instance_name] = self._persisted_upto_position
|
|
|
|
|
2020-05-04 12:17:45 -04:00
|
|
|
def _load_current_ids(
|
2021-01-18 10:47:59 -05:00
|
|
|
self,
|
2021-10-08 10:25:16 -04:00
|
|
|
db_conn: LoggingDatabaseConnection,
|
2021-01-18 10:47:59 -05:00
|
|
|
tables: List[Tuple[str, str, str]],
|
2024-06-17 07:50:00 -04:00
|
|
|
sequence_name: str,
|
2021-10-08 10:25:16 -04:00
|
|
|
) -> None:
|
2020-10-02 10:20:45 -04:00
|
|
|
cur = db_conn.cursor(txn_name="_load_current_ids")
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
# Load the current positions of all writers for the stream.
|
|
|
|
if self._writers:
|
2020-09-29 11:42:19 -04:00
|
|
|
# We delete any stale entries in the positions table. This is
|
|
|
|
# important if we add back a writer after a long time; we want to
|
|
|
|
# consider that a "new" writer, rather than using the old stale
|
|
|
|
# entry here.
|
2024-05-29 08:19:10 -04:00
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self._db.engine, "instance_name", self._writers, negative=True
|
|
|
|
)
|
|
|
|
|
|
|
|
sql = f"""
|
2020-09-29 11:42:19 -04:00
|
|
|
DELETE FROM stream_positions
|
|
|
|
WHERE
|
|
|
|
stream_name = ?
|
2024-05-29 08:19:10 -04:00
|
|
|
AND {clause}
|
2020-09-29 11:42:19 -04:00
|
|
|
"""
|
2024-05-29 08:19:10 -04:00
|
|
|
cur.execute(sql, [self._stream_name] + args)
|
2020-09-29 11:42:19 -04:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
sql = """
|
|
|
|
SELECT instance_name, stream_id FROM stream_positions
|
|
|
|
WHERE stream_name = ?
|
|
|
|
"""
|
|
|
|
cur.execute(sql, (self._stream_name,))
|
|
|
|
|
|
|
|
self._current_positions = {
|
|
|
|
instance: stream_id * self._return_factor
|
|
|
|
for instance, stream_id in cur
|
|
|
|
if instance in self._writers
|
|
|
|
}
|
|
|
|
|
2024-06-17 07:50:00 -04:00
|
|
|
# If we're a writer, we can assume we're at the end of the stream
|
|
|
|
# Usually, we would get that from the stream_positions, but in some cases,
|
|
|
|
# like if we rolled back Synapse, the stream_positions table might not be up to
|
|
|
|
# date. If we're using Postgres for the sequences, we can just use the current
|
|
|
|
# sequence value as our own position.
|
|
|
|
if self._instance_name in self._writers:
|
|
|
|
if isinstance(self._db.engine, PostgresEngine):
|
|
|
|
cur.execute(f"SELECT last_value FROM {sequence_name}")
|
|
|
|
row = cur.fetchone()
|
|
|
|
assert row is not None
|
|
|
|
self._current_positions[self._instance_name] = row[0]
|
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
# We set the `_persisted_upto_position` to be the minimum of all current
|
|
|
|
# positions. If empty we use the max stream ID from the DB table.
|
|
|
|
min_stream_id = min(self._current_positions.values(), default=None)
|
|
|
|
|
|
|
|
if min_stream_id is None:
|
2020-09-25 04:58:32 -04:00
|
|
|
# We add a GREATEST here to ensure that the result is always
|
|
|
|
# positive. (This can be a problem for e.g. backfill streams where
|
|
|
|
# the server has never backfilled).
|
2024-05-29 08:19:10 -04:00
|
|
|
greatest_func = (
|
|
|
|
"GREATEST" if isinstance(self._db.engine, PostgresEngine) else "MAX"
|
|
|
|
)
|
2021-01-18 10:47:59 -05:00
|
|
|
max_stream_id = 1
|
|
|
|
for table, _, id_column in tables:
|
|
|
|
sql = """
|
2024-05-29 08:19:10 -04:00
|
|
|
SELECT %(greatest_func)s(COALESCE(%(agg)s(%(id)s), 1), 1)
|
2021-01-18 10:47:59 -05:00
|
|
|
FROM %(table)s
|
|
|
|
""" % {
|
2024-05-29 08:19:10 -04:00
|
|
|
"greatest_func": greatest_func,
|
2021-01-18 10:47:59 -05:00
|
|
|
"id": id_column,
|
|
|
|
"table": table,
|
|
|
|
"agg": "MAX" if self._positive else "-MIN",
|
|
|
|
}
|
|
|
|
cur.execute(sql)
|
2021-10-08 10:25:16 -04:00
|
|
|
result = cur.fetchone()
|
|
|
|
assert result is not None
|
|
|
|
(stream_id,) = result
|
2021-01-18 10:47:59 -05:00
|
|
|
|
|
|
|
max_stream_id = max(max_stream_id, stream_id)
|
|
|
|
|
|
|
|
self._persisted_upto_position = max_stream_id
|
2020-09-24 11:53:51 -04:00
|
|
|
else:
|
|
|
|
# If we have a min_stream_id then we pull out everything greater
|
|
|
|
# than it from the DB so that we can prefill
|
|
|
|
# `_known_persisted_positions` and get a more accurate
|
|
|
|
# `_persisted_upto_position`.
|
|
|
|
#
|
|
|
|
# We also check if any of the later rows are from this instance, in
|
|
|
|
# which case we use that for this instance's current position. This
|
|
|
|
# is to handle the case where we didn't finish persisting to the
|
|
|
|
# stream positions table before restart (or the stream position
|
|
|
|
# table otherwise got out of date).
|
|
|
|
|
|
|
|
self._persisted_upto_position = min_stream_id
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
rows: List[Tuple[str, int]] = []
|
2021-01-18 10:47:59 -05:00
|
|
|
for table, instance_column, id_column in tables:
|
|
|
|
sql = """
|
|
|
|
SELECT %(instance)s, %(id)s FROM %(table)s
|
|
|
|
WHERE ? %(cmp)s %(id)s
|
|
|
|
""" % {
|
|
|
|
"id": id_column,
|
|
|
|
"table": table,
|
|
|
|
"instance": instance_column,
|
|
|
|
"cmp": "<=" if self._positive else ">=",
|
|
|
|
}
|
|
|
|
cur.execute(sql, (min_stream_id * self._return_factor,))
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
# Cast safety: this corresponds to the types returned by the query above.
|
|
|
|
rows.extend(cast(Iterable[Tuple[str, int]], cur))
|
2021-01-18 10:47:59 -05:00
|
|
|
|
2022-08-24 13:53:46 -04:00
|
|
|
# Sort by stream_id (ascending, lowest -> highest) so that we handle
|
|
|
|
# rows in order for each instance because we don't want to overwrite
|
|
|
|
# the current_position of an instance to a lower stream ID than
|
|
|
|
# we're actually at.
|
|
|
|
def sort_by_stream_id_key_func(row: Tuple[str, int]) -> int:
|
|
|
|
(instance, stream_id) = row
|
|
|
|
# If `stream_id` is ever `None`, we will see a `TypeError: '<'
|
|
|
|
# not supported between instances of 'NoneType' and 'X'` error.
|
|
|
|
return stream_id
|
|
|
|
|
|
|
|
rows.sort(key=sort_by_stream_id_key_func)
|
2021-01-18 10:47:59 -05:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
with self._lock:
|
2021-01-18 10:47:59 -05:00
|
|
|
for (
|
|
|
|
instance,
|
|
|
|
stream_id,
|
|
|
|
) in rows:
|
2020-09-24 11:53:51 -04:00
|
|
|
stream_id = self._return_factor * stream_id
|
|
|
|
self._add_persisted_position(stream_id)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
if instance == self._instance_name:
|
|
|
|
self._current_positions[instance] = stream_id
|
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
if self._writers:
|
|
|
|
# If we have explicit writers then make sure that each instance has
|
|
|
|
# a position.
|
|
|
|
for writer in self._writers:
|
|
|
|
self._current_positions.setdefault(
|
|
|
|
writer, self._persisted_upto_position
|
|
|
|
)
|
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
cur.close()
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def _load_next_id_txn(self, txn: Cursor) -> int:
|
2021-10-12 09:27:09 -04:00
|
|
|
stream_ids = self._load_next_mult_id_txn(txn, 1)
|
|
|
|
return stream_ids[0]
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def _load_next_mult_id_txn(self, txn: Cursor, n: int) -> List[int]:
|
2021-10-12 09:27:09 -04:00
|
|
|
# We need to track that we've requested some more stream IDs, and what
|
|
|
|
# the current max allocated stream ID is. This is to prevent a race
|
|
|
|
# where we've been allocated stream IDs but they have not yet been added
|
|
|
|
# to the `_unfinished_ids` set, allowing the current position to advance
|
|
|
|
# past them.
|
|
|
|
with self._lock:
|
|
|
|
current_max = self._max_seen_allocated_stream_id
|
|
|
|
self._in_flight_fetches.add(current_max)
|
|
|
|
|
|
|
|
try:
|
|
|
|
stream_ids = self._sequence_gen.get_next_mult_txn(txn, n)
|
|
|
|
|
|
|
|
with self._lock:
|
|
|
|
self._unfinished_ids.update(stream_ids)
|
|
|
|
self._max_seen_allocated_stream_id = max(
|
|
|
|
self._max_seen_allocated_stream_id, self._unfinished_ids[-1]
|
|
|
|
)
|
|
|
|
finally:
|
|
|
|
with self._lock:
|
|
|
|
self._in_flight_fetches.remove(current_max)
|
|
|
|
|
|
|
|
return stream_ids
|
2020-08-25 12:32:30 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def get_next(self) -> AsyncContextManager[int]:
|
2021-06-11 05:27:12 -04:00
|
|
|
# If we have a list of instances that are allowed to write to this
|
|
|
|
# stream, make sure we're in it.
|
|
|
|
if self._writers and self._instance_name not in self._writers:
|
|
|
|
raise Exception("Tried to allocate stream ID on non-writer")
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
# Cast safety: the second argument to _MultiWriterCtxManager, multiple_ids,
|
|
|
|
# controls the return type. If `None` or omitted, the context manager yields
|
|
|
|
# a single integer stream_id; otherwise it yields a list of stream_ids.
|
2023-01-20 13:02:18 -05:00
|
|
|
return cast(
|
|
|
|
AsyncContextManager[int], _MultiWriterCtxManager(self, self._notifier)
|
|
|
|
)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def get_next_mult(self, n: int) -> AsyncContextManager[List[int]]:
|
2021-06-11 05:27:12 -04:00
|
|
|
# If we have a list of instances that are allowed to write to this
|
|
|
|
# stream, make sure we're in it.
|
|
|
|
if self._writers and self._instance_name not in self._writers:
|
|
|
|
raise Exception("Tried to allocate stream ID on non-writer")
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
# Cast safety: see get_next.
|
2023-01-20 13:02:18 -05:00
|
|
|
return cast(
|
|
|
|
AsyncContextManager[List[int]],
|
|
|
|
_MultiWriterCtxManager(self, self._notifier, n),
|
|
|
|
)
|
2020-08-25 12:32:30 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def get_next_txn(self, txn: LoggingTransaction) -> int:
|
2020-05-04 12:17:45 -04:00
|
|
|
"""
|
|
|
|
Usage:
|
|
|
|
|
2023-03-02 13:27:00 -05:00
|
|
|
stream_id = stream_id_gen.get_next_txn(txn)
|
2020-05-04 12:17:45 -04:00
|
|
|
# ... persist event ...
|
|
|
|
"""
|
|
|
|
|
2021-06-11 05:27:12 -04:00
|
|
|
# If we have a list of instances that are allowed to write to this
|
|
|
|
# stream, make sure we're in it.
|
|
|
|
if self._writers and self._instance_name not in self._writers:
|
|
|
|
raise Exception("Tried to allocate stream ID on non-writer")
|
|
|
|
|
2020-05-04 12:17:45 -04:00
|
|
|
next_id = self._load_next_id_txn(txn)
|
|
|
|
|
2023-11-09 10:57:09 -05:00
|
|
|
txn.call_after(self._mark_ids_as_finished, [next_id])
|
|
|
|
txn.call_on_exception(self._mark_ids_as_finished, [next_id])
|
2023-01-20 13:02:18 -05:00
|
|
|
txn.call_after(self._notifier.notify_replication)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
# Update the `stream_positions` table with newly updated stream
|
|
|
|
# ID (unless self._writers is not set in which case we don't
|
|
|
|
# bother, as nothing will read it).
|
|
|
|
#
|
|
|
|
# We only do this on the success path so that the persisted current
|
2021-02-12 11:01:48 -05:00
|
|
|
# position points to a persisted row with the correct instance name.
|
2020-09-24 11:53:51 -04:00
|
|
|
if self._writers:
|
|
|
|
txn.call_after(
|
|
|
|
run_as_background_process,
|
|
|
|
"MultiWriterIdGenerator._update_table",
|
|
|
|
self._db.runInteraction,
|
|
|
|
"MultiWriterIdGenerator._update_table",
|
|
|
|
self._update_stream_positions_table_txn,
|
|
|
|
)
|
|
|
|
|
2020-09-01 08:36:25 -04:00
|
|
|
return self._return_factor * next_id
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2023-11-09 10:57:09 -05:00
|
|
|
def get_next_mult_txn(self, txn: LoggingTransaction, n: int) -> List[int]:
|
|
|
|
"""
|
|
|
|
Usage:
|
|
|
|
|
|
|
|
stream_id = stream_id_gen.get_next_txn(txn)
|
|
|
|
# ... persist event ...
|
|
|
|
"""
|
|
|
|
|
|
|
|
# If we have a list of instances that are allowed to write to this
|
|
|
|
# stream, make sure we're in it.
|
|
|
|
if self._writers and self._instance_name not in self._writers:
|
|
|
|
raise Exception("Tried to allocate stream ID on non-writer")
|
|
|
|
|
|
|
|
next_ids = self._load_next_mult_id_txn(txn, n)
|
|
|
|
|
|
|
|
txn.call_after(self._mark_ids_as_finished, next_ids)
|
|
|
|
txn.call_on_exception(self._mark_ids_as_finished, next_ids)
|
|
|
|
txn.call_after(self._notifier.notify_replication)
|
|
|
|
|
|
|
|
# Update the `stream_positions` table with newly updated stream
|
|
|
|
# ID (unless self._writers is not set in which case we don't
|
|
|
|
# bother, as nothing will read it).
|
|
|
|
#
|
|
|
|
# We only do this on the success path so that the persisted current
|
|
|
|
# position points to a persisted row with the correct instance name.
|
|
|
|
if self._writers:
|
|
|
|
txn.call_after(
|
|
|
|
run_as_background_process,
|
|
|
|
"MultiWriterIdGenerator._update_table",
|
|
|
|
self._db.runInteraction,
|
|
|
|
"MultiWriterIdGenerator._update_table",
|
|
|
|
self._update_stream_positions_table_txn,
|
|
|
|
)
|
|
|
|
|
|
|
|
return [self._return_factor * next_id for next_id in next_ids]
|
|
|
|
|
|
|
|
def _mark_ids_as_finished(self, next_ids: List[int]) -> None:
|
|
|
|
"""These IDs have finished being processed so we should advance the
|
2020-09-08 09:26:54 -04:00
|
|
|
current position if possible.
|
2020-05-04 12:17:45 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
with self._lock:
|
2023-11-09 10:57:09 -05:00
|
|
|
self._unfinished_ids.difference_update(next_ids)
|
|
|
|
self._finished_ids.update(next_ids)
|
2020-09-08 09:26:54 -04:00
|
|
|
|
2021-07-15 12:46:54 -04:00
|
|
|
new_cur: Optional[int] = None
|
2020-09-08 09:26:54 -04:00
|
|
|
|
2021-10-12 09:27:09 -04:00
|
|
|
if self._unfinished_ids or self._in_flight_fetches:
|
2020-09-08 09:26:54 -04:00
|
|
|
# If there are unfinished IDs then the new position will be the
|
2021-10-12 09:27:09 -04:00
|
|
|
# largest finished ID strictly less than the minimum unfinished
|
|
|
|
# ID.
|
|
|
|
|
|
|
|
# The minimum unfinished ID needs to take account of both
|
|
|
|
# `_unfinished_ids` and `_in_flight_fetches`.
|
|
|
|
if self._unfinished_ids and self._in_flight_fetches:
|
|
|
|
# `_in_flight_fetches` stores the maximum safe stream ID, so
|
|
|
|
# we add one to make it equivalent to the minimum unsafe ID.
|
|
|
|
min_unfinished = min(
|
|
|
|
self._unfinished_ids[0], self._in_flight_fetches[0] + 1
|
|
|
|
)
|
|
|
|
elif self._in_flight_fetches:
|
|
|
|
min_unfinished = self._in_flight_fetches[0] + 1
|
|
|
|
else:
|
|
|
|
min_unfinished = self._unfinished_ids[0]
|
2020-09-08 09:26:54 -04:00
|
|
|
|
|
|
|
finished = set()
|
|
|
|
for s in self._finished_ids:
|
2021-10-12 09:27:09 -04:00
|
|
|
if s < min_unfinished:
|
2020-09-08 09:26:54 -04:00
|
|
|
if new_cur is None or new_cur < s:
|
|
|
|
new_cur = s
|
|
|
|
else:
|
|
|
|
finished.add(s)
|
|
|
|
|
|
|
|
# We clear these out since they're now all less than the new
|
|
|
|
# position.
|
|
|
|
self._finished_ids = finished
|
|
|
|
else:
|
|
|
|
# There are no unfinished IDs so the new position is simply the
|
|
|
|
# largest finished one.
|
|
|
|
new_cur = max(self._finished_ids)
|
|
|
|
|
|
|
|
# We clear these out since they're now all less than the new
|
|
|
|
# position.
|
|
|
|
self._finished_ids.clear()
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2020-09-08 09:26:54 -04:00
|
|
|
if new_cur:
|
2020-05-04 12:17:45 -04:00
|
|
|
curr = self._current_positions.get(self._instance_name, 0)
|
2020-09-08 09:26:54 -04:00
|
|
|
self._current_positions[self._instance_name] = max(curr, new_cur)
|
2023-10-23 11:57:30 -04:00
|
|
|
self._max_position_of_local_instance = max(
|
|
|
|
curr, new_cur, self._max_position_of_local_instance
|
|
|
|
)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2023-11-09 10:57:09 -05:00
|
|
|
# TODO Can we call this for just the last position or somehow batch
|
|
|
|
# _add_persisted_position.
|
|
|
|
for next_id in next_ids:
|
|
|
|
self._add_persisted_position(next_id)
|
2020-08-27 08:20:34 -04:00
|
|
|
|
2020-08-19 05:39:31 -04:00
|
|
|
def get_current_token(self) -> int:
|
2020-09-14 05:16:41 -04:00
|
|
|
return self.get_persisted_upto_position()
|
2020-08-19 05:39:31 -04:00
|
|
|
|
|
|
|
def get_current_token_for_writer(self, instance_name: str) -> int:
|
2020-09-29 11:42:19 -04:00
|
|
|
# If we don't have an entry for the given instance name, we assume it's a
|
|
|
|
# new writer.
|
|
|
|
#
|
|
|
|
# For new writers we assume their initial position to be the current
|
|
|
|
# persisted up to position. This stops Synapse from doing a full table
|
|
|
|
# scan when a new writer announces itself over replication.
|
2020-05-04 12:17:45 -04:00
|
|
|
with self._lock:
|
2023-10-23 11:57:30 -04:00
|
|
|
if self._instance_name == instance_name:
|
|
|
|
return self._return_factor * self._max_position_of_local_instance
|
|
|
|
|
|
|
|
pos = self._current_positions.get(
|
2020-09-29 11:42:19 -04:00
|
|
|
instance_name, self._persisted_upto_position
|
|
|
|
)
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
# We want to return the maximum "current token" that we can for a
|
|
|
|
# writer, this helps ensure that streams progress as fast as
|
|
|
|
# possible.
|
|
|
|
pos = max(pos, self._persisted_upto_position)
|
|
|
|
|
|
|
|
return self._return_factor * pos
|
|
|
|
|
|
|
|
def get_minimal_local_current_token(self) -> int:
|
|
|
|
with self._lock:
|
|
|
|
return self._return_factor * self._current_positions.get(
|
|
|
|
self._instance_name, self._persisted_upto_position
|
|
|
|
)
|
|
|
|
|
2020-05-04 12:17:45 -04:00
|
|
|
def get_positions(self) -> Dict[str, int]:
|
|
|
|
"""Get a copy of the current positon map.
|
2020-09-29 11:42:19 -04:00
|
|
|
|
|
|
|
Note that this won't necessarily include all configured writers if some
|
|
|
|
writers haven't written anything yet.
|
2020-05-04 12:17:45 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
with self._lock:
|
2020-09-01 08:36:25 -04:00
|
|
|
return {
|
|
|
|
name: self._return_factor * i
|
|
|
|
for name, i in self._current_positions.items()
|
|
|
|
}
|
2020-05-04 12:17:45 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def advance(self, instance_name: str, new_id: int) -> None:
|
2020-09-01 08:36:25 -04:00
|
|
|
new_id *= self._return_factor
|
|
|
|
|
2020-05-04 12:17:45 -04:00
|
|
|
with self._lock:
|
|
|
|
self._current_positions[instance_name] = max(
|
|
|
|
new_id, self._current_positions.get(instance_name, 0)
|
|
|
|
)
|
2020-08-25 12:32:30 -04:00
|
|
|
|
2021-10-12 09:27:09 -04:00
|
|
|
self._max_seen_allocated_stream_id = max(
|
|
|
|
self._max_seen_allocated_stream_id, new_id
|
|
|
|
)
|
|
|
|
|
2020-08-25 12:32:30 -04:00
|
|
|
self._add_persisted_position(new_id)
|
|
|
|
|
|
|
|
def get_persisted_upto_position(self) -> int:
|
|
|
|
"""Get the max position where all previous positions have been
|
|
|
|
persisted.
|
|
|
|
|
|
|
|
Note: In the worst case scenario this will be equal to the minimum
|
|
|
|
position across writers. This means that the returned position here can
|
|
|
|
lag if one writer doesn't write very often.
|
|
|
|
"""
|
|
|
|
|
|
|
|
with self._lock:
|
2020-09-01 08:36:25 -04:00
|
|
|
return self._return_factor * self._persisted_upto_position
|
2020-08-25 12:32:30 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def _add_persisted_position(self, new_id: int) -> None:
|
2020-08-25 12:32:30 -04:00
|
|
|
"""Record that we have persisted a position.
|
|
|
|
|
|
|
|
This is used to keep the `_current_positions` up to date.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# We require that the lock is locked by caller
|
|
|
|
assert self._lock.locked()
|
|
|
|
|
|
|
|
heapq.heappush(self._known_persisted_positions, new_id)
|
|
|
|
|
|
|
|
# We move the current min position up if the minimum current positions
|
|
|
|
# of all instances is higher (since by definition all positions less
|
|
|
|
# that that have been persisted).
|
2023-01-18 14:35:29 -05:00
|
|
|
our_current_position = self._current_positions.get(self._instance_name, 0)
|
|
|
|
min_curr = min(
|
|
|
|
(
|
|
|
|
token
|
|
|
|
for name, token in self._current_positions.items()
|
|
|
|
if name != self._instance_name
|
|
|
|
),
|
|
|
|
default=our_current_position,
|
|
|
|
)
|
|
|
|
|
|
|
|
if our_current_position and (self._unfinished_ids or self._in_flight_fetches):
|
|
|
|
min_curr = min(min_curr, our_current_position)
|
|
|
|
|
2020-08-25 12:32:30 -04:00
|
|
|
self._persisted_upto_position = max(min_curr, self._persisted_upto_position)
|
|
|
|
|
2023-10-23 11:57:30 -04:00
|
|
|
# Advance our local max position.
|
|
|
|
self._max_position_of_local_instance = max(
|
|
|
|
self._max_position_of_local_instance, self._persisted_upto_position
|
|
|
|
)
|
|
|
|
|
|
|
|
if not self._unfinished_ids and not self._in_flight_fetches:
|
|
|
|
# If we don't have anything in flight, it's safe to advance to the
|
|
|
|
# max seen stream ID.
|
|
|
|
self._max_position_of_local_instance = max(
|
|
|
|
self._max_seen_allocated_stream_id, self._max_position_of_local_instance
|
|
|
|
)
|
|
|
|
|
2020-08-25 12:32:30 -04:00
|
|
|
# We now iterate through the seen positions, discarding those that are
|
|
|
|
# less than the current min positions, and incrementing the min position
|
|
|
|
# if its exactly one greater.
|
|
|
|
#
|
|
|
|
# This is also where we discard items from `_known_persisted_positions`
|
|
|
|
# (to ensure the list doesn't infinitely grow).
|
|
|
|
while self._known_persisted_positions:
|
|
|
|
if self._known_persisted_positions[0] <= self._persisted_upto_position:
|
|
|
|
heapq.heappop(self._known_persisted_positions)
|
|
|
|
elif (
|
|
|
|
self._known_persisted_positions[0] == self._persisted_upto_position + 1
|
|
|
|
):
|
|
|
|
heapq.heappop(self._known_persisted_positions)
|
|
|
|
self._persisted_upto_position += 1
|
|
|
|
else:
|
|
|
|
# There was a gap in seen positions, so there is nothing more to
|
|
|
|
# do.
|
|
|
|
break
|
2020-09-23 11:11:18 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
def _update_stream_positions_table_txn(self, txn: Cursor) -> None:
|
2020-09-24 11:53:51 -04:00
|
|
|
"""Update the `stream_positions` table with newly persisted position."""
|
|
|
|
|
|
|
|
if not self._writers:
|
|
|
|
return
|
|
|
|
|
|
|
|
# We upsert the value, ensuring on conflict that we always increase the
|
|
|
|
# value (or decrease if stream goes backwards).
|
2024-05-29 08:19:10 -04:00
|
|
|
if isinstance(self._db.engine, PostgresEngine):
|
|
|
|
agg = "GREATEST" if self._positive else "LEAST"
|
|
|
|
else:
|
|
|
|
agg = "MAX" if self._positive else "MIN"
|
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
sql = """
|
|
|
|
INSERT INTO stream_positions (stream_name, instance_name, stream_id)
|
|
|
|
VALUES (?, ?, ?)
|
|
|
|
ON CONFLICT (stream_name, instance_name)
|
|
|
|
DO UPDATE SET
|
|
|
|
stream_id = %(agg)s(stream_positions.stream_id, EXCLUDED.stream_id)
|
|
|
|
""" % {
|
2024-05-29 08:19:10 -04:00
|
|
|
"agg": agg,
|
2020-09-24 11:53:51 -04:00
|
|
|
}
|
|
|
|
|
2024-05-29 08:19:10 -04:00
|
|
|
pos = self.get_current_token_for_writer(self._instance_name)
|
2020-09-24 11:53:51 -04:00
|
|
|
txn.execute(sql, (self._stream_name, self._instance_name, pos))
|
|
|
|
|
2020-09-23 11:11:18 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
@attr.s(frozen=True, auto_attribs=True)
|
|
|
|
class _AsyncCtxManagerWrapper(Generic[T]):
|
2020-09-23 11:11:18 -04:00
|
|
|
"""Helper class to convert a plain context manager to an async one.
|
|
|
|
|
|
|
|
This is mainly useful if you have a plain context manager but the interface
|
|
|
|
requires an async one.
|
|
|
|
"""
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
inner: ContextManager[T]
|
2020-09-23 11:11:18 -04:00
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
async def __aenter__(self) -> T:
|
2020-09-23 11:11:18 -04:00
|
|
|
return self.inner.__enter__()
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
async def __aexit__(
|
|
|
|
self,
|
|
|
|
exc_type: Optional[Type[BaseException]],
|
|
|
|
exc: Optional[BaseException],
|
|
|
|
tb: Optional[TracebackType],
|
|
|
|
) -> Optional[bool]:
|
2020-09-23 11:11:18 -04:00
|
|
|
return self.inner.__exit__(exc_type, exc, tb)
|
|
|
|
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
@attr.s(slots=True, auto_attribs=True)
|
2020-09-23 11:11:18 -04:00
|
|
|
class _MultiWriterCtxManager:
|
|
|
|
"""Async context manager returned by MultiWriterIdGenerator"""
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
id_gen: MultiWriterIdGenerator
|
2023-01-20 13:02:18 -05:00
|
|
|
notifier: "ReplicationNotifier"
|
2022-01-13 08:49:28 -05:00
|
|
|
multiple_ids: Optional[int] = None
|
|
|
|
stream_ids: List[int] = attr.Factory(list)
|
2020-09-23 11:11:18 -04:00
|
|
|
|
|
|
|
async def __aenter__(self) -> Union[int, List[int]]:
|
2020-10-07 10:15:57 -04:00
|
|
|
# It's safe to run this in autocommit mode as fetching values from a
|
|
|
|
# sequence ignores transaction semantics anyway.
|
2020-09-23 11:11:18 -04:00
|
|
|
self.stream_ids = await self.id_gen._db.runInteraction(
|
|
|
|
"_load_next_mult_id",
|
|
|
|
self.id_gen._load_next_mult_id_txn,
|
|
|
|
self.multiple_ids or 1,
|
2020-10-07 10:15:57 -04:00
|
|
|
db_autocommit=True,
|
2020-09-23 11:11:18 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if self.multiple_ids is None:
|
|
|
|
return self.stream_ids[0] * self.id_gen._return_factor
|
|
|
|
else:
|
|
|
|
return [i * self.id_gen._return_factor for i in self.stream_ids]
|
|
|
|
|
2021-10-08 10:25:16 -04:00
|
|
|
async def __aexit__(
|
|
|
|
self,
|
|
|
|
exc_type: Optional[Type[BaseException]],
|
|
|
|
exc: Optional[BaseException],
|
|
|
|
tb: Optional[TracebackType],
|
|
|
|
) -> bool:
|
2023-11-09 10:57:09 -05:00
|
|
|
self.id_gen._mark_ids_as_finished(self.stream_ids)
|
2020-09-23 11:11:18 -04:00
|
|
|
|
2023-01-20 13:02:18 -05:00
|
|
|
self.notifier.notify_replication()
|
|
|
|
|
2020-09-23 11:11:18 -04:00
|
|
|
if exc_type is not None:
|
|
|
|
return False
|
|
|
|
|
2020-09-24 11:53:51 -04:00
|
|
|
# Update the `stream_positions` table with newly updated stream
|
|
|
|
# ID (unless self._writers is not set in which case we don't
|
|
|
|
# bother, as nothing will read it).
|
|
|
|
#
|
|
|
|
# We only do this on the success path so that the persisted current
|
|
|
|
# position points to a persisted row with the correct instance name.
|
2020-10-07 10:15:57 -04:00
|
|
|
#
|
|
|
|
# We do this in autocommit mode as a) the upsert works correctly outside
|
|
|
|
# transactions and b) reduces the amount of time the rows are locked
|
|
|
|
# for. If we don't do this then we'll often hit serialization errors due
|
|
|
|
# to the fact we default to REPEATABLE READ isolation levels.
|
2020-09-24 11:53:51 -04:00
|
|
|
if self.id_gen._writers:
|
|
|
|
await self.id_gen._db.runInteraction(
|
|
|
|
"MultiWriterIdGenerator._update_table",
|
|
|
|
self.id_gen._update_stream_positions_table_txn,
|
2020-10-07 10:15:57 -04:00
|
|
|
db_autocommit=True,
|
2020-09-24 11:53:51 -04:00
|
|
|
)
|
|
|
|
|
2020-09-23 11:11:18 -04:00
|
|
|
return False
|