mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
#include <Common/ZooKeeper/Types.h>
|
|
#include <Common/ZooKeeper/ZooKeeper.h>
|
|
#include <common/logger_useful.h>
|
|
#include <Core/BackgroundSchedulePool.h>
|
|
#include <thread>
|
|
|
|
#include <map>
|
|
#include <unordered_map>
|
|
#include <pcg_random.hpp>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class StorageReplicatedMergeTree;
|
|
|
|
|
|
/** Removes obsolete data from a table of type ReplicatedMergeTree.
|
|
*/
|
|
class ReplicatedMergeTreeCleanupThread
|
|
{
|
|
public:
|
|
ReplicatedMergeTreeCleanupThread(StorageReplicatedMergeTree & storage_);
|
|
|
|
void start() { task->activateAndSchedule(); }
|
|
|
|
void wakeup() { task->schedule(); }
|
|
|
|
void stop() { task->deactivate(); }
|
|
|
|
private:
|
|
StorageReplicatedMergeTree & storage;
|
|
String log_name;
|
|
Logger * log;
|
|
BackgroundSchedulePool::TaskHolder task;
|
|
pcg64 rng;
|
|
|
|
void run();
|
|
void iterate();
|
|
|
|
/// Remove old records from ZooKeeper.
|
|
void clearOldLogs();
|
|
|
|
/// The replica is marked as "lost" if it is inactive and its log pointer
|
|
/// is far behind and we are not going to keep logs for it.
|
|
/// Lost replicas will use different strategy for repair.
|
|
void markLostReplicas(const std::unordered_map<String, UInt32> & host_versions_lost_replicas,
|
|
const std::unordered_map<String, String> & log_pointers_candidate_lost_replicas,
|
|
size_t replicas_count, const zkutil::ZooKeeperPtr & zookeeper);
|
|
|
|
/// Remove old block hashes from ZooKeeper. This is done by the leader replica.
|
|
void clearOldBlocks();
|
|
|
|
/// Remove old mutations that are done from ZooKeeper. This is done by the leader replica.
|
|
void clearOldMutations();
|
|
|
|
using NodeCTimeCache = std::map<String, Int64>;
|
|
NodeCTimeCache cached_block_stats;
|
|
|
|
struct NodeWithStat;
|
|
/// Returns list of blocks (with their stat) sorted by ctime in descending order.
|
|
void getBlocksSortedByTime(zkutil::ZooKeeper & zookeeper, std::vector<NodeWithStat> & timed_blocks);
|
|
|
|
/// TODO Removing old quorum/failed_parts
|
|
};
|
|
|
|
|
|
}
|