2018-11-28 11:37:12 +00:00
|
|
|
#include "FlatDictionary.h"
|
2021-01-10 21:15:55 +00:00
|
|
|
|
|
|
|
#include <Core/Defines.h>
|
2021-03-24 16:31:00 +00:00
|
|
|
#include <Common/HashTable/HashMap.h>
|
|
|
|
|
2021-01-10 21:15:55 +00:00
|
|
|
#include <DataTypes/DataTypesDecimal.h>
|
2018-06-05 19:46:49 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <Columns/ColumnsNumber.h>
|
2021-01-02 22:08:54 +00:00
|
|
|
#include <Columns/ColumnNullable.h>
|
2020-12-18 21:43:08 +00:00
|
|
|
#include <Functions/FunctionHelpers.h>
|
2021-01-10 21:15:55 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
#include <Dictionaries/DictionaryBlockInputStream.h>
|
|
|
|
#include <Dictionaries/DictionaryFactory.h>
|
|
|
|
#include <Dictionaries/HierarchyDictionariesUtils.h>
|
2016-06-07 21:07:44 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int ARGUMENT_OUT_OF_BOUND;
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
extern const int DICTIONARY_IS_EMPTY;
|
2018-11-28 11:37:12 +00:00
|
|
|
extern const int UNSUPPORTED_METHOD;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const auto initial_array_size = 1024;
|
|
|
|
static const auto max_array_size = 500000;
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
FlatDictionary::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_,
|
|
|
|
bool require_nonempty_,
|
|
|
|
BlockPtr saved_block_)
|
2020-07-14 18:46:29 +00:00
|
|
|
: IDictionary(dict_id_)
|
2019-08-03 11:02:40 +00:00
|
|
|
, dict_struct(dict_struct_)
|
|
|
|
, source_ptr{std::move(source_ptr_)}
|
|
|
|
, dict_lifetime(dict_lifetime_)
|
|
|
|
, require_nonempty(require_nonempty_)
|
2018-12-10 15:25:45 +00:00
|
|
|
, loaded_ids(initial_array_size, false)
|
2019-08-03 11:02:40 +00:00
|
|
|
, saved_block{std::move(saved_block_)}
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
createAttributes();
|
2019-07-17 08:39:36 +00:00
|
|
|
loadData();
|
|
|
|
calculateBytesAllocated();
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
ColumnPtr FlatDictionary::getColumn(
|
2021-01-21 14:42:50 +00:00
|
|
|
const std::string & attribute_name,
|
|
|
|
const DataTypePtr & result_type,
|
2020-12-19 13:24:51 +00:00
|
|
|
const Columns & key_columns,
|
2020-12-21 14:39:15 +00:00
|
|
|
const DataTypes &,
|
2021-02-16 21:33:02 +00:00
|
|
|
const ColumnPtr & default_values_column) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2020-12-18 21:43:08 +00:00
|
|
|
ColumnPtr result;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
PaddedPODArray<UInt64> backup_storage;
|
2021-01-23 13:18:24 +00:00
|
|
|
const auto & ids = getColumnVectorData(this, key_columns.front(), backup_storage);
|
2020-12-29 15:21:49 +00:00
|
|
|
|
2021-01-02 22:08:54 +00:00
|
|
|
auto size = ids.size();
|
|
|
|
|
2021-01-21 14:42:50 +00:00
|
|
|
const auto & dictionary_attribute = dict_struct.getAttribute(attribute_name, result_type);
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
size_t attribute_index = dict_struct.attribute_name_to_index.find(attribute_name)->second;
|
|
|
|
const auto & attribute = attributes[attribute_index];
|
|
|
|
|
2021-02-27 20:39:34 +00:00
|
|
|
auto type_call = [&](const auto & dictionary_attribute_type)
|
2020-12-18 21:43:08 +00:00
|
|
|
{
|
|
|
|
using Type = std::decay_t<decltype(dictionary_attribute_type)>;
|
|
|
|
using AttributeType = typename Type::AttributeType;
|
2021-01-23 13:18:24 +00:00
|
|
|
using ValueType = DictionaryValueType<AttributeType>;
|
|
|
|
using ColumnProvider = DictionaryAttributeColumnProvider<AttributeType>;
|
2021-01-23 16:47:33 +00:00
|
|
|
|
|
|
|
const auto attribute_null_value = std::get<ValueType>(attribute.null_values);
|
|
|
|
AttributeType null_value = static_cast<AttributeType>(attribute_null_value);
|
|
|
|
DictionaryDefaultValueExtractor<AttributeType> default_value_extractor(std::move(null_value), default_values_column);
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
auto column = ColumnProvider::getColumn(dictionary_attribute, size);
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
if constexpr (std::is_same_v<ValueType, StringRef>)
|
|
|
|
{
|
|
|
|
auto * out = column.get();
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
getItemsImpl<ValueType, ValueType>(
|
2021-01-22 14:54:51 +00:00
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
2021-01-23 13:18:24 +00:00
|
|
|
default_value_extractor);
|
2020-12-18 21:43:08 +00:00
|
|
|
}
|
2020-12-29 10:46:25 +00:00
|
|
|
else
|
2020-12-18 21:43:08 +00:00
|
|
|
{
|
2020-12-29 15:21:49 +00:00
|
|
|
auto & out = column->getData();
|
2020-12-18 21:43:08 +00:00
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
getItemsImpl<ValueType, ValueType>(
|
|
|
|
attribute,
|
2021-01-23 16:47:33 +00:00
|
|
|
ids,
|
2021-01-22 14:54:51 +00:00
|
|
|
[&](const size_t row, const auto value) { out[row] = value; },
|
2021-01-23 13:18:24 +00:00
|
|
|
default_value_extractor);
|
2020-12-18 21:43:08 +00:00
|
|
|
}
|
2021-01-23 13:18:24 +00:00
|
|
|
|
|
|
|
result = std::move(column);
|
2020-12-18 21:43:08 +00:00
|
|
|
};
|
2018-12-10 15:25:45 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
callOnDictionaryAttributeType(attribute.type, type_call);
|
2020-12-29 15:21:49 +00:00
|
|
|
|
2021-01-10 21:15:55 +00:00
|
|
|
if (attribute.nullable_set)
|
2021-01-02 22:08:54 +00:00
|
|
|
{
|
2021-01-21 14:42:50 +00:00
|
|
|
ColumnUInt8::MutablePtr col_null_map_to = ColumnUInt8::create(size, false);
|
2021-02-27 20:39:34 +00:00
|
|
|
ColumnUInt8::Container & vec_null_map_to = col_null_map_to->getData();
|
2021-01-21 14:42:50 +00:00
|
|
|
|
2021-01-02 22:08:54 +00:00
|
|
|
for (size_t row = 0; row < ids.size(); ++row)
|
|
|
|
{
|
|
|
|
auto id = ids[row];
|
2021-01-21 14:42:50 +00:00
|
|
|
|
2021-01-03 10:07:21 +00:00
|
|
|
if (attribute.nullable_set->find(id) != nullptr)
|
2021-01-21 14:42:50 +00:00
|
|
|
vec_null_map_to[row] = true;
|
2021-01-02 22:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
result = ColumnNullable::create(result, std::move(col_null_map_to));
|
|
|
|
}
|
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
return result;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2021-01-23 13:18:24 +00:00
|
|
|
ColumnUInt8::Ptr FlatDictionary::hasKeys(const Columns & key_columns, const DataTypes &) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2021-03-24 16:31:00 +00:00
|
|
|
PaddedPODArray<UInt64> backup_storage;
|
2021-01-23 13:18:24 +00:00
|
|
|
const auto& ids = getColumnVectorData(this, key_columns.front(), backup_storage);
|
2020-12-19 13:24:51 +00:00
|
|
|
|
|
|
|
auto result = ColumnUInt8::create(ext::size(ids));
|
|
|
|
auto& out = result->getData();
|
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
const auto ids_count = ext::size(ids);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
for (const auto i : ext::range(0, ids_count))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-12-18 21:43:08 +00:00
|
|
|
const auto id = ids[i];
|
|
|
|
out[i] = id < loaded_ids.size() && loaded_ids[id];
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2020-12-18 21:43:08 +00:00
|
|
|
|
|
|
|
query_count.fetch_add(ids_count, std::memory_order_relaxed);
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
return result;
|
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
ColumnPtr FlatDictionary::getHierarchy(ColumnPtr key_column, const DataTypePtr &) const
|
|
|
|
{
|
|
|
|
PaddedPODArray<UInt64> keys_backup_storage;
|
|
|
|
const auto & keys = getColumnVectorData(this, key_column, keys_backup_storage);
|
|
|
|
|
|
|
|
size_t hierarchical_attribute_index = *dict_struct.hierarchical_attribute_index;
|
|
|
|
const auto & hierarchical_attribute = attributes[hierarchical_attribute_index];
|
|
|
|
|
|
|
|
const UInt64 null_value = std::get<UInt64>(hierarchical_attribute.null_values);
|
|
|
|
const ContainerType<UInt64> & parent_keys = std::get<ContainerType<UInt64>>(hierarchical_attribute.arrays);
|
|
|
|
|
|
|
|
auto is_key_valid_func = [&, this](auto & key)
|
|
|
|
{
|
|
|
|
return key < loaded_ids.size() && loaded_ids[key];
|
|
|
|
};
|
|
|
|
|
|
|
|
auto get_parent_key_func = [&, this](auto & hierarchy_key)
|
|
|
|
{
|
|
|
|
std::optional<UInt64> result;
|
|
|
|
|
|
|
|
if (hierarchy_key >= loaded_ids.size() || !loaded_ids[hierarchy_key])
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = parent_keys[hierarchy_key];
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto dictionary_hierarchy_array = getKeysHierarchyArray(keys, null_value, is_key_valid_func, get_parent_key_func);
|
|
|
|
|
|
|
|
query_count.fetch_add(keys.size(), std::memory_order_relaxed);
|
|
|
|
|
|
|
|
return dictionary_hierarchy_array;
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnUInt8::Ptr FlatDictionary::isInHierarchy(
|
|
|
|
ColumnPtr key_column,
|
|
|
|
ColumnPtr in_key_column,
|
|
|
|
const DataTypePtr &) const
|
|
|
|
{
|
|
|
|
PaddedPODArray<UInt64> keys_backup_storage;
|
|
|
|
const auto & keys = getColumnVectorData(this, key_column, keys_backup_storage);
|
|
|
|
|
|
|
|
PaddedPODArray<UInt64> keys_in_backup_storage;
|
|
|
|
const auto & keys_in = getColumnVectorData(this, in_key_column, keys_in_backup_storage);
|
|
|
|
|
|
|
|
size_t hierarchical_attribute_index = *dict_struct.hierarchical_attribute_index;
|
|
|
|
const auto & hierarchical_attribute = attributes[hierarchical_attribute_index];
|
|
|
|
|
|
|
|
const UInt64 null_value = std::get<UInt64>(hierarchical_attribute.null_values);
|
|
|
|
const ContainerType<UInt64> & parent_keys = std::get<ContainerType<UInt64>>(hierarchical_attribute.arrays);
|
|
|
|
|
|
|
|
auto is_key_valid_func = [&, this](auto & key)
|
|
|
|
{
|
|
|
|
return key < loaded_ids.size() && loaded_ids[key];
|
|
|
|
};
|
|
|
|
|
|
|
|
auto get_parent_key_func = [&, this](auto & hierarchy_key)
|
|
|
|
{
|
|
|
|
std::optional<UInt64> result;
|
|
|
|
|
|
|
|
if (hierarchy_key >= loaded_ids.size() || !loaded_ids[hierarchy_key])
|
|
|
|
return result;
|
|
|
|
|
|
|
|
result = parent_keys[hierarchy_key];
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
2021-03-25 21:47:43 +00:00
|
|
|
auto result = getKeysIsInHierarchyColumn(keys, keys_in, null_value, is_key_valid_func, get_parent_key_func);
|
2021-03-24 16:31:00 +00:00
|
|
|
|
2021-03-25 13:23:19 +00:00
|
|
|
query_count.fetch_add(keys.size(), std::memory_order_relaxed);
|
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-03-25 07:31:12 +00:00
|
|
|
ColumnPtr FlatDictionary::getDescendants(
|
2021-03-24 19:55:06 +00:00
|
|
|
ColumnPtr key_column,
|
|
|
|
const DataTypePtr &,
|
|
|
|
size_t level) const
|
|
|
|
{
|
|
|
|
PaddedPODArray<UInt64> keys_backup;
|
|
|
|
const auto & keys = getColumnVectorData(this, key_column, keys_backup);
|
|
|
|
|
|
|
|
size_t hierarchical_attribute_index = *dict_struct.hierarchical_attribute_index;
|
|
|
|
const auto & hierarchical_attribute = attributes[hierarchical_attribute_index];
|
|
|
|
const ContainerType<UInt64> & parent_keys = std::get<ContainerType<UInt64>>(hierarchical_attribute.arrays);
|
|
|
|
|
2021-03-25 13:23:19 +00:00
|
|
|
HashMap<UInt64, PaddedPODArray<UInt64>> parent_to_child;
|
2021-03-24 19:55:06 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < parent_keys.size(); ++i)
|
|
|
|
{
|
|
|
|
auto parent_key = parent_keys[i];
|
|
|
|
|
2021-03-25 13:23:19 +00:00
|
|
|
if (loaded_ids[i])
|
|
|
|
parent_to_child[parent_key].emplace_back(static_cast<UInt64>(i));
|
2021-03-25 07:31:12 +00:00
|
|
|
}
|
|
|
|
|
2021-03-25 21:47:43 +00:00
|
|
|
auto result = getKeysDescendantsArray(keys, parent_to_child, level);
|
2021-03-24 19:55:06 +00:00
|
|
|
|
2021-03-25 13:23:19 +00:00
|
|
|
query_count.fetch_add(keys.size(), std::memory_order_relaxed);
|
2021-03-24 19:55:06 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
void FlatDictionary::createAttributes()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto size = dict_struct.attributes.size();
|
|
|
|
attributes.reserve(size);
|
|
|
|
|
|
|
|
for (const auto & attribute : dict_struct.attributes)
|
2021-01-02 22:08:54 +00:00
|
|
|
attributes.push_back(createAttribute(attribute, attribute.null_value));
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 01:57:55 +00:00
|
|
|
void FlatDictionary::blockToAttributes(const Block & block)
|
2018-02-15 13:08:23 +00:00
|
|
|
{
|
2018-09-06 02:24:35 +00:00
|
|
|
const IColumn & id_column = *block.safeGetByPosition(0).column;
|
2018-02-15 13:08:23 +00:00
|
|
|
element_count += id_column.size();
|
|
|
|
|
2018-09-06 02:24:35 +00:00
|
|
|
for (const size_t attribute_idx : ext::range(0, attributes.size()))
|
2018-02-15 13:08:23 +00:00
|
|
|
{
|
2018-09-06 02:24:35 +00:00
|
|
|
const IColumn & attribute_column = *block.safeGetByPosition(attribute_idx + 1).column;
|
|
|
|
Attribute & attribute = attributes[attribute_idx];
|
2018-02-15 13:08:23 +00:00
|
|
|
|
|
|
|
for (const auto row_idx : ext::range(0, id_column.size()))
|
|
|
|
setAttributeValue(attribute, id_column[row_idx].get<UInt64>(), attribute_column[row_idx]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 12:44:39 +00:00
|
|
|
void FlatDictionary::updateData()
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
if (!saved_block || saved_block->rows() == 0)
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
auto stream = source_ptr->loadUpdatedAll();
|
2018-01-15 12:44:39 +00:00
|
|
|
stream->readPrefix();
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-01-15 12:44:39 +00:00
|
|
|
while (const auto block = stream->read())
|
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
/// We are using this to keep saved data if input stream consists of multiple blocks
|
2018-01-15 12:44:39 +00:00
|
|
|
if (!saved_block)
|
|
|
|
saved_block = std::make_shared<DB::Block>(block.cloneEmpty());
|
|
|
|
for (const auto attribute_idx : ext::range(0, attributes.size() + 1))
|
|
|
|
{
|
|
|
|
const IColumn & update_column = *block.getByPosition(attribute_idx).column.get();
|
2018-03-20 10:58:16 +00:00
|
|
|
MutableColumnPtr saved_column = saved_block->getByPosition(attribute_idx).column->assumeMutable();
|
2018-01-15 12:44:39 +00:00
|
|
|
saved_column->insertRangeFrom(update_column, 0, update_column.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stream->readSuffix();
|
|
|
|
}
|
|
|
|
else
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
auto stream = source_ptr->loadUpdatedAll();
|
2018-01-15 12:44:39 +00:00
|
|
|
stream->readPrefix();
|
|
|
|
|
2018-09-09 02:23:24 +00:00
|
|
|
while (Block block = stream->read())
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2018-12-10 15:25:45 +00:00
|
|
|
const auto & saved_id_column = *saved_block->safeGetByPosition(0).column;
|
|
|
|
const auto & update_id_column = *block.safeGetByPosition(0).column;
|
2018-01-15 12:44:39 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
std::unordered_map<UInt64, std::vector<size_t>> update_ids;
|
2018-02-15 13:08:23 +00:00
|
|
|
for (size_t row = 0; row < update_id_column.size(); ++row)
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
const auto id = update_id_column.get64(row);
|
|
|
|
update_ids[id].push_back(row);
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
const size_t saved_rows = saved_id_column.size();
|
|
|
|
IColumn::Filter filter(saved_rows);
|
2021-03-24 16:31:00 +00:00
|
|
|
std::unordered_map<UInt64, std::vector<size_t>>::iterator it;
|
2018-02-15 13:08:23 +00:00
|
|
|
|
|
|
|
for (size_t row = 0; row < saved_id_column.size(); ++row)
|
|
|
|
{
|
|
|
|
auto id = saved_id_column.get64(row);
|
|
|
|
it = update_ids.find(id);
|
2018-01-15 12:44:39 +00:00
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
if (it != update_ids.end())
|
|
|
|
filter[row] = 0;
|
2018-01-15 12:44:39 +00:00
|
|
|
else
|
2018-02-15 13:08:23 +00:00
|
|
|
filter[row] = 1;
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
2018-02-15 13:08:23 +00:00
|
|
|
|
|
|
|
auto block_columns = block.mutateColumns();
|
|
|
|
for (const auto attribute_idx : ext::range(0, attributes.size() + 1))
|
2018-01-15 12:44:39 +00:00
|
|
|
{
|
2018-02-15 13:08:23 +00:00
|
|
|
auto & column = saved_block->safeGetByPosition(attribute_idx).column;
|
|
|
|
const auto & filtered_column = column->filter(filter, -1);
|
|
|
|
|
|
|
|
block_columns[attribute_idx]->insertRangeFrom(*filtered_column.get(), 0, filtered_column->size());
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
2018-02-15 13:08:23 +00:00
|
|
|
|
|
|
|
saved_block->setColumns(std::move(block_columns));
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
stream->readSuffix();
|
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-01-15 12:44:39 +00:00
|
|
|
if (saved_block)
|
2018-02-15 13:08:23 +00:00
|
|
|
blockToAttributes(*saved_block.get());
|
2018-01-15 12:44:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FlatDictionary::loadData()
|
|
|
|
{
|
2018-05-07 02:01:11 +00:00
|
|
|
if (!source_ptr->hasUpdateField())
|
|
|
|
{
|
2018-01-15 12:44:39 +00:00
|
|
|
auto stream = source_ptr->loadAll();
|
|
|
|
stream->readPrefix();
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
while (const auto block = stream->read())
|
|
|
|
blockToAttributes(block);
|
2018-01-15 12:44:39 +00:00
|
|
|
|
|
|
|
stream->readSuffix();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
updateData();
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (require_nonempty && 0 == element_count)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": dictionary source is empty and 'require_nonempty' property is set.", ErrorCodes::DICTIONARY_IS_EMPTY};
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2016-08-07 09:09:18 +00:00
|
|
|
void FlatDictionary::addAttributeSize(const Attribute & attribute)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
const auto & array_ref = std::get<ContainerType<T>>(attribute.arrays);
|
|
|
|
bytes_allocated += sizeof(PaddedPODArray<T>) + array_ref.allocated_bytes();
|
|
|
|
bucket_count = array_ref.capacity();
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
template <>
|
|
|
|
void FlatDictionary::addAttributeSize<String>(const Attribute & attribute)
|
|
|
|
{
|
|
|
|
const auto & array_ref = std::get<ContainerType<StringRef>>(attribute.arrays);
|
|
|
|
bytes_allocated += sizeof(PaddedPODArray<StringRef>) + array_ref.allocated_bytes();
|
|
|
|
bytes_allocated += sizeof(Arena) + attribute.string_arena->size();
|
|
|
|
bucket_count = array_ref.capacity();
|
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
|
|
|
void FlatDictionary::calculateBytesAllocated()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
bytes_allocated += attributes.size() * sizeof(attributes.front());
|
|
|
|
|
|
|
|
for (const auto & attribute : attributes)
|
|
|
|
{
|
2020-12-18 21:43:08 +00:00
|
|
|
auto type_call = [&](const auto & dictionary_attribute_type)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-12-18 21:43:08 +00:00
|
|
|
using Type = std::decay_t<decltype(dictionary_attribute_type)>;
|
|
|
|
using AttributeType = typename Type::AttributeType;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
addAttributeSize<AttributeType>(attribute);
|
|
|
|
};
|
|
|
|
|
|
|
|
callOnDictionaryAttributeType(attribute.type, type_call);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2016-08-07 09:09:18 +00:00
|
|
|
void FlatDictionary::createAttributeImpl(Attribute & attribute, const Field & null_value)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2021-03-22 20:23:44 +00:00
|
|
|
attribute.null_values = T(null_value.get<T>());
|
2018-11-13 18:41:07 +00:00
|
|
|
const auto & null_value_ref = std::get<T>(attribute.null_values);
|
2018-11-13 19:43:17 +00:00
|
|
|
attribute.arrays.emplace<ContainerType<T>>(initial_array_size, null_value_ref);
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 22:21:48 +00:00
|
|
|
template <>
|
|
|
|
void FlatDictionary::createAttributeImpl<String>(Attribute & attribute, const Field & null_value)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
attribute.string_arena = std::make_unique<Arena>();
|
2018-11-13 19:43:17 +00:00
|
|
|
const String & string = null_value.get<String>();
|
2018-11-14 01:04:09 +00:00
|
|
|
const char * string_in_arena = attribute.string_arena->insert(string.data(), string.size());
|
|
|
|
attribute.null_values.emplace<StringRef>(string_in_arena, string.size());
|
|
|
|
attribute.arrays.emplace<ContainerType<StringRef>>(initial_array_size, StringRef(string_in_arena, string.size()));
|
2016-08-24 22:21:48 +00:00
|
|
|
}
|
|
|
|
|
2021-01-02 22:08:54 +00:00
|
|
|
FlatDictionary::Attribute FlatDictionary::createAttribute(const DictionaryAttribute& attribute, const Field & null_value)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2021-01-10 21:15:55 +00:00
|
|
|
auto nullable_set = attribute.is_nullable ? std::make_optional<NullableSet>() : std::optional<NullableSet>{};
|
|
|
|
Attribute attr{attribute.underlying_type, std::move(nullable_set), {}, {}, {}};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
auto type_call = [&](const auto &dictionary_attribute_type)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-12-18 21:43:08 +00:00
|
|
|
using Type = std::decay_t<decltype(dictionary_attribute_type)>;
|
2020-12-20 20:11:28 +00:00
|
|
|
using AttributeType = typename Type::AttributeType;
|
2021-01-02 22:08:54 +00:00
|
|
|
|
2020-12-20 20:11:28 +00:00
|
|
|
createAttributeImpl<AttributeType>(attr, null_value);
|
2020-12-18 21:43:08 +00:00
|
|
|
};
|
|
|
|
|
2021-01-02 22:08:54 +00:00
|
|
|
callOnDictionaryAttributeType(attribute.underlying_type, type_call);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return attr;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-23 16:47:33 +00:00
|
|
|
template <typename AttributeType, typename OutputType, typename ValueSetter, typename DefaultValueExtractor>
|
2016-06-07 21:07:44 +00:00
|
|
|
void FlatDictionary::getItemsImpl(
|
2021-01-22 14:54:51 +00:00
|
|
|
const Attribute & attribute,
|
2021-03-24 16:31:00 +00:00
|
|
|
const PaddedPODArray<UInt64> & ids,
|
2021-01-22 14:54:51 +00:00
|
|
|
ValueSetter && set_value,
|
2021-01-23 16:47:33 +00:00
|
|
|
DefaultValueExtractor & default_value_extractor) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
const auto & attr = std::get<ContainerType<AttributeType>>(attribute.arrays);
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto rows = ext::size(ids);
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto row : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
const auto id = ids[row];
|
2021-01-22 14:54:51 +00:00
|
|
|
set_value(row, id < ext::size(attr) && loaded_ids[id] ? static_cast<OutputType>(attr[id]) : default_value_extractor[row]);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2021-03-24 16:31:00 +00:00
|
|
|
void FlatDictionary::resize(Attribute & attribute, const UInt64 id)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (id >= max_array_size)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": identifier should be less than " + toString(max_array_size), ErrorCodes::ARGUMENT_OUT_OF_BOUND};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-11-13 19:43:17 +00:00
|
|
|
auto & array = std::get<ContainerType<T>>(attribute.arrays);
|
2017-04-01 07:20:54 +00:00
|
|
|
if (id >= array.size())
|
|
|
|
{
|
|
|
|
const size_t elements_count = id + 1; //id=0 -> elements_count=1
|
|
|
|
loaded_ids.resize(elements_count, false);
|
|
|
|
array.resize_fill(elements_count, std::get<T>(attribute.null_values));
|
|
|
|
}
|
2016-08-24 22:21:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2021-03-24 16:31:00 +00:00
|
|
|
void FlatDictionary::setAttributeValueImpl(Attribute & attribute, const UInt64 id, const T & value)
|
2016-08-24 22:21:48 +00:00
|
|
|
{
|
2018-11-13 19:43:17 +00:00
|
|
|
auto & array = std::get<ContainerType<T>>(attribute.arrays);
|
2017-04-01 07:20:54 +00:00
|
|
|
array[id] = value;
|
|
|
|
loaded_ids[id] = true;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 22:21:48 +00:00
|
|
|
template <>
|
2021-03-24 16:31:00 +00:00
|
|
|
void FlatDictionary::setAttributeValueImpl<String>(Attribute & attribute, const UInt64 id, const String & value)
|
2016-08-24 22:21:48 +00:00
|
|
|
{
|
2020-04-22 07:03:43 +00:00
|
|
|
const auto * string_in_arena = attribute.string_arena->insert(value.data(), value.size());
|
2021-01-09 21:23:59 +00:00
|
|
|
setAttributeValueImpl(attribute, id, StringRef{string_in_arena, value.size()});
|
2016-08-24 22:21:48 +00:00
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
void FlatDictionary::setAttributeValue(Attribute & attribute, const UInt64 id, const Field & value)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2021-01-02 22:08:54 +00:00
|
|
|
auto type_call = [&](const auto &dictionary_attribute_type)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2021-01-02 22:08:54 +00:00
|
|
|
using Type = std::decay_t<decltype(dictionary_attribute_type)>;
|
|
|
|
using AttributeType = typename Type::AttributeType;
|
2021-01-09 21:23:59 +00:00
|
|
|
using ResizeType = std::conditional_t<std::is_same_v<AttributeType, String>, StringRef, AttributeType>;
|
|
|
|
|
|
|
|
resize<ResizeType>(attribute, id);
|
2021-01-02 22:08:54 +00:00
|
|
|
|
2021-01-10 21:15:55 +00:00
|
|
|
if (attribute.nullable_set)
|
2021-01-02 22:08:54 +00:00
|
|
|
{
|
|
|
|
if (value.isNull())
|
|
|
|
{
|
|
|
|
attribute.nullable_set->insert(id);
|
|
|
|
loaded_ids[id] = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-03 10:07:21 +00:00
|
|
|
attribute.nullable_set->erase(id);
|
2021-01-02 22:08:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 20:23:44 +00:00
|
|
|
setAttributeValueImpl<AttributeType>(attribute, id, value.get<AttributeType>());
|
2021-01-02 22:08:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
callOnDictionaryAttributeType(attribute.type, type_call);
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
PaddedPODArray<UInt64> FlatDictionary::getIds() const
|
2017-04-28 18:33:31 +00:00
|
|
|
{
|
|
|
|
const auto ids_count = ext::size(loaded_ids);
|
|
|
|
|
2021-03-24 16:31:00 +00:00
|
|
|
PaddedPODArray<UInt64> ids;
|
2021-01-09 21:23:59 +00:00
|
|
|
ids.reserve(ids_count);
|
|
|
|
|
2017-04-28 18:33:31 +00:00
|
|
|
for (auto idx : ext::range(0, ids_count))
|
2018-01-10 00:04:08 +00:00
|
|
|
if (loaded_ids[idx])
|
2017-04-28 18:33:31 +00:00
|
|
|
ids.push_back(idx);
|
|
|
|
return ids;
|
|
|
|
}
|
|
|
|
|
2019-02-18 18:51:46 +00:00
|
|
|
BlockInputStreamPtr FlatDictionary::getBlockInputStream(const Names & column_names, size_t max_block_size) const
|
2017-04-28 18:33:31 +00:00
|
|
|
{
|
2021-03-24 16:31:00 +00:00
|
|
|
return std::make_shared<DictionaryBlockInputStream>(shared_from_this(), max_block_size, getIds(), column_names);
|
2017-04-28 18:33:31 +00:00
|
|
|
}
|
|
|
|
|
2018-11-28 11:37:12 +00:00
|
|
|
void registerDictionaryFlat(DictionaryFactory & factory)
|
|
|
|
{
|
2019-12-25 23:12:12 +00:00
|
|
|
auto create_layout = [=](const std::string & full_name,
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryStructure & dict_struct,
|
|
|
|
const Poco::Util::AbstractConfiguration & config,
|
|
|
|
const std::string & config_prefix,
|
2018-12-10 15:50:58 +00:00
|
|
|
DictionarySourcePtr source_ptr) -> DictionaryPtr
|
|
|
|
{
|
2018-11-28 11:37:12 +00:00
|
|
|
if (dict_struct.key)
|
2018-12-10 15:25:45 +00:00
|
|
|
throw Exception{"'key' is not supported for dictionary of layout 'flat'", ErrorCodes::UNSUPPORTED_METHOD};
|
2018-11-28 11:37:12 +00:00
|
|
|
|
|
|
|
if (dict_struct.range_min || dict_struct.range_max)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name
|
2018-12-10 15:25:45 +00:00
|
|
|
+ ": elements .structure.range_min and .structure.range_max should be defined only "
|
|
|
|
"for a dictionary of layout 'range_hashed'",
|
|
|
|
ErrorCodes::BAD_ARGUMENTS};
|
2019-12-25 23:12:12 +00:00
|
|
|
|
2020-07-14 19:19:17 +00:00
|
|
|
const auto dict_id = StorageID::fromDictionaryConfig(config, config_prefix);
|
2018-12-10 15:25:45 +00:00
|
|
|
const DictionaryLifetime dict_lifetime{config, config_prefix + ".lifetime"};
|
2018-11-28 11:37:12 +00:00
|
|
|
const bool require_nonempty = config.getBool(config_prefix + ".require_nonempty", false);
|
2020-07-14 19:19:17 +00:00
|
|
|
return std::make_unique<FlatDictionary>(dict_id, dict_struct, std::move(source_ptr), dict_lifetime, require_nonempty);
|
2018-11-28 11:37:12 +00:00
|
|
|
};
|
2019-10-21 16:05:45 +00:00
|
|
|
factory.registerLayout("flat", create_layout, false);
|
2018-11-28 11:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|