mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
23 lines
362 B
C++
23 lines
362 B
C++
/*
|
|
* Copyright (C) 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
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;
|
|
|
|
}
|