2018-11-28 11:37:12 +00:00
|
|
|
#include "FlatDictionary.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>
|
|
|
|
#include <Functions/FunctionHelpers.h>
|
2018-12-10 15:25:45 +00:00
|
|
|
#include "DictionaryBlockInputStream.h"
|
2018-11-28 11:37:12 +00:00
|
|
|
#include "DictionaryFactory.h"
|
2020-04-20 02:31:21 +00:00
|
|
|
#include <Core/Defines.h>
|
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int TYPE_MISMATCH;
|
|
|
|
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;
|
2020-12-18 21:43:08 +00:00
|
|
|
extern const int ILLEGAL_COLUMN;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
void FlatDictionary::toParent(const PaddedPODArray<Key> & ids, PaddedPODArray<Key> & out) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto null_value = std::get<UInt64>(hierarchical_attribute->null_values);
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2019-05-28 19:30:01 +00:00
|
|
|
getItemsImpl<UInt64, UInt64>(
|
2018-12-10 15:25:45 +00:00
|
|
|
*hierarchical_attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const UInt64 value) { out[row] = value; },
|
|
|
|
[&](const size_t) { return null_value; });
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2016-12-12 21:37:57 +00:00
|
|
|
|
|
|
|
/// Allow to use single value in same way as array.
|
2018-12-10 15:25:45 +00:00
|
|
|
static inline FlatDictionary::Key getAt(const PaddedPODArray<FlatDictionary::Key> & arr, const size_t idx)
|
|
|
|
{
|
|
|
|
return arr[idx];
|
|
|
|
}
|
|
|
|
static inline FlatDictionary::Key getAt(const FlatDictionary::Key & value, const size_t)
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
2016-12-12 21:37:57 +00:00
|
|
|
|
|
|
|
template <typename ChildType, typename AncestorType>
|
2018-12-10 15:25:45 +00:00
|
|
|
void FlatDictionary::isInImpl(const ChildType & child_ids, const AncestorType & ancestor_ids, PaddedPODArray<UInt8> & out) const
|
2016-12-12 21:37:57 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto null_value = std::get<UInt64>(hierarchical_attribute->null_values);
|
2018-11-13 19:43:17 +00:00
|
|
|
const auto & attr = std::get<ContainerType<Key>>(hierarchical_attribute->arrays);
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto rows = out.size();
|
2016-12-12 21:37:57 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t loaded_size = attr.size();
|
|
|
|
for (const auto row : ext::range(0, rows))
|
|
|
|
{
|
|
|
|
auto id = getAt(child_ids, row);
|
|
|
|
const auto ancestor_id = getAt(ancestor_ids, row);
|
2016-12-12 21:37:57 +00:00
|
|
|
|
2020-04-20 02:31:21 +00:00
|
|
|
for (size_t i = 0; id < loaded_size && id != null_value && id != ancestor_id && i < DBMS_HIERARCHICAL_DICTIONARY_MAX_DEPTH; ++i)
|
2017-04-01 07:20:54 +00:00
|
|
|
id = attr[id];
|
2016-12-12 21:37:57 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
out[row] = id != null_value && id == ancestor_id;
|
|
|
|
}
|
2016-12-12 21:37:57 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
query_count.fetch_add(rows, std::memory_order_relaxed);
|
2016-12-12 21:37:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-13 21:15:27 +00:00
|
|
|
void FlatDictionary::isInVectorVector(
|
2018-12-10 15:25:45 +00:00
|
|
|
const PaddedPODArray<Key> & child_ids, const PaddedPODArray<Key> & ancestor_ids, PaddedPODArray<UInt8> & out) const
|
2016-12-12 21:37:57 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
isInImpl(child_ids, ancestor_ids, out);
|
2016-12-12 21:37:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void FlatDictionary::isInVectorConstant(const PaddedPODArray<Key> & child_ids, const Key ancestor_id, PaddedPODArray<UInt8> & out) const
|
2016-12-12 21:37:57 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
isInImpl(child_ids, ancestor_id, out);
|
2016-12-12 21:37:57 +00:00
|
|
|
}
|
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void FlatDictionary::isInConstantVector(const Key child_id, const PaddedPODArray<Key> & ancestor_ids, PaddedPODArray<UInt8> & out) const
|
2016-12-12 21:37:57 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
isInImpl(child_id, ancestor_ids, out);
|
2016-12-12 21:37:57 +00:00
|
|
|
}
|
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
ColumnPtr FlatDictionary::getColumn(
|
|
|
|
const std::string& attribute_name,
|
|
|
|
const DataTypePtr &,
|
|
|
|
const Columns & key_columns,
|
2020-12-19 14:27:39 +00:00
|
|
|
const DataTypes & key_types,
|
2020-12-19 13:24:51 +00:00
|
|
|
const ColumnPtr default_untyped) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2020-12-19 14:27:39 +00:00
|
|
|
dict_struct.validateKeyTypes(key_types);
|
2020-12-18 21:43:08 +00:00
|
|
|
ColumnPtr result;
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
PaddedPODArray<Key> backup_storage;
|
2020-12-20 20:11:28 +00:00
|
|
|
const auto& ids = getColumnDataAsPaddedPODArray(this, key_columns.front(), backup_storage);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & attribute = getAttribute(attribute_name);
|
2018-12-10 15:25:45 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
/// TODO: Check that attribute type is same as result type
|
2020-12-20 20:11:28 +00:00
|
|
|
/// TODO: Check if const will work as expected
|
2020-12-18 21:43:08 +00:00
|
|
|
|
|
|
|
auto type_call = [&](const auto &dictionary_attribute_type)
|
|
|
|
{
|
|
|
|
using Type = std::decay_t<decltype(dictionary_attribute_type)>;
|
|
|
|
using AttributeType = typename Type::AttributeType;
|
|
|
|
|
|
|
|
auto size = ids.size();
|
|
|
|
|
|
|
|
if constexpr (std::is_same_v<AttributeType, String>)
|
|
|
|
{
|
|
|
|
auto column_string = ColumnString::create();
|
|
|
|
auto out = column_string.get();
|
|
|
|
|
|
|
|
if (default_untyped != nullptr)
|
|
|
|
{
|
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnString>(*default_untyped))
|
|
|
|
{
|
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t row) { return default_col->getDataAt(row); });
|
|
|
|
}
|
|
|
|
else if (const auto default_col_const = checkAndGetColumnConst<ColumnString>(default_untyped.get()))
|
|
|
|
{
|
|
|
|
const auto & def = default_col_const->template getValue<String>();
|
|
|
|
|
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t) { return def; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto & null_value = std::get<StringRef>(attribute.null_values);
|
|
|
|
|
|
|
|
getItemsImpl<StringRef, StringRef>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t, const StringRef value) { out->insertData(value.data, value.size); },
|
|
|
|
[&](const size_t) { return null_value; });
|
|
|
|
}
|
|
|
|
|
|
|
|
result = std::move(column_string);
|
|
|
|
}
|
|
|
|
else if constexpr (IsNumber<AttributeType>)
|
|
|
|
{
|
|
|
|
auto column = ColumnVector<AttributeType>::create(size);
|
|
|
|
auto& out = column->getData();
|
|
|
|
|
|
|
|
if (default_untyped != nullptr)
|
|
|
|
{
|
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnVector<AttributeType>>(*default_untyped))
|
|
|
|
{
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t row) { return default_col->getData()[row]; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else if (const auto default_col_const = checkAndGetColumnConst<ColumnVector<AttributeType>>(default_untyped.get()))
|
|
|
|
{
|
|
|
|
const auto & def = default_col_const->template getValue<AttributeType>();
|
|
|
|
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t) { return def; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto null_value = std::get<AttributeType>(attribute.null_values);
|
|
|
|
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t) { return null_value; });
|
|
|
|
}
|
|
|
|
|
|
|
|
result = std::move(column);
|
|
|
|
}
|
|
|
|
else if constexpr (IsDecimalNumber<AttributeType>)
|
|
|
|
{
|
|
|
|
// auto scale = getDecimalScale(*attribute.type);
|
|
|
|
auto column = ColumnDecimal<AttributeType>::create(size, 0);
|
|
|
|
auto& out = column->getData();
|
|
|
|
|
|
|
|
if (default_untyped != nullptr)
|
|
|
|
{
|
|
|
|
if (const auto default_col = checkAndGetColumn<ColumnDecimal<AttributeType>>(*default_untyped))
|
|
|
|
{
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t row) { return default_col->getData()[row]; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else if (const auto default_col_const = checkAndGetColumnConst<ColumnDecimal<AttributeType>>(default_untyped.get()))
|
|
|
|
{
|
|
|
|
const auto & def = default_col_const->template getValue<AttributeType>();
|
|
|
|
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t) { return def; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const auto null_value = std::get<AttributeType>(attribute.null_values);
|
|
|
|
|
|
|
|
getItemsImpl<AttributeType, AttributeType>(
|
|
|
|
attribute,
|
|
|
|
ids,
|
|
|
|
[&](const size_t row, const auto value) { return out[row] = value; },
|
|
|
|
[&](const size_t) { return null_value; }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
result = std::move(column);
|
|
|
|
}
|
|
|
|
};
|
2018-12-10 15:25:45 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
callOnDictionaryAttributeType(attribute.type, type_call);
|
2020-12-19 14:27:39 +00:00
|
|
|
|
2020-12-18 21:43:08 +00:00
|
|
|
return result;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2020-12-19 13:24:51 +00:00
|
|
|
|
|
|
|
ColumnUInt8::Ptr FlatDictionary::has(const Columns & key_columns, const DataTypes &) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2020-12-19 13:24:51 +00:00
|
|
|
assert(!key_columns.empty());
|
|
|
|
|
|
|
|
PaddedPODArray<Key> backup_storage;
|
2020-12-20 20:11:28 +00:00
|
|
|
const auto& ids = getColumnDataAsPaddedPODArray(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
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
attribute_index_by_name.emplace(attribute.name, attributes.size());
|
|
|
|
attributes.push_back(createAttributeWithType(attribute.underlying_type, attribute.null_value));
|
|
|
|
|
|
|
|
if (attribute.hierarchical)
|
|
|
|
{
|
2018-12-10 15:25:45 +00:00
|
|
|
hierarchical_attribute = &attributes.back();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-08-03 11:02:40 +00:00
|
|
|
if (hierarchical_attribute->type != AttributeUnderlyingType::utUInt64)
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": hierarchical attribute must be UInt64.", ErrorCodes::TYPE_MISMATCH};
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2018-02-15 13:08:23 +00:00
|
|
|
std::unordered_map<Key, std::vector<size_t>> update_ids;
|
|
|
|
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);
|
|
|
|
std::unordered_map<Key, std::vector<size_t>>::iterator it;
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2018-11-20 20:09:20 +00:00
|
|
|
attribute.null_values = T(null_value.get<NearestFieldType<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
|
|
|
}
|
|
|
|
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
FlatDictionary::Attribute FlatDictionary::createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2020-12-19 17:04:34 +00:00
|
|
|
Attribute attr{type, {}, {}, {}};
|
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;
|
|
|
|
createAttributeImpl<AttributeType>(attr, null_value);
|
2020-12-18 21:43:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
callOnDictionaryAttributeType(type, type_call);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return attr;
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename AttributeType, typename OutputType, typename ValueSetter, typename DefaultGetter>
|
|
|
|
void FlatDictionary::getItemsImpl(
|
2018-12-10 15:25:45 +00:00
|
|
|
const Attribute & attribute, const PaddedPODArray<Key> & ids, ValueSetter && set_value, DefaultGetter && get_default) 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];
|
2017-11-14 00:08:54 +00:00
|
|
|
set_value(row, id < ext::size(attr) && loaded_ids[id] ? static_cast<OutputType>(attr[id]) : get_default(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>
|
2016-08-24 22:21:48 +00:00
|
|
|
void FlatDictionary::resize(Attribute & attribute, const Key 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>
|
|
|
|
void FlatDictionary::setAttributeValueImpl(Attribute & attribute, const Key id, const T & value)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
resize<T>(attribute, id);
|
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 <>
|
2020-03-09 03:14:24 +00:00
|
|
|
void FlatDictionary::setAttributeValueImpl<String>(Attribute & attribute, const Key id, const String & value)
|
2016-08-24 22:21:48 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
resize<StringRef>(attribute, id);
|
2020-04-22 07:03:43 +00:00
|
|
|
const auto * string_in_arena = attribute.string_arena->insert(value.data(), value.size());
|
2018-11-13 19:43:17 +00:00
|
|
|
auto & array = std::get<ContainerType<StringRef>>(attribute.arrays);
|
2020-03-09 03:14:24 +00:00
|
|
|
array[id] = StringRef{string_in_arena, value.size()};
|
2017-04-01 07:20:54 +00:00
|
|
|
loaded_ids[id] = true;
|
2016-08-24 22:21:48 +00:00
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
void FlatDictionary::setAttributeValue(Attribute & attribute, const Key id, const Field & value)
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2020-12-19 14:27:39 +00:00
|
|
|
switch (attribute.type)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2020-12-19 14:27:39 +00:00
|
|
|
case AttributeUnderlyingType::utUInt8:
|
|
|
|
setAttributeValueImpl<UInt8>(attribute, id, value.get<UInt64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utUInt16:
|
|
|
|
setAttributeValueImpl<UInt16>(attribute, id, value.get<UInt64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utUInt32:
|
|
|
|
setAttributeValueImpl<UInt32>(attribute, id, value.get<UInt64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utUInt64:
|
|
|
|
setAttributeValueImpl<UInt64>(attribute, id, value.get<UInt64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utUInt128:
|
|
|
|
setAttributeValueImpl<UInt128>(attribute, id, value.get<UInt128>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utInt8:
|
|
|
|
setAttributeValueImpl<Int8>(attribute, id, value.get<Int64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utInt16:
|
|
|
|
setAttributeValueImpl<Int16>(attribute, id, value.get<Int64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utInt32:
|
|
|
|
setAttributeValueImpl<Int32>(attribute, id, value.get<Int64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utInt64:
|
|
|
|
setAttributeValueImpl<Int64>(attribute, id, value.get<Int64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utFloat32:
|
|
|
|
setAttributeValueImpl<Float32>(attribute, id, value.get<Float64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utFloat64:
|
|
|
|
setAttributeValueImpl<Float64>(attribute, id, value.get<Float64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utString:
|
|
|
|
setAttributeValueImpl<String>(attribute, id, value.get<String>());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AttributeUnderlyingType::utDecimal32:
|
|
|
|
setAttributeValueImpl<Decimal32>(attribute, id, value.get<Decimal32>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utDecimal64:
|
|
|
|
setAttributeValueImpl<Decimal64>(attribute, id, value.get<Decimal64>());
|
|
|
|
break;
|
|
|
|
case AttributeUnderlyingType::utDecimal128:
|
|
|
|
setAttributeValueImpl<Decimal128>(attribute, id, value.get<Decimal128>());
|
|
|
|
break;
|
|
|
|
}
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-07 09:09:18 +00:00
|
|
|
const FlatDictionary::Attribute & FlatDictionary::getAttribute(const std::string & attribute_name) const
|
2016-06-07 21:07:44 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto it = attribute_index_by_name.find(attribute_name);
|
|
|
|
if (it == std::end(attribute_index_by_name))
|
2019-12-25 23:12:12 +00:00
|
|
|
throw Exception{full_name + ": no such attribute '" + attribute_name + "'", ErrorCodes::BAD_ARGUMENTS};
|
2016-06-07 21:07:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return attributes[it->second];
|
2016-06-07 21:07:44 +00:00
|
|
|
}
|
|
|
|
|
2017-04-28 18:33:31 +00:00
|
|
|
PaddedPODArray<FlatDictionary::Key> FlatDictionary::getIds() const
|
|
|
|
{
|
|
|
|
const auto ids_count = ext::size(loaded_ids);
|
|
|
|
|
|
|
|
PaddedPODArray<Key> ids;
|
|
|
|
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
|
|
|
{
|
2020-12-19 13:24:51 +00:00
|
|
|
using BlockInputStreamType = DictionaryBlockInputStream<Key>;
|
2018-12-10 15:25:45 +00:00
|
|
|
return std::make_shared<BlockInputStreamType>(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
|
|
|
}
|