2015-11-16 17:27:12 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
#include <atomic>
|
|
|
|
#include <chrono>
|
|
|
|
#include <map>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <shared_mutex>
|
2018-11-11 19:29:52 +00:00
|
|
|
#include <variant>
|
2017-07-27 20:39:40 +00:00
|
|
|
#include <vector>
|
2018-10-08 19:45:17 +00:00
|
|
|
#include <Columns/ColumnDecimal.h>
|
2017-07-27 20:39:40 +00:00
|
|
|
#include <Columns/ColumnString.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <pcg_random.hpp>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/ArenaWithFreeLists.h>
|
|
|
|
#include <Common/HashTable/HashMap.h>
|
2017-07-27 19:05:55 +00:00
|
|
|
#include <Common/ProfilingScopedRWLock.h>
|
2017-07-27 20:39:40 +00:00
|
|
|
#include <Common/SmallObjectPool.h>
|
2017-06-23 20:22:35 +00:00
|
|
|
#include <common/StringRef.h>
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/bit_cast.h>
|
2017-07-27 19:05:55 +00:00
|
|
|
#include <ext/map.h>
|
2017-07-27 20:39:40 +00:00
|
|
|
#include <ext/scope_guard.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionaryStructure.h"
|
|
|
|
#include "IDictionary.h"
|
|
|
|
#include "IDictionarySource.h"
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
2015-11-16 17:27:12 +00:00
|
|
|
|
|
|
|
|
2017-07-27 19:05:55 +00:00
|
|
|
namespace ProfileEvents
|
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
extern const Event DictCacheKeysRequested;
|
|
|
|
extern const Event DictCacheKeysRequestedMiss;
|
|
|
|
extern const Event DictCacheKeysRequestedFound;
|
|
|
|
extern const Event DictCacheKeysExpired;
|
|
|
|
extern const Event DictCacheKeysNotFound;
|
|
|
|
extern const Event DictCacheKeysHit;
|
|
|
|
extern const Event DictCacheRequestTimeNs;
|
|
|
|
extern const Event DictCacheLockWriteNs;
|
|
|
|
extern const Event DictCacheLockReadNs;
|
2017-07-27 19:05:55 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 17:27:12 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
class ComplexKeyCacheDictionary final : public IDictionaryBase
|
|
|
|
{
|
|
|
|
public:
|
2018-12-10 15:25:45 +00:00
|
|
|
ComplexKeyCacheDictionary(
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string & database_,
|
2019-08-03 11:02:40 +00:00
|
|
|
const std::string & name_,
|
|
|
|
const DictionaryStructure & dict_struct_,
|
|
|
|
DictionarySourcePtr source_ptr_,
|
|
|
|
const DictionaryLifetime dict_lifetime_,
|
|
|
|
const size_t size_);
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
std::string getKeyDescription() const { return key_description; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string & getDatabase() const override { return database; }
|
|
|
|
const std::string & getName() const override { return name; }
|
|
|
|
const std::string & getFullName() const override { return full_name; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
std::string getTypeName() const override { return "ComplexKeyCache"; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getBytesAllocated() const override
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
return bytes_allocated + (key_size_is_fixed ? fixed_size_keys_pool->size() : keys_pool->size())
|
|
|
|
+ (string_arena ? string_arena->size() : 0);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
size_t getQueryCount() const override { return query_count.load(std::memory_order_relaxed); }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
double getHitRate() const override
|
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
return static_cast<double>(hit_count.load(std::memory_order_acquire)) / query_count.load(std::memory_order_relaxed);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
size_t getElementCount() const override { return element_count.load(std::memory_order_relaxed); }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
double getLoadFactor() const override { return static_cast<double>(element_count.load(std::memory_order_relaxed)) / size; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2019-12-02 15:56:18 +00:00
|
|
|
bool supportUpdates() const override { return false; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2019-06-02 12:11:01 +00:00
|
|
|
std::shared_ptr<const IExternalLoadable> clone() const override
|
2019-01-19 23:27:52 +00:00
|
|
|
{
|
2019-12-25 23:12:12 +00:00
|
|
|
return std::make_shared<ComplexKeyCacheDictionary>(database, name, dict_struct, source_ptr->clone(), dict_lifetime, size);
|
2019-01-19 23:27:52 +00:00
|
|
|
}
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const IDictionarySource * getSource() const override { return source_ptr.get(); }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryLifetime & getLifetime() const override { return dict_lifetime; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryStructure & getStructure() const override { return dict_struct; }
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isInjective(const std::string & attribute_name) const override
|
|
|
|
{
|
|
|
|
return dict_struct.attributes[&getAttribute(attribute_name) - attributes.data()].injective;
|
|
|
|
}
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-10-08 19:45:17 +00:00
|
|
|
template <typename T>
|
|
|
|
using ResultArrayType = std::conditional_t<IsDecimalNumber<T>, DecimalPaddedPODArray<T>, PaddedPODArray<T>>;
|
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// In all functions below, key_columns must be full (non-constant) columns.
|
|
|
|
/// See the requirement in IDataType.h for text-serialization functions.
|
|
|
|
#define DECLARE(TYPE) \
|
2018-12-10 15:50:58 +00:00
|
|
|
void get##TYPE( \
|
2018-10-08 19:45:17 +00:00
|
|
|
const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
void getString(const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ColumnString * out) const;
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void get##TYPE( \
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name, \
|
2018-12-10 15:50:58 +00:00
|
|
|
const Columns & key_columns, \
|
|
|
|
const DataTypes & key_types, \
|
|
|
|
const PaddedPODArray<TYPE> & def, \
|
2018-10-08 19:45:17 +00:00
|
|
|
ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void getString(
|
|
|
|
const std::string & attribute_name,
|
2017-07-27 20:39:40 +00:00
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
|
|
|
const ColumnString * const def,
|
|
|
|
ColumnString * const out) const;
|
|
|
|
|
2018-12-10 15:50:58 +00:00
|
|
|
#define DECLARE(TYPE) \
|
|
|
|
void get##TYPE( \
|
2018-12-10 15:25:45 +00:00
|
|
|
const std::string & attribute_name, \
|
2018-12-10 15:50:58 +00:00
|
|
|
const Columns & key_columns, \
|
|
|
|
const DataTypes & key_types, \
|
|
|
|
const TYPE def, \
|
2018-10-08 19:45:17 +00:00
|
|
|
ResultArrayType<TYPE> & out) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(UInt8)
|
|
|
|
DECLARE(UInt16)
|
|
|
|
DECLARE(UInt32)
|
|
|
|
DECLARE(UInt64)
|
2017-11-14 00:08:54 +00:00
|
|
|
DECLARE(UInt128)
|
2017-04-01 07:20:54 +00:00
|
|
|
DECLARE(Int8)
|
|
|
|
DECLARE(Int16)
|
|
|
|
DECLARE(Int32)
|
|
|
|
DECLARE(Int64)
|
|
|
|
DECLARE(Float32)
|
|
|
|
DECLARE(Float64)
|
2018-10-08 19:45:17 +00:00
|
|
|
DECLARE(Decimal32)
|
|
|
|
DECLARE(Decimal64)
|
|
|
|
DECLARE(Decimal128)
|
2015-11-20 15:53:23 +00:00
|
|
|
#undef DECLARE
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void getString(
|
|
|
|
const std::string & attribute_name,
|
2017-07-27 20:39:40 +00:00
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
|
|
|
const String & def,
|
|
|
|
ColumnString * const out) const;
|
2015-11-20 15:53:23 +00:00
|
|
|
|
2017-05-25 19:52:05 +00:00
|
|
|
void has(const Columns & key_columns, const DataTypes & key_types, PaddedPODArray<UInt8> & out) const;
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2019-02-18 18:51:46 +00:00
|
|
|
BlockInputStreamPtr getBlockInputStream(const Names & column_names, size_t max_block_size) const override;
|
2017-05-04 18:14:23 +00:00
|
|
|
|
2015-11-16 17:27:12 +00:00
|
|
|
private:
|
2018-12-10 15:25:45 +00:00
|
|
|
template <typename Value>
|
|
|
|
using MapType = HashMapWithSavedHash<StringRef, Value, StringRefHash>;
|
|
|
|
template <typename Value>
|
|
|
|
using ContainerType = Value[];
|
|
|
|
template <typename Value>
|
|
|
|
using ContainerPtrType = std::unique_ptr<ContainerType<Value>>;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
struct CellMetadata final
|
|
|
|
{
|
|
|
|
using time_point_t = std::chrono::system_clock::time_point;
|
|
|
|
using time_point_rep_t = time_point_t::rep;
|
|
|
|
using time_point_urep_t = std::make_unsigned_t<time_point_rep_t>;
|
|
|
|
|
|
|
|
static constexpr UInt64 EXPIRES_AT_MASK = std::numeric_limits<time_point_rep_t>::max();
|
|
|
|
static constexpr UInt64 IS_DEFAULT_MASK = ~EXPIRES_AT_MASK;
|
|
|
|
|
|
|
|
StringRef key;
|
|
|
|
decltype(StringRefHash{}(key)) hash;
|
|
|
|
/// Stores both expiration time and `is_default` flag in the most significant bit
|
|
|
|
time_point_urep_t data;
|
|
|
|
|
|
|
|
/// Sets expiration time, resets `is_default` flag to false
|
2018-12-10 15:25:45 +00:00
|
|
|
time_point_t expiresAt() const { return ext::safe_bit_cast<time_point_t>(data & EXPIRES_AT_MASK); }
|
|
|
|
void setExpiresAt(const time_point_t & t) { data = ext::safe_bit_cast<time_point_urep_t>(t); }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
bool isDefault() const { return (data & IS_DEFAULT_MASK) == IS_DEFAULT_MASK; }
|
|
|
|
void setDefault() { data |= IS_DEFAULT_MASK; }
|
2017-04-01 07:20:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Attribute final
|
|
|
|
{
|
|
|
|
AttributeUnderlyingType type;
|
2018-12-10 15:25:45 +00:00
|
|
|
std::variant<
|
|
|
|
UInt8,
|
|
|
|
UInt16,
|
|
|
|
UInt32,
|
|
|
|
UInt64,
|
|
|
|
UInt128,
|
|
|
|
Int8,
|
|
|
|
Int16,
|
|
|
|
Int32,
|
|
|
|
Int64,
|
|
|
|
Decimal32,
|
|
|
|
Decimal64,
|
|
|
|
Decimal128,
|
|
|
|
Float32,
|
|
|
|
Float64,
|
|
|
|
String>
|
|
|
|
null_values;
|
|
|
|
std::variant<
|
|
|
|
ContainerPtrType<UInt8>,
|
2017-07-27 20:39:40 +00:00
|
|
|
ContainerPtrType<UInt16>,
|
|
|
|
ContainerPtrType<UInt32>,
|
|
|
|
ContainerPtrType<UInt64>,
|
2017-11-14 00:08:54 +00:00
|
|
|
ContainerPtrType<UInt128>,
|
2017-07-27 20:39:40 +00:00
|
|
|
ContainerPtrType<Int8>,
|
|
|
|
ContainerPtrType<Int16>,
|
|
|
|
ContainerPtrType<Int32>,
|
|
|
|
ContainerPtrType<Int64>,
|
2018-10-08 19:45:17 +00:00
|
|
|
ContainerPtrType<Decimal32>,
|
|
|
|
ContainerPtrType<Decimal64>,
|
|
|
|
ContainerPtrType<Decimal128>,
|
2017-07-27 20:39:40 +00:00
|
|
|
ContainerPtrType<Float32>,
|
|
|
|
ContainerPtrType<Float64>,
|
|
|
|
ContainerPtrType<StringRef>>
|
|
|
|
arrays;
|
2017-04-01 07:20:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void createAttributes();
|
|
|
|
|
|
|
|
Attribute createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value);
|
|
|
|
|
|
|
|
template <typename AttributeType, typename OutputType, typename DefaultGetter>
|
|
|
|
void getItemsNumberImpl(
|
2017-07-27 20:39:40 +00:00
|
|
|
Attribute & attribute, const Columns & key_columns, PaddedPODArray<OutputType> & out, DefaultGetter && get_default) const
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
/// Mapping: <key> -> { all indices `i` of `key_columns` such that `key_columns[i]` = <key> }
|
|
|
|
MapType<std::vector<size_t>> outdated_keys;
|
|
|
|
auto & attribute_array = std::get<ContainerPtrType<AttributeType>>(attribute.arrays);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto rows_num = key_columns.front()->size();
|
2017-10-04 00:22:00 +00:00
|
|
|
const auto keys_size = dict_struct.key->size();
|
2017-07-27 20:39:40 +00:00
|
|
|
StringRefs keys(keys_size);
|
|
|
|
Arena temporary_keys_pool;
|
|
|
|
PODArray<StringRef> keys_array(rows_num);
|
|
|
|
|
|
|
|
size_t cache_expired = 0, cache_not_found = 0, cache_hit = 0;
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const ProfilingScopedReadRWLock read_lock{rw_lock, ProfileEvents::DictCacheLockReadNs};
|
|
|
|
|
|
|
|
const auto now = std::chrono::system_clock::now();
|
|
|
|
/// fetch up-to-date values, decide which ones require update
|
|
|
|
for (const auto row : ext::range(0, rows_num))
|
|
|
|
{
|
|
|
|
const StringRef key = placeKeysInPool(row, key_columns, keys, *dict_struct.key, temporary_keys_pool);
|
|
|
|
keys_array[row] = key;
|
|
|
|
const auto find_result = findCellIdx(key, now);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/** cell should be updated if either:
|
2017-07-27 19:05:55 +00:00
|
|
|
* 1. keys (or hash) do not match,
|
|
|
|
* 2. cell has expired,
|
|
|
|
* 3. explicit defaults were specified and cell was set default. */
|
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
if (!find_result.valid)
|
|
|
|
{
|
|
|
|
outdated_keys[key].push_back(row);
|
|
|
|
if (find_result.outdated)
|
|
|
|
++cache_expired;
|
|
|
|
else
|
|
|
|
++cache_not_found;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
else
|
2017-07-27 20:39:40 +00:00
|
|
|
{
|
|
|
|
++cache_hit;
|
|
|
|
const auto & cell_idx = find_result.cell_idx;
|
|
|
|
const auto & cell = cells[cell_idx];
|
2017-11-14 00:08:54 +00:00
|
|
|
out[row] = cell.isDefault() ? get_default(row) : static_cast<OutputType>(attribute_array[cell_idx]);
|
2017-07-27 20:39:40 +00:00
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-27 20:39:40 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysExpired, cache_expired);
|
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysNotFound, cache_not_found);
|
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysHit, cache_hit);
|
|
|
|
query_count.fetch_add(rows_num, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows_num - outdated_keys.size(), std::memory_order_release);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
if (outdated_keys.empty())
|
|
|
|
return;
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
std::vector<size_t> required_rows(outdated_keys.size());
|
|
|
|
std::transform(
|
2019-10-29 15:16:51 +00:00
|
|
|
std::begin(outdated_keys), std::end(outdated_keys), std::begin(required_rows), [](auto & pair) { return pair.getMapped().front(); });
|
2017-07-27 20:39:40 +00:00
|
|
|
|
|
|
|
/// request new values
|
2018-12-10 15:25:45 +00:00
|
|
|
update(
|
|
|
|
key_columns,
|
2017-07-27 20:39:40 +00:00
|
|
|
keys_array,
|
|
|
|
required_rows,
|
|
|
|
[&](const StringRef key, const size_t cell_idx)
|
|
|
|
{
|
|
|
|
for (const auto row : outdated_keys[key])
|
2017-11-14 00:08:54 +00:00
|
|
|
out[row] = static_cast<OutputType>(attribute_array[cell_idx]);
|
2017-07-27 20:39:40 +00:00
|
|
|
},
|
2017-12-01 21:13:25 +00:00
|
|
|
[&](const StringRef key, const size_t)
|
2017-07-27 20:39:40 +00:00
|
|
|
{
|
|
|
|
for (const auto row : outdated_keys[key])
|
|
|
|
out[row] = get_default(row);
|
|
|
|
});
|
2018-06-03 20:39:06 +00:00
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
template <typename DefaultGetter>
|
|
|
|
void getItemsString(Attribute & attribute, const Columns & key_columns, ColumnString * out, DefaultGetter && get_default) const
|
|
|
|
{
|
|
|
|
const auto rows_num = key_columns.front()->size();
|
|
|
|
/// save on some allocations
|
|
|
|
out->getOffsets().reserve(rows_num);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-10-04 00:22:00 +00:00
|
|
|
const auto keys_size = dict_struct.key->size();
|
2017-07-27 20:39:40 +00:00
|
|
|
StringRefs keys(keys_size);
|
|
|
|
Arena temporary_keys_pool;
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
auto & attribute_array = std::get<ContainerPtrType<StringRef>>(attribute.arrays);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
auto found_outdated_values = false;
|
|
|
|
|
|
|
|
/// perform optimistic version, fallback to pessimistic if failed
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const ProfilingScopedReadRWLock read_lock{rw_lock, ProfileEvents::DictCacheLockReadNs};
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
|
|
|
/// fetch up-to-date values, discard on fail
|
|
|
|
for (const auto row : ext::range(0, rows_num))
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const StringRef key = placeKeysInPool(row, key_columns, keys, *dict_struct.key, temporary_keys_pool);
|
|
|
|
SCOPE_EXIT(temporary_keys_pool.rollback(key.size));
|
|
|
|
const auto find_result = findCellIdx(key, now);
|
|
|
|
|
|
|
|
if (!find_result.valid)
|
|
|
|
{
|
|
|
|
found_outdated_values = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto & cell_idx = find_result.cell_idx;
|
|
|
|
const auto & cell = cells[cell_idx];
|
|
|
|
const auto string_ref = cell.isDefault() ? get_default(row) : attribute_array[cell_idx];
|
|
|
|
out->insertData(string_ref.data, string_ref.size);
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// optimistic code completed successfully
|
|
|
|
if (!found_outdated_values)
|
|
|
|
{
|
|
|
|
query_count.fetch_add(rows_num, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows_num, std::memory_order_release);
|
|
|
|
return;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// now onto the pessimistic one, discard possible partial results from the optimistic path
|
|
|
|
out->getChars().resize_assume_reserved(0);
|
|
|
|
out->getOffsets().resize_assume_reserved(0);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// Mapping: <key> -> { all indices `i` of `key_columns` such that `key_columns[i]` = <key> }
|
|
|
|
MapType<std::vector<size_t>> outdated_keys;
|
|
|
|
/// we are going to store every string separately
|
|
|
|
MapType<StringRef> map;
|
|
|
|
PODArray<StringRef> keys_array(rows_num);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
size_t total_length = 0;
|
|
|
|
size_t cache_expired = 0, cache_not_found = 0, cache_hit = 0;
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const ProfilingScopedReadRWLock read_lock{rw_lock, ProfileEvents::DictCacheLockReadNs};
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
|
|
|
for (const auto row : ext::range(0, rows_num))
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const StringRef key = placeKeysInPool(row, key_columns, keys, *dict_struct.key, temporary_keys_pool);
|
|
|
|
keys_array[row] = key;
|
|
|
|
const auto find_result = findCellIdx(key, now);
|
|
|
|
|
|
|
|
if (!find_result.valid)
|
|
|
|
{
|
|
|
|
outdated_keys[key].push_back(row);
|
|
|
|
if (find_result.outdated)
|
|
|
|
++cache_expired;
|
|
|
|
else
|
|
|
|
++cache_not_found;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
else
|
2017-07-27 20:39:40 +00:00
|
|
|
{
|
|
|
|
++cache_hit;
|
|
|
|
const auto & cell_idx = find_result.cell_idx;
|
|
|
|
const auto & cell = cells[cell_idx];
|
|
|
|
const auto string_ref = cell.isDefault() ? get_default(row) : attribute_array[cell_idx];
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
if (!cell.isDefault())
|
|
|
|
map[key] = copyIntoArena(string_ref, temporary_keys_pool);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
total_length += string_ref.size + 1;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-27 20:39:40 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysExpired, cache_expired);
|
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysNotFound, cache_not_found);
|
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysHit, cache_hit);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
query_count.fetch_add(rows_num, std::memory_order_relaxed);
|
|
|
|
hit_count.fetch_add(rows_num - outdated_keys.size(), std::memory_order_release);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// request new values
|
|
|
|
if (!outdated_keys.empty())
|
|
|
|
{
|
|
|
|
std::vector<size_t> required_rows(outdated_keys.size());
|
2018-01-10 00:04:08 +00:00
|
|
|
std::transform(std::begin(outdated_keys), std::end(outdated_keys), std::begin(required_rows), [](auto & pair)
|
|
|
|
{
|
2019-10-29 15:16:51 +00:00
|
|
|
return pair.getMapped().front();
|
2017-07-27 19:05:55 +00:00
|
|
|
});
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
update(
|
|
|
|
key_columns,
|
2017-07-27 20:39:40 +00:00
|
|
|
keys_array,
|
|
|
|
required_rows,
|
2018-01-10 00:04:08 +00:00
|
|
|
[&](const StringRef key, const size_t cell_idx)
|
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
const StringRef attribute_value = attribute_array[cell_idx];
|
|
|
|
|
|
|
|
/// We must copy key and value to own memory, because it may be replaced with another
|
|
|
|
/// in next iterations of inner loop of update.
|
|
|
|
const StringRef copied_key = copyIntoArena(key, temporary_keys_pool);
|
|
|
|
const StringRef copied_value = copyIntoArena(attribute_value, temporary_keys_pool);
|
|
|
|
|
|
|
|
map[copied_key] = copied_value;
|
|
|
|
total_length += (attribute_value.size + 1) * outdated_keys[key].size();
|
|
|
|
},
|
2018-01-10 00:04:08 +00:00
|
|
|
[&](const StringRef key, const size_t)
|
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
for (const auto row : outdated_keys[key])
|
|
|
|
total_length += get_default(row).size + 1;
|
|
|
|
});
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
out->getChars().reserve(total_length);
|
|
|
|
|
|
|
|
for (const auto row : ext::range(0, ext::size(keys_array)))
|
|
|
|
{
|
|
|
|
const StringRef key = keys_array[row];
|
|
|
|
const auto it = map.find(key);
|
2019-10-29 15:16:51 +00:00
|
|
|
const auto string_ref = it ? it->getMapped() : get_default(row);
|
2017-07-27 20:39:40 +00:00
|
|
|
out->insertData(string_ref.data, string_ref.size);
|
|
|
|
}
|
2018-06-03 20:39:06 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
template <typename PresentKeyHandler, typename AbsentKeyHandler>
|
2018-12-10 15:25:45 +00:00
|
|
|
void update(
|
|
|
|
const Columns & in_key_columns,
|
2017-07-27 20:39:40 +00:00
|
|
|
const PODArray<StringRef> & in_keys,
|
2017-07-21 06:35:58 +00:00
|
|
|
const std::vector<size_t> & in_requested_rows,
|
2017-05-25 20:09:48 +00:00
|
|
|
PresentKeyHandler && on_cell_updated,
|
2017-07-27 20:39:40 +00:00
|
|
|
AbsentKeyHandler && on_key_not_found) const
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
MapType<bool> remaining_keys{in_requested_rows.size()};
|
|
|
|
for (const auto row : in_requested_rows)
|
|
|
|
remaining_keys.insert({in_keys[row], false});
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
std::uniform_int_distribution<UInt64> distribution(dict_lifetime.min_sec, dict_lifetime.max_sec);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const ProfilingScopedWriteRWLock write_lock{rw_lock, ProfileEvents::DictCacheLockWriteNs};
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
Stopwatch watch;
|
|
|
|
auto stream = source_ptr->loadKeys(in_key_columns, in_requested_rows);
|
|
|
|
stream->readPrefix();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-10-04 00:22:00 +00:00
|
|
|
const auto keys_size = dict_struct.key->size();
|
2017-07-27 20:39:40 +00:00
|
|
|
StringRefs keys(keys_size);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto attributes_size = attributes.size();
|
|
|
|
const auto now = std::chrono::system_clock::now();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
while (const auto block = stream->read())
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
/// cache column pointers
|
|
|
|
const auto key_columns = ext::map<Columns>(
|
|
|
|
ext::range(0, keys_size), [&](const size_t attribute_idx) { return block.safeGetByPosition(attribute_idx).column; });
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
const auto attribute_columns = ext::map<Columns>(ext::range(0, attributes_size), [&](const size_t attribute_idx)
|
|
|
|
{
|
|
|
|
return block.safeGetByPosition(keys_size + attribute_idx).column;
|
|
|
|
});
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto rows_num = block.rows();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
for (const auto row : ext::range(0, rows_num))
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2017-07-27 20:39:40 +00:00
|
|
|
auto key = allocKey(row, key_columns, keys);
|
|
|
|
const auto hash = StringRefHash{}(key);
|
|
|
|
const auto find_result = findCellIdx(key, now, hash);
|
|
|
|
const auto & cell_idx = find_result.cell_idx;
|
|
|
|
auto & cell = cells[cell_idx];
|
|
|
|
|
|
|
|
for (const auto attribute_idx : ext::range(0, attributes.size()))
|
|
|
|
{
|
|
|
|
const auto & attribute_column = *attribute_columns[attribute_idx];
|
|
|
|
auto & attribute = attributes[attribute_idx];
|
|
|
|
|
|
|
|
setAttributeValue(attribute, cell_idx, attribute_column[row]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// if cell id is zero and zero does not map to this cell, then the cell is unused
|
|
|
|
if (cell.key == StringRef{} && cell_idx != zero_cell_idx)
|
|
|
|
element_count.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
|
|
|
/// handle memory allocated for old key
|
|
|
|
if (key == cell.key)
|
|
|
|
{
|
|
|
|
freeKey(key);
|
|
|
|
key = cell.key;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// new key is different from the old one
|
|
|
|
if (cell.key.data)
|
|
|
|
freeKey(cell.key);
|
|
|
|
|
|
|
|
cell.key = key;
|
|
|
|
}
|
|
|
|
|
|
|
|
cell.hash = hash;
|
|
|
|
|
|
|
|
if (dict_lifetime.min_sec != 0 && dict_lifetime.max_sec != 0)
|
|
|
|
cell.setExpiresAt(std::chrono::system_clock::now() + std::chrono::seconds{distribution(rnd_engine)});
|
|
|
|
else
|
|
|
|
cell.setExpiresAt(std::chrono::time_point<std::chrono::system_clock>::max());
|
|
|
|
|
|
|
|
/// inform caller
|
|
|
|
on_cell_updated(key, cell_idx);
|
|
|
|
/// mark corresponding id as found
|
|
|
|
remaining_keys[key] = true;
|
2017-07-27 19:05:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
stream->readSuffix();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequested, in_requested_rows.size());
|
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheRequestTimeNs, watch.elapsed());
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
size_t found_num = 0;
|
|
|
|
size_t not_found_num = 0;
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto now = std::chrono::system_clock::now();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// Check which ids have not been found and require setting null_value
|
2018-06-03 20:39:06 +00:00
|
|
|
for (const auto & key_found_pair : remaining_keys)
|
2017-07-27 19:05:55 +00:00
|
|
|
{
|
2019-10-29 15:16:51 +00:00
|
|
|
if (key_found_pair.getMapped())
|
2017-07-27 20:39:40 +00:00
|
|
|
{
|
|
|
|
++found_num;
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
++not_found_num;
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2019-10-29 15:16:51 +00:00
|
|
|
auto key = key_found_pair.getKey();
|
2017-07-27 20:39:40 +00:00
|
|
|
const auto hash = StringRefHash{}(key);
|
|
|
|
const auto find_result = findCellIdx(key, now, hash);
|
|
|
|
const auto & cell_idx = find_result.cell_idx;
|
|
|
|
auto & cell = cells[cell_idx];
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// Set null_value for each attribute
|
|
|
|
for (auto & attribute : attributes)
|
|
|
|
setDefaultAttributeValue(attribute, cell_idx);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// Check if cell had not been occupied before and increment element counter if it hadn't
|
|
|
|
if (cell.key == StringRef{} && cell_idx != zero_cell_idx)
|
|
|
|
element_count.fetch_add(1, std::memory_order_relaxed);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
if (key == cell.key)
|
|
|
|
key = cell.key;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (cell.key.data)
|
|
|
|
freeKey(cell.key);
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// copy key from temporary pool
|
|
|
|
key = copyKey(key);
|
|
|
|
cell.key = key;
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
cell.hash = hash;
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
if (dict_lifetime.min_sec != 0 && dict_lifetime.max_sec != 0)
|
|
|
|
cell.setExpiresAt(std::chrono::system_clock::now() + std::chrono::seconds{distribution(rnd_engine)});
|
|
|
|
else
|
|
|
|
cell.setExpiresAt(std::chrono::time_point<std::chrono::system_clock>::max());
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
cell.setDefault();
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
/// inform caller that the cell has not been found
|
|
|
|
on_key_not_found(key, cell_idx);
|
|
|
|
}
|
2017-07-27 19:05:55 +00:00
|
|
|
|
2020-02-28 00:07:00 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequestedFound, found_num);
|
2017-07-27 20:39:40 +00:00
|
|
|
ProfileEvents::increment(ProfileEvents::DictCacheKeysRequestedMiss, not_found_num);
|
2018-06-03 20:39:06 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
UInt64 getCellIdx(const StringRef key) const;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
void setDefaultAttributeValue(Attribute & attribute, const size_t idx) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
void setAttributeValue(Attribute & attribute, const size_t idx, const Field & value) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
Attribute & getAttribute(const std::string & attribute_name) const;
|
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
StringRef allocKey(const size_t row, const Columns & key_columns, StringRefs & keys) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
void freeKey(const StringRef key) const;
|
|
|
|
|
|
|
|
template <typename Arena>
|
2018-12-10 15:25:45 +00:00
|
|
|
static StringRef placeKeysInPool(
|
|
|
|
const size_t row,
|
2017-07-27 20:39:40 +00:00
|
|
|
const Columns & key_columns,
|
|
|
|
StringRefs & keys,
|
|
|
|
const std::vector<DictionaryAttribute> & key_attributes,
|
|
|
|
Arena & pool);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-27 20:39:40 +00:00
|
|
|
StringRef placeKeysInFixedSizePool(const size_t row, const Columns & key_columns) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
static StringRef copyIntoArena(StringRef src, Arena & arena);
|
|
|
|
StringRef copyKey(const StringRef key) const;
|
|
|
|
|
|
|
|
struct FindResult
|
|
|
|
{
|
|
|
|
const size_t cell_idx;
|
|
|
|
const bool valid;
|
|
|
|
const bool outdated;
|
|
|
|
};
|
|
|
|
|
|
|
|
FindResult findCellIdx(const StringRef & key, const CellMetadata::time_point_t now, const size_t hash) const;
|
|
|
|
FindResult findCellIdx(const StringRef & key, const CellMetadata::time_point_t now) const
|
|
|
|
{
|
|
|
|
const auto hash = StringRefHash{}(key);
|
|
|
|
return findCellIdx(key, now, hash);
|
2018-06-03 20:39:06 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-05-04 18:14:23 +00:00
|
|
|
bool isEmptyCell(const UInt64 idx) const;
|
|
|
|
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string database;
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string name;
|
2019-12-25 23:12:12 +00:00
|
|
|
const std::string full_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryStructure dict_struct;
|
|
|
|
const DictionarySourcePtr source_ptr;
|
|
|
|
const DictionaryLifetime dict_lifetime;
|
|
|
|
const std::string key_description{dict_struct.getKeyDescription()};
|
|
|
|
|
2017-07-28 17:34:02 +00:00
|
|
|
mutable std::shared_mutex rw_lock;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Actual size will be increased to match power of 2
|
2017-07-21 06:35:58 +00:00
|
|
|
const size_t size;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// all bits to 1 mask (size - 1) (0b1000 - 1 = 0b111)
|
2017-07-21 06:35:58 +00:00
|
|
|
const size_t size_overlap_mask;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Max tries to find cell, overlaped with mask: if size = 16 and start_cell=10: will try cells: 10,11,12,13,14,15,0,1,2,3
|
2017-07-21 06:35:58 +00:00
|
|
|
static constexpr size_t max_collision_length = 10;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
const UInt64 zero_cell_idx{getCellIdx(StringRef{})};
|
2017-07-21 06:35:58 +00:00
|
|
|
std::map<std::string, size_t> attribute_index_by_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
mutable std::vector<Attribute> attributes;
|
|
|
|
mutable std::vector<CellMetadata> cells{size};
|
|
|
|
const bool key_size_is_fixed{dict_struct.isKeySizeFixed()};
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t key_size{key_size_is_fixed ? dict_struct.getKeySize() : 0};
|
2017-07-27 20:39:40 +00:00
|
|
|
std::unique_ptr<ArenaWithFreeLists> keys_pool = key_size_is_fixed ? nullptr : std::make_unique<ArenaWithFreeLists>();
|
|
|
|
std::unique_ptr<SmallObjectPool> fixed_size_keys_pool = key_size_is_fixed ? std::make_unique<SmallObjectPool>(key_size) : nullptr;
|
2017-04-01 07:20:54 +00:00
|
|
|
std::unique_ptr<ArenaWithFreeLists> string_arena;
|
|
|
|
|
2017-09-09 23:17:38 +00:00
|
|
|
mutable pcg64 rnd_engine;
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
mutable size_t bytes_allocated = 0;
|
|
|
|
mutable std::atomic<size_t> element_count{0};
|
|
|
|
mutable std::atomic<size_t> hit_count{0};
|
|
|
|
mutable std::atomic<size_t> query_count{0};
|
2015-11-16 17:27:12 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::chrono::time_point<std::chrono::system_clock> creation_time = std::chrono::system_clock::now();
|
2015-11-16 17:27:12 +00:00
|
|
|
};
|
2018-06-03 20:39:06 +00:00
|
|
|
|
2015-11-16 17:27:12 +00:00
|
|
|
}
|