ClickHouse/src/Storages/MarkCache.h

71 lines
1.9 KiB
C++
Raw Normal View History

2014-02-11 13:30:42 +00:00
#pragma once
2015-04-16 06:12:35 +00:00
#include <memory>
#include <Common/CacheBase.h>
#include <Common/ProfileEvents.h>
#include <Common/SipHash.h>
#include <Common/HashTable/Hash.h>
#include <Interpreters/AggregationCommon.h>
2021-10-15 20:18:20 +00:00
#include <Formats/MarkInCompressedFile.h>
2014-02-11 13:30:42 +00:00
namespace ProfileEvents
{
extern const Event MarkCacheHits;
extern const Event MarkCacheMisses;
}
2014-02-11 13:30:42 +00:00
namespace DB
2014-02-11 13:30:42 +00:00
{
/// Estimate of number of bytes in cache for marks.
2014-02-11 13:30:42 +00:00
struct MarksWeightFunction
{
2020-11-27 13:17:10 +00:00
/// We spent additional bytes on key in hashmap, linked lists, shared pointers, etc ...
static constexpr size_t MARK_CACHE_OVERHEAD = 128;
size_t operator()(const MarksInCompressedFile & marks) const
{
2023-03-07 05:09:13 +00:00
return marks.approximateMemoryUsage() + MARK_CACHE_OVERHEAD;
}
2014-02-11 13:30:42 +00:00
};
/** Cache of 'marks' for StorageMergeTree.
* Marks is an index structure that addresses ranges in column file, corresponding to ranges of primary key.
2014-02-11 13:30:42 +00:00
*/
class MarkCache : public CacheBase<UInt128, MarksInCompressedFile, UInt128TrivialHash, MarksWeightFunction>
2014-02-11 13:30:42 +00:00
{
private:
using Base = CacheBase<UInt128, MarksInCompressedFile, UInt128TrivialHash, MarksWeightFunction>;
2014-02-11 13:30:42 +00:00
public:
2023-08-22 15:43:13 +00:00
MarkCache(const String & cache_policy, size_t max_size_in_bytes, double size_ratio)
: Base(cache_policy, max_size_in_bytes, 0, size_ratio) {}
/// Calculate key from path to file and offset.
static UInt128 hash(const String & path_to_file)
{
SipHash hash;
hash.update(path_to_file.data(), path_to_file.size() + 1);
return hash.get128();
}
2017-09-15 12:16:12 +00:00
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;
}
2014-02-11 13:30:42 +00:00
};
using MarkCachePtr = std::shared_ptr<MarkCache>;
2014-02-11 13:30:42 +00:00
}