2015-01-21 11:39:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#include <atomic>
|
|
|
|
#include <variant>
|
|
|
|
#include <vector>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <optional>
|
2021-01-10 21:15:55 +00:00
|
|
|
|
2021-01-03 10:07:21 +00:00
|
|
|
#include <Common/HashTable/HashSet.h>
|
2021-01-10 21:15:55 +00:00
|
|
|
#include <Common/Arena.h>
|
2018-10-08 19:45:17 +00:00
|
|
|
#include <Columns/ColumnDecimal.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnString.h>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <DataTypes/IDataType.h>
|
2019-05-17 14:34:25 +00:00
|
|
|
#include <Core/Block.h>
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/range.h>
|
|
|
|
#include <ext/size.h>
|
2021-01-10 21:15:55 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionaryStructure.h"
|
|
|
|
#include "IDictionary.h"
|
|
|
|
#include "IDictionarySource.h"
|
2021-01-23 13:18:24 +00:00
|
|
|
#include "DictionaryHelpers.h"
|
2015-11-19 13:15:02 +00:00
|
|
|
|
2015-01-21 11:39:48 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2021-01-22 14:54:51 +00:00
|
|
|
|
2015-01-26 15:27:51 +00:00
|
|
|
class FlatDictionary final : public IDictionary
|
2015-01-21 11:39:48 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-04-04 13:30:01 +00:00
|
|
|
struct Configuration
|
|
|
|
{
|
|
|
|
size_t initial_array_size;
|
|
|
|
size_t max_array_size;
|
|
|
|
bool require_nonempty;
|
|
|
|
};
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
FlatDictionary(
|
2020-07-14 18:46:29 +00:00
|
|
|
const StorageID & dict_id_,
|
2019-08-03 11:02:40 +00:00
|
|
|
const DictionaryStructure & dict_struct_,
|
|
|
|
DictionarySourcePtr source_ptr_,
|
|
|
|
const DictionaryLifetime dict_lifetime_,
|
2021-04-04 13:30:01 +00:00
|
|
|
Configuration configuration_,
|
2021-04-30 22:23:22 +00:00
|
|
|
BlockPtr update_field_loaded_block_ = nullptr);
|
2015-01-22 14:32:38 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getTypeName() const override { return "Flat"; }
|
2015-01-29 14:46:15 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getBytesAllocated() const override { return bytes_allocated; }
|
2015-03-24 11:30:16 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getQueryCount() const override { return query_count.load(std::memory_order_relaxed); }
|
2015-05-08 12:31:00 +00:00
|
|
|
|
2021-05-05 07:56:21 +00:00
|
|
|
double getFoundRate() const override
|
|
|
|
{
|
|
|
|
size_t queries = query_count.load(std::memory_order_relaxed);
|
|
|
|
if (!queries)
|
|
|
|
return 0;
|
|
|
|
return static_cast<double>(found_count.load(std::memory_order_relaxed)) / queries;
|
|
|
|
}
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
double getHitRate() const override { return 1.0; }
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t getElementCount() const override { return element_count; }
|
2015-03-24 17:02:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
double getLoadFactor() const override { return static_cast<double>(element_count) / bucket_count; }
|
2015-03-24 17:02:56 +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
|
|
|
{
|
2021-04-30 22:23:22 +00:00
|
|
|
return std::make_shared<FlatDictionary>(getDictionaryID(), dict_struct, source_ptr->clone(), dict_lifetime, configuration, update_field_loaded_block);
|
2019-01-19 23:27:52 +00:00
|
|
|
}
|
2015-01-30 13:43:16 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const IDictionarySource * getSource() const override { return source_ptr.get(); }
|
2015-01-29 15:47:21 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryLifetime & getLifetime() const override { return dict_lifetime; }
|
2015-01-30 15:18:13 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryStructure & getStructure() const override { return dict_struct; }
|
2015-03-24 13:59:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool isInjective(const std::string & attribute_name) const override
|
|
|
|
{
|
2021-03-24 16:31:00 +00:00
|
|
|
return dict_struct.getAttribute(attribute_name).injective;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-05-13 16:11:07 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
DictionaryKeyType getKeyType() const override { return DictionaryKeyType::simple; }
|
2018-10-08 19:45:17 +00:00
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
ColumnPtr getColumn(
|
|
|
|
const std::string& attribute_name,
|
|
|
|
const DataTypePtr & result_type,
|
|
|
|
const Columns & key_columns,
|
|
|
|
const DataTypes & key_types,
|
2021-02-16 21:33:02 +00:00
|
|
|
const ColumnPtr & default_values_column) const override;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
ColumnUInt8::Ptr hasKeys(const Columns & key_columns, const DataTypes & key_types) const override;
|
2015-01-28 13:20:20 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
bool hasHierarchy() const override { return dict_struct.hierarchical_attribute_index.has_value(); }
|
|
|
|
|
|
|
|
ColumnPtr getHierarchy(ColumnPtr key_column, const DataTypePtr & key_type) const override;
|
|
|
|
|
|
|
|
ColumnUInt8::Ptr isInHierarchy(
|
|
|
|
ColumnPtr key_column,
|
|
|
|
ColumnPtr in_key_column,
|
|
|
|
const DataTypePtr & key_type) const override;
|
|
|
|
|
2021-03-25 07:31:12 +00:00
|
|
|
ColumnPtr getDescendants(
|
2021-03-24 19:55:06 +00:00
|
|
|
ColumnPtr key_column,
|
|
|
|
const DataTypePtr & key_type,
|
|
|
|
size_t level) const override;
|
|
|
|
|
2019-02-18 18:51:46 +00:00
|
|
|
BlockInputStreamPtr getBlockInputStream(const Names & column_names, size_t max_block_size) const override;
|
2017-04-28 18:33:31 +00:00
|
|
|
|
2015-01-30 13:43:16 +00:00
|
|
|
private:
|
2018-12-10 15:25:45 +00:00
|
|
|
template <typename Value>
|
2021-06-09 10:43:40 +00:00
|
|
|
using ContainerType = std::conditional_t<std::is_same_v<Value, Array>, std::vector<Value>, PaddedPODArray<Value>>;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
using NullableSet = HashSet<UInt64, DefaultHash<UInt64>>;
|
2021-01-02 22:08:54 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
struct Attribute final
|
|
|
|
{
|
|
|
|
AttributeUnderlyingType type;
|
2021-01-10 21:15:55 +00:00
|
|
|
std::optional<NullableSet> nullable_set;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2018-11-11 19:29:52 +00:00
|
|
|
std::variant<
|
2018-12-10 15:25:45 +00:00
|
|
|
UInt8,
|
|
|
|
UInt16,
|
|
|
|
UInt32,
|
|
|
|
UInt64,
|
2017-11-14 00:08:54 +00:00
|
|
|
UInt128,
|
2021-05-08 19:01:59 +00:00
|
|
|
UInt256,
|
2018-12-10 15:25:45 +00:00
|
|
|
Int8,
|
|
|
|
Int16,
|
|
|
|
Int32,
|
|
|
|
Int64,
|
2021-05-08 19:01:59 +00:00
|
|
|
Int128,
|
|
|
|
Int256,
|
2018-12-10 15:25:45 +00:00
|
|
|
Decimal32,
|
|
|
|
Decimal64,
|
|
|
|
Decimal128,
|
2021-04-10 16:53:21 +00:00
|
|
|
Decimal256,
|
2018-12-10 15:25:45 +00:00
|
|
|
Float32,
|
|
|
|
Float64,
|
2021-05-08 19:01:59 +00:00
|
|
|
UUID,
|
2021-06-09 10:43:40 +00:00
|
|
|
StringRef,
|
|
|
|
Array>
|
2018-12-10 15:25:45 +00:00
|
|
|
null_values;
|
2021-06-09 10:43:40 +00:00
|
|
|
|
2018-11-11 19:29:52 +00:00
|
|
|
std::variant<
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<UInt8>,
|
|
|
|
ContainerType<UInt16>,
|
|
|
|
ContainerType<UInt32>,
|
|
|
|
ContainerType<UInt64>,
|
2018-11-13 19:43:17 +00:00
|
|
|
ContainerType<UInt128>,
|
2021-05-08 19:01:59 +00:00
|
|
|
ContainerType<UInt256>,
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<Int8>,
|
|
|
|
ContainerType<Int16>,
|
|
|
|
ContainerType<Int32>,
|
|
|
|
ContainerType<Int64>,
|
2021-05-08 19:01:59 +00:00
|
|
|
ContainerType<Int128>,
|
|
|
|
ContainerType<Int256>,
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<Decimal32>,
|
|
|
|
ContainerType<Decimal64>,
|
|
|
|
ContainerType<Decimal128>,
|
2021-04-10 16:53:21 +00:00
|
|
|
ContainerType<Decimal256>,
|
2018-12-10 15:25:45 +00:00
|
|
|
ContainerType<Float32>,
|
|
|
|
ContainerType<Float64>,
|
2021-05-08 19:01:59 +00:00
|
|
|
ContainerType<UUID>,
|
2021-06-09 10:43:40 +00:00
|
|
|
ContainerType<StringRef>,
|
|
|
|
ContainerType<Array>>
|
2021-04-02 20:16:04 +00:00
|
|
|
container;
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::unique_ptr<Arena> string_arena;
|
|
|
|
};
|
|
|
|
|
|
|
|
void createAttributes();
|
2018-02-15 13:08:23 +00:00
|
|
|
void blockToAttributes(const Block & block);
|
2018-01-15 12:44:39 +00:00
|
|
|
void updateData();
|
2017-04-01 07:20:54 +00:00
|
|
|
void loadData();
|
|
|
|
|
|
|
|
void calculateBytesAllocated();
|
|
|
|
|
2021-04-04 13:30:01 +00:00
|
|
|
Attribute createAttribute(const DictionaryAttribute& attribute, const Field & null_value);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-06-09 10:43:40 +00:00
|
|
|
template <typename AttributeType, typename ValueSetter, typename DefaultValueExtractor>
|
2017-04-01 07:20:54 +00:00
|
|
|
void getItemsImpl(
|
2021-01-23 13:18:24 +00:00
|
|
|
const Attribute & attribute,
|
2021-04-02 20:16:04 +00:00
|
|
|
const PaddedPODArray<UInt64> & keys,
|
2021-01-23 13:18:24 +00:00
|
|
|
ValueSetter && set_value,
|
2021-01-23 16:47:33 +00:00
|
|
|
DefaultValueExtractor & default_value_extractor) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2021-04-02 20:16:04 +00:00
|
|
|
void resize(Attribute & attribute, UInt64 key);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2021-04-02 20:16:04 +00:00
|
|
|
void setAttributeValueImpl(Attribute & attribute, UInt64 key, const T & value);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-04-02 20:16:04 +00:00
|
|
|
void setAttributeValue(Attribute & attribute, UInt64 key, const Field & value);
|
2017-04-27 17:16:24 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const DictionaryStructure dict_struct;
|
|
|
|
const DictionarySourcePtr source_ptr;
|
|
|
|
const DictionaryLifetime dict_lifetime;
|
2021-04-04 13:30:01 +00:00
|
|
|
const Configuration configuration;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
std::vector<Attribute> attributes;
|
2021-04-02 20:16:04 +00:00
|
|
|
std::vector<bool> loaded_keys;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t bytes_allocated = 0;
|
|
|
|
size_t element_count = 0;
|
|
|
|
size_t bucket_count = 0;
|
|
|
|
mutable std::atomic<size_t> query_count{0};
|
2021-05-05 07:56:21 +00:00
|
|
|
mutable std::atomic<size_t> found_count{0};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-04-30 22:23:22 +00:00
|
|
|
BlockPtr update_field_loaded_block;
|
2015-01-21 11:39:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|