mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include <DB/Common/LRUCache.h>
|
|
#include <DB/Common/ProfileEvents.h>
|
|
#include <DB/Common/SipHash.h>
|
|
#include <DB/Interpreters/AggregationCommon.h>
|
|
#include <DB/DataStreams/MarkInCompressedFile.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
extern const Event MarkCacheHits;
|
|
extern const Event MarkCacheMisses;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Estimate of number of bytes in cache for marks.
|
|
struct MarksWeightFunction
|
|
{
|
|
size_t operator()(const MarksInCompressedFile & marks) const
|
|
{
|
|
/// NOTE Could add extra 100 bytes for overhead of std::vector, cache structures and allocator.
|
|
return marks.size() * sizeof(MarkInCompressedFile);
|
|
}
|
|
};
|
|
|
|
|
|
/** Cache of 'marks' for StorageMergeTree.
|
|
* Marks is an index structure that addresses ranges in column file, corresponding to ranges of primary key.
|
|
*/
|
|
class MarkCache : public LRUCache<UInt128, MarksInCompressedFile, UInt128TrivialHash, MarksWeightFunction>
|
|
{
|
|
private:
|
|
using Base = LRUCache<UInt128, MarksInCompressedFile, UInt128TrivialHash, MarksWeightFunction>;
|
|
|
|
public:
|
|
MarkCache(size_t max_size_in_bytes, const Delay & expiration_delay)
|
|
: Base(max_size_in_bytes, expiration_delay) {}
|
|
|
|
/// Calculate key from path to file and offset.
|
|
static UInt128 hash(const String & path_to_file)
|
|
{
|
|
UInt128 key;
|
|
|
|
SipHash hash;
|
|
hash.update(path_to_file.data(), path_to_file.size() + 1);
|
|
hash.get128(key.first, key.second);
|
|
|
|
return key;
|
|
}
|
|
|
|
template<typename LoadFunc>
|
|
MappedPtr getOrSet(const Key & key, LoadFunc && load)
|
|
{
|
|
auto result = Base::getOrSet(key, load);
|
|
if (result.second)
|
|
ProfileEvents::increment(ProfileEvents::MarkCacheMisses);
|
|
else
|
|
ProfileEvents::increment(ProfileEvents::MarkCacheHits);
|
|
|
|
return result.first;
|
|
}
|
|
};
|
|
|
|
using MarkCachePtr = std::shared_ptr<MarkCache>;
|
|
|
|
}
|