/* * Copyright (C) 2019 ScyllaDB */ /* * This file is part of Scylla. * * Scylla 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. * * Scylla is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Scylla. If not, see . */ /* This module contains classes and functions used to manage CDC generations: * sets of CDC stream identifiers used by the cluster to choose partition keys for CDC log writes. * Each CDC generation begins operating at a specific time point, called the generation's timestamp * (`cdc_streams_timpestamp` or `streams_timestamp` in the code). * The generation is used by all nodes in the cluster to pick CDC streams until superseded by a new generation. * * Functions from this module are used by the node joining procedure to introduce new CDC generations to the cluster * (which is necessary due to new tokens being inserted into the token ring), or during rolling upgrade * if CDC is enabled for the first time. */ #pragma once #include #include #include #include "database_fwd.hh" #include "db_clock.hh" #include "dht/token.hh" #include "locator/token_metadata.hh" #include "utils/chunked_vector.hh" namespace seastar { class abort_source; } // namespace seastar namespace db { class config; class system_distributed_keyspace; } // namespace db namespace gms { class inet_address; class gossiper; } // namespace gms namespace cdc { class stream_id final { bytes _value; public: static constexpr uint8_t version_1 = 1; stream_id() = default; stream_id(bytes); stream_id(dht::token, size_t); bool is_set() const; bool operator==(const stream_id&) const; bool operator!=(const stream_id&) const; bool operator<(const stream_id&) const; uint8_t version() const; size_t index() const; const bytes& to_bytes() const; dht::token token() const; partition_key to_partition_key(const schema& log_schema) const; static int64_t token_from_bytes(bytes_view); }; /* Describes a mapping of tokens to CDC streams in a token range. * * The range ends with `token_range_end`. A vector of `token_range_description`s defines the ranges entirely * (the end of the `i`th range is the beginning of the `i+1 % size()`th range). Ranges are left-opened, right-closed. * * Tokens in the range ending with `token_range_end` are mapped to streams in the `streams` vector as follows: * token `T` is mapped to `streams[j]` if and only if the used partitioner maps `T` to the `j`th shard, * assuming that the partitioner is configured for `streams.size()` shards and (partitioner's) `sharding_ignore_msb` * equals to the given `sharding_ignore_msb`. */ struct token_range_description { dht::token token_range_end; std::vector streams; uint8_t sharding_ignore_msb; bool operator==(const token_range_description&) const; }; /* Describes a mapping of tokens to CDC streams in a whole token ring. * * Division of the ring to token ranges is defined in terms of `token_range_end`s * in the `_entries` vector. See the comment above `token_range_description` for explanation. */ class topology_description { std::vector _entries; public: topology_description(std::vector entries); bool operator==(const topology_description&) const; const std::vector& entries() const&; std::vector&& entries() &&; }; /** * The set of streams for a single topology version/generation * I.e. the stream ids at a given time. */ class streams_version { public: utils::chunked_vector streams; db_clock::time_point timestamp; streams_version(utils::chunked_vector s, db_clock::time_point ts) : streams(std::move(s)) , timestamp(ts) {} }; class no_generation_data_exception : public std::runtime_error { public: no_generation_data_exception(db_clock::time_point generation_ts) : std::runtime_error(format("could not find generation data for timestamp {}", generation_ts)) {} }; /* Should be called when we're restarting and we noticed that we didn't save any streams timestamp in our local tables, * which means that we're probably upgrading from a non-CDC/old CDC version (another reason could be * that there's a bug, or the user messed with our local tables). * * It checks whether we should be the node to propose the first generation of CDC streams. * The chosen condition is arbitrary, it only tries to make sure that no two nodes propose a generation of streams * when upgrading, and nothing bad happens if they for some reason do (it's mostly an optimization). */ bool should_propose_first_generation(const gms::inet_address& me, const gms::gossiper&); /* * Read this node's streams generation timestamp stored in the LOCAL table. * Assumes that the node has successfully bootstrapped, and we're not upgrading from a non-CDC version, * so the timestamp is present. */ future get_local_streams_timestamp(); /* Generate a new set of CDC streams and insert it into the distributed cdc_generation_descriptions table. * Returns the timestamp of this new generation * * Should be called when starting the node for the first time (i.e., joining the ring). * * Assumes that the system_distributed keyspace is initialized. * * The caller of this function is expected to insert this timestamp into the gossiper as fast as possible, * so that other nodes learn about the generation before their clocks cross the timestmap * (not guaranteed in the current implementation, but expected to be the common case; * we assume that `ring_delay` is enough for other nodes to learn about the new generation). */ db_clock::time_point make_new_cdc_generation( const db::config& cfg, const std::unordered_set& bootstrap_tokens, const locator::token_metadata_ptr tmptr, const gms::gossiper& g, db::system_distributed_keyspace& sys_dist_ks, std::chrono::milliseconds ring_delay, bool add_delay); /* Retrieves CDC streams generation timestamp from the given endpoint's application state (broadcasted through gossip). * We might be during a rolling upgrade, so the timestamp might not be there (if the other node didn't upgrade yet), * but if the cluster already supports CDC, then every newly joining node will propose a new CDC generation, * which means it will gossip the generation's timestamp. */ std::optional get_streams_timestamp_for(const gms::inet_address& endpoint, const gms::gossiper&); /* Inform CDC users about a generation of streams (identified by the given timestamp) * by inserting it into the cdc_streams table. * * Assumes that the cdc_generation_descriptions table contains this generation. * * Returning from this function does not mean that the table update was successful: the function * might run an asynchronous task in the background. * * Run inside seastar::async context. */ void update_streams_description( db_clock::time_point, shared_ptr, noncopyable_function get_num_token_owners, abort_source&); /* Part of the upgrade procedure. Useful in case where the version of Scylla that we're upgrading from * used the "cdc_streams_descriptions" table. This procedure ensures that the new "cdc_streams_descriptions_v2" * table contains streams of all generations that were present in the old table and may still contain data * (i.e. there exist CDC log tables that may contain rows with partition keys being the stream IDs from * these generations). */ future<> maybe_rewrite_streams_descriptions( const database&, shared_ptr, noncopyable_function get_num_token_owners, abort_source&); } // namespace cdc