ClickHouse/src/Storages/MergeTree/AsyncBlockIDsCache.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1012 B
C++
Raw Normal View History

#pragma once
#include <Common/ZooKeeper/ZooKeeper.h>
#include <Core/BackgroundSchedulePool.h>
#include <chrono>
namespace DB
{
class StorageReplicatedMergeTree;
class AsyncBlockIDsCache
{
2023-01-17 14:47:52 +00:00
struct Cache;
using CachePtr = std::shared_ptr<Cache>;
std::vector<String> getChildren();
void update();
public:
explicit AsyncBlockIDsCache(StorageReplicatedMergeTree & storage_);
void start();
void stop() { task->deactivate(); }
Strings detectConflicts(const Strings & paths, UInt64 & last_version);
private:
StorageReplicatedMergeTree & storage;
2023-01-18 12:11:07 +00:00
std::atomic<std::chrono::steady_clock::time_point> last_updatetime;
const std::chrono::milliseconds update_min_interval;
std::mutex mu;
CachePtr cache_ptr;
std::condition_variable cv;
UInt64 version = 0;
const String path;
BackgroundSchedulePool::TaskHolder task;
const String log_name;
Poco::Logger * log;
};
using AsyncBlockIDsCachePtr = std::shared_ptr<AsyncBlockIDsCache>;
}