/* * Copyright (C) 2024-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include namespace service { // This the default target size of tablets. static constexpr uint64_t default_target_tablet_size = 5UL * 1024 * 1024 * 1024; class tablet_allocator_impl; class tablet_allocator; }