#include "ComplexKeyHashedDictionary.h" #include #include #include "DictionaryBlockInputStream.h" #include "DictionaryFactory.h" namespace DB { namespace ErrorCodes { extern const int TYPE_MISMATCH; extern const int BAD_ARGUMENTS; extern const int DICTIONARY_IS_EMPTY; } ComplexKeyHashedDictionary::ComplexKeyHashedDictionary( const std::string & database_, const std::string & name_, const DictionaryStructure & dict_struct_, DictionarySourcePtr source_ptr_, const DictionaryLifetime dict_lifetime_, bool require_nonempty_, BlockPtr saved_block_) : database(database_) , name(name_) , full_name{database_.empty() ? name_ : (database_ + "." + name_)} , dict_struct(dict_struct_) , source_ptr{std::move(source_ptr_)} , dict_lifetime(dict_lifetime_) , require_nonempty(require_nonempty_) , saved_block{std::move(saved_block_)} { createAttributes(); loadData(); calculateBytesAllocated(); } #define DECLARE(TYPE) \ void ComplexKeyHashedDictionary::get##TYPE( \ const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ResultArrayType & out) const \ { \ dict_struct.validateKeyTypes(key_types); \ \ const auto & attribute = getAttribute(attribute_name); \ checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \ \ const auto null_value = std::get(attribute.null_values); \ \ getItemsImpl( \ attribute, \ key_columns, \ [&](const size_t row, const auto value) { out[row] = value; }, \ [&](const size_t) { return null_value; }); \ } DECLARE(UInt8) DECLARE(UInt16) DECLARE(UInt32) DECLARE(UInt64) DECLARE(UInt128) DECLARE(Int8) DECLARE(Int16) DECLARE(Int32) DECLARE(Int64) DECLARE(Float32) DECLARE(Float64) DECLARE(Decimal32) DECLARE(Decimal64) DECLARE(Decimal128) #undef DECLARE void ComplexKeyHashedDictionary::getString( const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, ColumnString * out) const { dict_struct.validateKeyTypes(key_types); const auto & attribute = getAttribute(attribute_name); checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::utString); const auto & null_value = StringRef{std::get(attribute.null_values)}; getItemsImpl( attribute, key_columns, [&](const size_t, const StringRef value) { out->insertData(value.data, value.size); }, [&](const size_t) { return null_value; }); } #define DECLARE(TYPE) \ void ComplexKeyHashedDictionary::get##TYPE( \ const std::string & attribute_name, \ const Columns & key_columns, \ const DataTypes & key_types, \ const PaddedPODArray & def, \ ResultArrayType & out) const \ { \ dict_struct.validateKeyTypes(key_types); \ \ const auto & attribute = getAttribute(attribute_name); \ checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \ \ getItemsImpl( \ attribute, \ key_columns, \ [&](const size_t row, const auto value) { out[row] = value; }, \ [&](const size_t row) { return def[row]; }); \ } DECLARE(UInt8) DECLARE(UInt16) DECLARE(UInt32) DECLARE(UInt64) DECLARE(UInt128) DECLARE(Int8) DECLARE(Int16) DECLARE(Int32) DECLARE(Int64) DECLARE(Float32) DECLARE(Float64) DECLARE(Decimal32) DECLARE(Decimal64) DECLARE(Decimal128) #undef DECLARE void ComplexKeyHashedDictionary::getString( const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, const ColumnString * const def, ColumnString * const out) const { dict_struct.validateKeyTypes(key_types); const auto & attribute = getAttribute(attribute_name); checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::utString); getItemsImpl( attribute, key_columns, [&](const size_t, const StringRef value) { out->insertData(value.data, value.size); }, [&](const size_t row) { return def->getDataAt(row); }); } #define DECLARE(TYPE) \ void ComplexKeyHashedDictionary::get##TYPE( \ const std::string & attribute_name, \ const Columns & key_columns, \ const DataTypes & key_types, \ const TYPE def, \ ResultArrayType & out) const \ { \ dict_struct.validateKeyTypes(key_types); \ \ const auto & attribute = getAttribute(attribute_name); \ checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::ut##TYPE); \ \ getItemsImpl( \ attribute, key_columns, [&](const size_t row, const auto value) { out[row] = value; }, [&](const size_t) { return def; }); \ } DECLARE(UInt8) DECLARE(UInt16) DECLARE(UInt32) DECLARE(UInt64) DECLARE(UInt128) DECLARE(Int8) DECLARE(Int16) DECLARE(Int32) DECLARE(Int64) DECLARE(Float32) DECLARE(Float64) DECLARE(Decimal32) DECLARE(Decimal64) DECLARE(Decimal128) #undef DECLARE void ComplexKeyHashedDictionary::getString( const std::string & attribute_name, const Columns & key_columns, const DataTypes & key_types, const String & def, ColumnString * const out) const { dict_struct.validateKeyTypes(key_types); const auto & attribute = getAttribute(attribute_name); checkAttributeType(full_name, attribute_name, attribute.type, AttributeUnderlyingType::utString); getItemsImpl( attribute, key_columns, [&](const size_t, const StringRef value) { out->insertData(value.data, value.size); }, [&](const size_t) { return StringRef{def}; }); } void ComplexKeyHashedDictionary::has(const Columns & key_columns, const DataTypes & key_types, PaddedPODArray & out) const { dict_struct.validateKeyTypes(key_types); const auto & attribute = attributes.front(); switch (attribute.type) { case AttributeUnderlyingType::utUInt8: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utUInt16: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utUInt32: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utUInt64: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utUInt128: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utInt8: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utInt16: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utInt32: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utInt64: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utFloat32: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utFloat64: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utString: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utDecimal32: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utDecimal64: has(attribute, key_columns, out); break; case AttributeUnderlyingType::utDecimal128: has(attribute, key_columns, out); break; } } void ComplexKeyHashedDictionary::createAttributes() { 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) throw Exception{full_name + ": hierarchical attributes not supported for dictionary of type " + getTypeName(), ErrorCodes::TYPE_MISMATCH}; } } void ComplexKeyHashedDictionary::blockToAttributes(const Block & block) { /// created upfront to avoid excess allocations const auto keys_size = dict_struct.key->size(); StringRefs keys(keys_size); const auto attributes_size = attributes.size(); const auto rows = block.rows(); element_count += rows; const auto key_column_ptrs = ext::map( ext::range(0, keys_size), [&](const size_t attribute_idx) { return block.safeGetByPosition(attribute_idx).column; }); const auto attribute_column_ptrs = ext::map(ext::range(0, attributes_size), [&](const size_t attribute_idx) { return block.safeGetByPosition(keys_size + attribute_idx).column; }); for (const auto row_idx : ext::range(0, rows)) { /// calculate key once per row const auto key = placeKeysInPool(row_idx, key_column_ptrs, keys, keys_pool); auto should_rollback = false; for (const auto attribute_idx : ext::range(0, attributes_size)) { const auto & attribute_column = *attribute_column_ptrs[attribute_idx]; auto & attribute = attributes[attribute_idx]; const auto inserted = setAttributeValue(attribute, key, attribute_column[row_idx]); if (!inserted) should_rollback = true; } /// @note on multiple equal keys the mapped value for the first one is stored if (should_rollback) keys_pool.rollback(key.size); } } void ComplexKeyHashedDictionary::updateData() { /// created upfront to avoid excess allocations const auto keys_size = dict_struct.key->size(); StringRefs keys(keys_size); const auto attributes_size = attributes.size(); if (!saved_block || saved_block->rows() == 0) { auto stream = source_ptr->loadUpdatedAll(); stream->readPrefix(); while (const auto block = stream->read()) { /// We are using this method to keep saved data if input stream consists of multiple blocks if (!saved_block) saved_block = std::make_shared(block.cloneEmpty()); for (const auto attribute_idx : ext::range(0, keys_size + attributes_size)) { const IColumn & update_column = *block.getByPosition(attribute_idx).column.get(); MutableColumnPtr saved_column = saved_block->getByPosition(attribute_idx).column->assumeMutable(); saved_column->insertRangeFrom(update_column, 0, update_column.size()); } } stream->readSuffix(); } else { auto stream = source_ptr->loadUpdatedAll(); stream->readPrefix(); while (Block block = stream->read()) { const auto saved_key_column_ptrs = ext::map( ext::range(0, keys_size), [&](const size_t key_idx) { return saved_block->safeGetByPosition(key_idx).column; }); const auto update_key_column_ptrs = ext::map( ext::range(0, keys_size), [&](const size_t key_idx) { return block.safeGetByPosition(key_idx).column; }); Arena temp_key_pool; ContainerType> update_key_hash; for (size_t i = 0; i < block.rows(); ++i) { const auto u_key = placeKeysInPool(i, update_key_column_ptrs, keys, temp_key_pool); update_key_hash[u_key].push_back(i); } const size_t rows = saved_block->rows(); IColumn::Filter filter(rows); for (size_t i = 0; i < saved_block->rows(); ++i) { const auto s_key = placeKeysInPool(i, saved_key_column_ptrs, keys, temp_key_pool); auto it = update_key_hash.find(s_key); if (it) filter[i] = 0; else filter[i] = 1; } auto block_columns = block.mutateColumns(); for (const auto attribute_idx : ext::range(0, keys_size + attributes_size)) { 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()); } saved_block->setColumns(std::move(block_columns)); } stream->readSuffix(); } if (saved_block) blockToAttributes(*saved_block.get()); } void ComplexKeyHashedDictionary::loadData() { if (!source_ptr->hasUpdateField()) { auto stream = source_ptr->loadAll(); stream->readPrefix(); while (const auto block = stream->read()) blockToAttributes(block); stream->readSuffix(); } else updateData(); if (require_nonempty && 0 == element_count) throw Exception{full_name + ": dictionary source is empty and 'require_nonempty' property is set.", ErrorCodes::DICTIONARY_IS_EMPTY}; } template void ComplexKeyHashedDictionary::addAttributeSize(const Attribute & attribute) { const auto & map_ref = std::get>(attribute.maps); bytes_allocated += sizeof(ContainerType) + map_ref.getBufferSizeInBytes(); bucket_count = map_ref.getBufferSizeInCells(); } void ComplexKeyHashedDictionary::calculateBytesAllocated() { bytes_allocated += attributes.size() * sizeof(attributes.front()); for (const auto & attribute : attributes) { switch (attribute.type) { case AttributeUnderlyingType::utUInt8: addAttributeSize(attribute); break; case AttributeUnderlyingType::utUInt16: addAttributeSize(attribute); break; case AttributeUnderlyingType::utUInt32: addAttributeSize(attribute); break; case AttributeUnderlyingType::utUInt64: addAttributeSize(attribute); break; case AttributeUnderlyingType::utUInt128: addAttributeSize(attribute); break; case AttributeUnderlyingType::utInt8: addAttributeSize(attribute); break; case AttributeUnderlyingType::utInt16: addAttributeSize(attribute); break; case AttributeUnderlyingType::utInt32: addAttributeSize(attribute); break; case AttributeUnderlyingType::utInt64: addAttributeSize(attribute); break; case AttributeUnderlyingType::utFloat32: addAttributeSize(attribute); break; case AttributeUnderlyingType::utFloat64: addAttributeSize(attribute); break; case AttributeUnderlyingType::utDecimal32: addAttributeSize(attribute); break; case AttributeUnderlyingType::utDecimal64: addAttributeSize(attribute); break; case AttributeUnderlyingType::utDecimal128: addAttributeSize(attribute); break; case AttributeUnderlyingType::utString: { addAttributeSize(attribute); bytes_allocated += sizeof(Arena) + attribute.string_arena->size(); break; } } } bytes_allocated += keys_pool.size(); } template void ComplexKeyHashedDictionary::createAttributeImpl(Attribute & attribute, const Field & null_value) { attribute.null_values = T(null_value.get>()); attribute.maps.emplace>(); } ComplexKeyHashedDictionary::Attribute ComplexKeyHashedDictionary::createAttributeWithType(const AttributeUnderlyingType type, const Field & null_value) { Attribute attr{type, {}, {}, {}}; switch (type) { case AttributeUnderlyingType::utUInt8: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utUInt16: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utUInt32: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utUInt64: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utUInt128: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utInt8: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utInt16: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utInt32: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utInt64: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utFloat32: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utFloat64: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utDecimal32: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utDecimal64: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utDecimal128: createAttributeImpl(attr, null_value); break; case AttributeUnderlyingType::utString: { attr.null_values = null_value.get(); attr.maps.emplace>(); attr.string_arena = std::make_unique(); break; } } return attr; } template void ComplexKeyHashedDictionary::getItemsImpl( const Attribute & attribute, const Columns & key_columns, ValueSetter && set_value, DefaultGetter && get_default) const { const auto & attr = std::get>(attribute.maps); const auto keys_size = key_columns.size(); StringRefs keys(keys_size); Arena temporary_keys_pool; const auto rows = key_columns.front()->size(); for (const auto i : ext::range(0, rows)) { /// copy key data to arena so it is contiguous and return StringRef to it const auto key = placeKeysInPool(i, key_columns, keys, temporary_keys_pool); const auto it = attr.find(key); set_value(i, it ? static_cast(it->getMapped()) : get_default(i)); /// free memory allocated for the key temporary_keys_pool.rollback(key.size); } query_count.fetch_add(rows, std::memory_order_relaxed); } template bool ComplexKeyHashedDictionary::setAttributeValueImpl(Attribute & attribute, const StringRef key, const T value) { auto & map = std::get>(attribute.maps); const auto pair = map.insert({key, value}); return pair.second; } bool ComplexKeyHashedDictionary::setAttributeValue(Attribute & attribute, const StringRef key, const Field & value) { switch (attribute.type) { case AttributeUnderlyingType::utUInt8: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utUInt16: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utUInt32: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utUInt64: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utUInt128: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utInt8: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utInt16: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utInt32: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utInt64: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utFloat32: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utFloat64: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utDecimal32: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utDecimal64: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utDecimal128: return setAttributeValueImpl(attribute, key, value.get()); case AttributeUnderlyingType::utString: { auto & map = std::get>(attribute.maps); const auto & string = value.get(); const auto string_in_arena = attribute.string_arena->insert(string.data(), string.size()); const auto pair = map.insert({key, StringRef{string_in_arena, string.size()}}); return pair.second; } } return {}; } const ComplexKeyHashedDictionary::Attribute & ComplexKeyHashedDictionary::getAttribute(const std::string & attribute_name) const { const auto it = attribute_index_by_name.find(attribute_name); if (it == std::end(attribute_index_by_name)) throw Exception{full_name + ": no such attribute '" + attribute_name + "'", ErrorCodes::BAD_ARGUMENTS}; return attributes[it->second]; } StringRef ComplexKeyHashedDictionary::placeKeysInPool(const size_t row, const Columns & key_columns, StringRefs & keys, Arena & pool) { const auto keys_size = key_columns.size(); size_t sum_keys_size{}; const char * block_start = nullptr; for (size_t j = 0; j < keys_size; ++j) { keys[j] = key_columns[j]->serializeValueIntoArena(row, pool, block_start); sum_keys_size += keys[j].size; } auto key_start = block_start; for (size_t j = 0; j < keys_size; ++j) { keys[j].data = key_start; key_start += keys[j].size; } return {block_start, sum_keys_size}; } template void ComplexKeyHashedDictionary::has(const Attribute & attribute, const Columns & key_columns, PaddedPODArray & out) const { const auto & attr = std::get>(attribute.maps); const auto keys_size = key_columns.size(); StringRefs keys(keys_size); Arena temporary_keys_pool; const auto rows = key_columns.front()->size(); for (const auto i : ext::range(0, rows)) { /// copy key data to arena so it is contiguous and return StringRef to it const auto key = placeKeysInPool(i, key_columns, keys, temporary_keys_pool); const auto it = attr.find(key); out[i] = static_cast(it); /// free memory allocated for the key temporary_keys_pool.rollback(key.size); } query_count.fetch_add(rows, std::memory_order_relaxed); } std::vector ComplexKeyHashedDictionary::getKeys() const { const Attribute & attribute = attributes.front(); switch (attribute.type) { case AttributeUnderlyingType::utUInt8: return getKeys(attribute); case AttributeUnderlyingType::utUInt16: return getKeys(attribute); case AttributeUnderlyingType::utUInt32: return getKeys(attribute); case AttributeUnderlyingType::utUInt64: return getKeys(attribute); case AttributeUnderlyingType::utUInt128: return getKeys(attribute); case AttributeUnderlyingType::utInt8: return getKeys(attribute); case AttributeUnderlyingType::utInt16: return getKeys(attribute); case AttributeUnderlyingType::utInt32: return getKeys(attribute); case AttributeUnderlyingType::utInt64: return getKeys(attribute); case AttributeUnderlyingType::utFloat32: return getKeys(attribute); case AttributeUnderlyingType::utFloat64: return getKeys(attribute); case AttributeUnderlyingType::utString: return getKeys(attribute); case AttributeUnderlyingType::utDecimal32: return getKeys(attribute); case AttributeUnderlyingType::utDecimal64: return getKeys(attribute); case AttributeUnderlyingType::utDecimal128: return getKeys(attribute); } return {}; } template std::vector ComplexKeyHashedDictionary::getKeys(const Attribute & attribute) const { const ContainerType & attr = std::get>(attribute.maps); std::vector keys; keys.reserve(attr.size()); for (const auto & key : attr) keys.push_back(key.getKey()); return keys; } BlockInputStreamPtr ComplexKeyHashedDictionary::getBlockInputStream(const Names & column_names, size_t max_block_size) const { using BlockInputStreamType = DictionaryBlockInputStream; return std::make_shared(shared_from_this(), max_block_size, getKeys(), column_names); } void registerDictionaryComplexKeyHashed(DictionaryFactory & factory) { auto create_layout = [=](const std::string &, const DictionaryStructure & dict_struct, const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix, DictionarySourcePtr source_ptr) -> DictionaryPtr { if (!dict_struct.key) throw Exception{"'key' is required for dictionary of layout 'complex_key_hashed'", ErrorCodes::BAD_ARGUMENTS}; const String database = config.getString(config_prefix + ".database", ""); const String name = config.getString(config_prefix + ".name"); const DictionaryLifetime dict_lifetime{config, config_prefix + ".lifetime"}; const bool require_nonempty = config.getBool(config_prefix + ".require_nonempty", false); return std::make_unique(database, name, dict_struct, std::move(source_ptr), dict_lifetime, require_nonempty); }; factory.registerLayout("complex_key_hashed", create_layout, true); } }