We would like to share with other nodes the value of ignore_msb_bits property used by the node. This is needed because CDC will operate on streams of changes. Each shard on each node will have its own stream that will be identified by a stream_id. Stream_id will be selected in such a way that using stream_id as partition key will locate partition identified by stream_id on a node and shard that the stream belongs to. To be able to generate such stream_id we need to know ignore_msb_bits property value for each node. IMPORTANT NOTE: At this point CDC does not support topology changes. It will work only on a stable cluster. Support for topology modifications will be added in later steps. Signed-off-by: Piotr Jastrzebski <piotr@scylladb.com>
84 lines
3.2 KiB
C++
84 lines
3.2 KiB
C++
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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.
|
|
*/
|
|
|
|
/*
|
|
* Modified by ScyllaDB
|
|
* Copyright 2015 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "gms/application_state.hh"
|
|
#include <seastar/core/sstring.hh>
|
|
#include <ostream>
|
|
#include <map>
|
|
#include "seastarx.hh"
|
|
|
|
namespace gms {
|
|
|
|
static const std::map<application_state, sstring> application_state_names = {
|
|
{application_state::STATUS, "STATUS"},
|
|
{application_state::LOAD, "LOAD"},
|
|
{application_state::SCHEMA, "SCHEMA"},
|
|
{application_state::DC, "DC"},
|
|
{application_state::RACK, "RACK"},
|
|
{application_state::RELEASE_VERSION, "RELEASE_VERSION"},
|
|
{application_state::REMOVAL_COORDINATOR, "REMOVAL_COORDINATOR"},
|
|
{application_state::INTERNAL_IP, "INTERNAL_IP"},
|
|
{application_state::RPC_ADDRESS, "RPC_ADDRESS"},
|
|
{application_state::SEVERITY, "SEVERITY"},
|
|
{application_state::NET_VERSION, "NET_VERSION"},
|
|
{application_state::HOST_ID, "HOST_ID"},
|
|
{application_state::TOKENS, "TOKENS"},
|
|
{application_state::SUPPORTED_FEATURES, "SUPPORTED_FEATURES"},
|
|
{application_state::CACHE_HITRATES, "CACHE_HITRATES"},
|
|
{application_state::SCHEMA_TABLES_VERSION, "SCHEMA_TABLES_VERSION"},
|
|
{application_state::RPC_READY, "RPC_READY"},
|
|
{application_state::VIEW_BACKLOG, "VIEW_BACKLOG"},
|
|
{application_state::SHARD_COUNT, "SHARD_COUNT"},
|
|
{application_state::IGNORE_MSB_BITS, "IGNOR_MSB_BITS"},
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& os, const application_state& m) {
|
|
auto it = application_state_names.find(m);
|
|
if (it != application_state_names.end()) {
|
|
os << application_state_names.at(m);
|
|
} else {
|
|
os << "UNKNOWN";
|
|
}
|
|
return os;
|
|
}
|
|
|
|
}
|
|
|