Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
56 lines
1.3 KiB
C++
56 lines
1.3 KiB
C++
/*
|
|
* Copyright 2021-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#include "gms/inet_address_serializer.hh"
|
|
#include "db/hints/sync_point.hh"
|
|
|
|
#include "idl/replay_position.idl.hh"
|
|
#include "idl/uuid.idl.hh"
|
|
|
|
namespace db {
|
|
|
|
namespace hints {
|
|
|
|
// Contains per-endpoint and per-shard information about replay positions
|
|
// for a particular type of hint queues (regular mutation hints or MV update hints)
|
|
struct per_manager_sync_point_v1_or_v2 {
|
|
std::vector<gms::inet_address> endpoints;
|
|
std::vector<db::replay_position> flattened_rps;
|
|
};
|
|
|
|
struct sync_point_v1_or_v2 {
|
|
locator::host_id host_id;
|
|
uint16_t shard_count;
|
|
|
|
// Sync point information for regular mutation hints
|
|
db::hints::per_manager_sync_point_v1_or_v2 regular_sp;
|
|
|
|
// Sync point information for materialized view hints
|
|
db::hints::per_manager_sync_point_v1_or_v2 mv_sp;
|
|
};
|
|
|
|
struct per_manager_sync_point_v3 {
|
|
std::vector<locator::host_id> endpoints;
|
|
std::vector<db::replay_position> flattened_rps;
|
|
};
|
|
|
|
struct sync_point_v3 {
|
|
locator::host_id host_id;
|
|
uint16_t shard_count;
|
|
|
|
// Sync point information for regular mutation hints
|
|
db::hints::per_manager_sync_point_v3 regular_sp;
|
|
|
|
// Sync point information for materialized view hints
|
|
db::hints::per_manager_sync_point_v3 mv_sp;
|
|
};
|
|
|
|
}
|
|
|
|
}
|