/* * Copyright 2025-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #include #include "exceptions/exceptions.hh" #include "db/tablet_options.hh" #include #include "utils/log.hh" extern logging::logger dblog; namespace db { tablet_options::tablet_options(const map_type& map) { for (auto& [key, value_str] : map) { switch (tablet_options::from_string(key)) { case tablet_option_type::min_tablet_count: if (auto value = std::atol(value_str.c_str())) { min_tablet_count.emplace(value); } break; case tablet_option_type::max_tablet_count: if (auto value = std::atol(value_str.c_str())) { max_tablet_count.emplace(value); } break; case tablet_option_type::min_per_shard_tablet_count: if (auto value = std::atof(value_str.c_str())) { min_per_shard_tablet_count.emplace(value); } break; case tablet_option_type::expected_data_size_in_gb: if (auto value = std::atol(value_str.c_str())) { expected_data_size_in_gb.emplace(value); } break; } } } sstring tablet_options::to_string(tablet_option_type hint) { switch (hint) { case tablet_option_type::min_tablet_count: return "min_tablet_count"; case tablet_option_type::max_tablet_count: return "max_tablet_count"; case tablet_option_type::min_per_shard_tablet_count: return "min_per_shard_tablet_count"; case tablet_option_type::expected_data_size_in_gb: return "expected_data_size_in_gb"; } } tablet_option_type tablet_options::from_string(sstring hint_desc) { if (hint_desc == "min_tablet_count") { return tablet_option_type::min_tablet_count; } else if (hint_desc == "max_tablet_count") { return tablet_option_type::max_tablet_count; } else if (hint_desc == "min_per_shard_tablet_count") { return tablet_option_type::min_per_shard_tablet_count; } else if (hint_desc == "expected_data_size_in_gb") { return tablet_option_type::expected_data_size_in_gb; } else { throw exceptions::syntax_exception(fmt::format("Unknown tablet hint '{}'", hint_desc)); } } std::map tablet_options::to_map() const { std::map res; if (min_tablet_count) { res[to_string(tablet_option_type::min_tablet_count)] = fmt::to_string(*min_tablet_count); } if (max_tablet_count) { res[to_string(tablet_option_type::max_tablet_count)] = fmt::to_string(*max_tablet_count); } if (min_per_shard_tablet_count) { res[to_string(tablet_option_type::min_per_shard_tablet_count)] = fmt::to_string(*min_per_shard_tablet_count); } if (expected_data_size_in_gb) { res[to_string(tablet_option_type::expected_data_size_in_gb)] = fmt::to_string(*expected_data_size_in_gb); } return res; } void tablet_options::validate(const map_type& map) { std::optional min_tablets; std::optional max_tablets; for (auto& [key, value_str] : map) { switch (tablet_options::from_string(key)) { case tablet_option_type::min_tablet_count: if (auto value = std::atol(value_str.c_str()); value < 0) { throw exceptions::configuration_exception(format("Invalid value '{}' for min_tablet_count", value)); } else { min_tablets = value; } break; case tablet_option_type::max_tablet_count: if (auto value = std::atol(value_str.c_str()); value <= 0) { throw exceptions::configuration_exception(format("Invalid value '{}' for max_tablet_count", value)); } else { max_tablets = value; } break; case tablet_option_type::min_per_shard_tablet_count: if (auto value = std::atof(value_str.c_str()); value < 0) { throw exceptions::configuration_exception(format("Invalid value '{}' for min_per_shard_tablet_count", value)); } break; case tablet_option_type::expected_data_size_in_gb: if (auto value = std::atol(value_str.c_str()); value < 0) { throw exceptions::configuration_exception(format("Invalid value '{}' for expected_data_size_in_gb", value)); } break; } } if (min_tablets && max_tablets) { auto effective_min = 1u << log2ceil(static_cast(*min_tablets)); auto effective_max = 1u << log2floor(static_cast(*max_tablets)); if (effective_min > effective_max) { throw exceptions::configuration_exception( format("Invalid tablet count range: min_tablet_count={} (effective: {}) and max_tablet_count={} (effective: {}) " "result in conflicting constraints after rounding to powers of 2. " "Since tablet counts must be powers of 2, min_tablet_count rounds up and max_tablet_count rounds down" "Please adjust the values so that the smallest power of 2 greater than min_tablet_count is <= the largest power of 2 <= max_tablet_count.", *min_tablets, effective_min, *max_tablets, effective_max)); } } } } // namespace db