mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
107 lines
3.0 KiB
C++
107 lines
3.0 KiB
C++
#pragma once
|
|
|
|
#include <Disks/IDisk.h>
|
|
#include <Disks/DiskSelector.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
enum class VolumeType
|
|
{
|
|
JBOD,
|
|
SINGLE_DISK,
|
|
UNKNOWN
|
|
};
|
|
|
|
enum class VolumeLoadBalancing
|
|
{
|
|
ROUND_ROBIN,
|
|
LEAST_USED,
|
|
};
|
|
|
|
VolumeLoadBalancing parseVolumeLoadBalancing(const String & config);
|
|
|
|
class IVolume;
|
|
using VolumePtr = std::shared_ptr<IVolume>;
|
|
using Volumes = std::vector<VolumePtr>;
|
|
|
|
/**
|
|
* Disks group by some (user) criteria. For example,
|
|
* - VolumeJBOD("slow_disks", [d1, d2], 100)
|
|
* - VolumeJBOD("fast_disks", [d3, d4], 200)
|
|
*
|
|
* Here VolumeJBOD is one of implementations of IVolume.
|
|
*
|
|
* Different of implementations of this interface implement different reserve behaviour —
|
|
* VolumeJBOD reserves space on the next disk after the last used, other future implementations
|
|
* will reserve, for example, equal spaces on all disks.
|
|
*/
|
|
class IVolume : public Space
|
|
{
|
|
public:
|
|
/// This constructor is only for:
|
|
/// - SingleDiskVolume
|
|
/// From createVolumeFromReservation().
|
|
IVolume(String name_,
|
|
Disks disks_,
|
|
size_t max_data_part_size_ = 0,
|
|
bool perform_ttl_move_on_insert_ = true,
|
|
VolumeLoadBalancing load_balancing_ = VolumeLoadBalancing::ROUND_ROBIN)
|
|
: disks(std::move(disks_))
|
|
, name(name_)
|
|
, max_data_part_size(max_data_part_size_)
|
|
, perform_ttl_move_on_insert(perform_ttl_move_on_insert_)
|
|
, load_balancing(load_balancing_)
|
|
{
|
|
}
|
|
|
|
IVolume(
|
|
String name_,
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
const String & config_prefix,
|
|
DiskSelectorPtr disk_selector
|
|
);
|
|
|
|
virtual ReservationPtr reserve(UInt64 bytes) override = 0;
|
|
|
|
/// This is a volume.
|
|
bool isVolume() const override { return true; }
|
|
|
|
/// Volume name from config
|
|
const String & getName() const override { return name; }
|
|
virtual VolumeType getType() const = 0;
|
|
|
|
/// Return biggest unreserved space across all disks
|
|
UInt64 getMaxUnreservedFreeSpace() const;
|
|
|
|
DiskPtr getDisk() const { return getDisk(0); }
|
|
virtual DiskPtr getDisk(size_t i) const { return disks[i]; }
|
|
Disks & getDisks() { return disks; }
|
|
const Disks & getDisks() const { return disks; }
|
|
|
|
/// Returns effective value of whether merges are allowed on this volume (false) or not (true).
|
|
virtual bool areMergesAvoided() const { return false; }
|
|
|
|
/// User setting for enabling and disabling merges on volume.
|
|
virtual void setAvoidMergesUserOverride(bool /*avoid*/) {}
|
|
|
|
protected:
|
|
Disks disks;
|
|
const String name;
|
|
|
|
public:
|
|
/// Max size of reservation, zero means unlimited size
|
|
UInt64 max_data_part_size = 0;
|
|
/// Should a new data part be synchronously moved to a volume according to ttl on insert
|
|
/// or move this part in background task asynchronously after insert.
|
|
bool perform_ttl_move_on_insert = true;
|
|
/// Load balancing, one of:
|
|
/// - ROUND_ROBIN
|
|
/// - LEAST_USED
|
|
const VolumeLoadBalancing load_balancing;
|
|
};
|
|
|
|
}
|