Files
doris/be/src/vec/functions/function_coalesce.cpp
HappenLee e1d7233e9c [feature](vectorization) Support Vectorized Exec Engine In Doris (#7785)
# Proposed changes

Issue Number: close #6238

    Co-authored-by: HappenLee <happenlee@hotmail.com>
    Co-authored-by: stdpain <34912776+stdpain@users.noreply.github.com>
    Co-authored-by: Zhengguo Yang <yangzhgg@gmail.com>
    Co-authored-by: wangbo <506340561@qq.com>
    Co-authored-by: emmymiao87 <522274284@qq.com>
    Co-authored-by: Pxl <952130278@qq.com>
    Co-authored-by: zhangstar333 <87313068+zhangstar333@users.noreply.github.com>
    Co-authored-by: thinker <zchw100@qq.com>
    Co-authored-by: Zeno Yang <1521564989@qq.com>
    Co-authored-by: Wang Shuo <wangshuo128@gmail.com>
    Co-authored-by: zhoubintao <35688959+zbtzbtzbt@users.noreply.github.com>
    Co-authored-by: Gabriel <gabrielleebuaa@gmail.com>
    Co-authored-by: xinghuayu007 <1450306854@qq.com>
    Co-authored-by: weizuo93 <weizuo@apache.org>
    Co-authored-by: yiguolei <guoleiyi@tencent.com>
    Co-authored-by: anneji-dev <85534151+anneji-dev@users.noreply.github.com>
    Co-authored-by: awakeljw <993007281@qq.com>
    Co-authored-by: taberylyang <95272637+taberylyang@users.noreply.github.com>
    Co-authored-by: Cui Kaifeng <48012748+azurenake@users.noreply.github.com>


## Problem Summary:

### 1. Some code from clickhouse

**ClickHouse is an excellent implementation of the vectorized execution engine database,
so here we have referenced and learned a lot from its excellent implementation in terms of
data structure and function implementation.
We are based on ClickHouse v19.16.2.2 and would like to thank the ClickHouse community and developers.**

The following comment has been added to the code from Clickhouse, eg:
// This file is copied from
// https://github.com/ClickHouse/ClickHouse/blob/master/src/Interpreters/AggregationCommon.h
// and modified by Doris

### 2. Support exec node and query:
* vaggregation_node
* vanalytic_eval_node
* vassert_num_rows_node
* vblocking_join_node
* vcross_join_node
* vempty_set_node
* ves_http_scan_node
* vexcept_node
* vexchange_node
* vintersect_node
* vmysql_scan_node
* vodbc_scan_node
* volap_scan_node
* vrepeat_node
* vschema_scan_node
* vselect_node
* vset_operation_node
* vsort_node
* vunion_node
* vhash_join_node

You can run exec engine of SSB/TPCH and 70% TPCDS stand query test set.

### 3. Data Model

Vec Exec Engine Support **Dup/Agg/Unq** table, Support Block Reader Vectorized.
Segment Vec is working in process.

### 4. How to use

1. Set the environment variable `set enable_vectorized_engine = true; `(required)
2. Set the environment variable `set batch_size = 4096; ` (recommended)

### 5. Some diff from origin exec engine

https://github.com/doris-vectorized/doris-vectorized/issues/294

## Checklist(Required)

1. Does it affect the original behavior: (No)
2. Has unit tests been added: (Yes)
3. Has document been added or modified: (No)
4. Does it need to update dependencies: (No)
5. Are there any changes that cannot be rolled back: (Yes)
2022-01-18 10:07:15 +08:00

268 lines
13 KiB
C++

// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "udf/udf.h"
#include "vec/data_types/data_type_nothing.h"
#include "vec/data_types/data_type_number.h"
#include "vec/data_types/get_least_supertype.h"
#include "vec/functions/function_helpers.h"
#include "vec/functions/simple_function_factory.h"
#include "vec/utils/util.hpp"
namespace doris::vectorized {
class FunctionCoalesce : public IFunction {
public:
static constexpr auto name = "coalesce";
mutable FunctionBasePtr func_is_not_null;
static FunctionPtr create() { return std::make_shared<FunctionCoalesce>(); }
String get_name() const override { return name; }
bool use_default_implementation_for_constants() const override { return false; }
bool use_default_implementation_for_nulls() const override { return false; }
bool is_variadic() const override { return true; }
size_t get_number_of_arguments() const override { return 0; }
DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
DataTypePtr res;
for (const auto& arg : arguments) {
if (!arg->is_nullable()) {
res = arg;
break;
}
}
res = res ? res : arguments[0];
const ColumnsWithTypeAndName is_not_null_col{
{nullptr, make_nullable(res), ""}
};
func_is_not_null = SimpleFunctionFactory::instance().
get_function("is_not_null_pred", is_not_null_col, std::make_shared<DataTypeUInt8>());
return res;
}
Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
size_t result, size_t input_rows_count) override {
DCHECK_GE(arguments.size(), 1);
DataTypePtr result_type = block.get_by_position(result).type;
ColumnNumbers filtered_args;
filtered_args.reserve(arguments.size());
for (size_t i = 0; i < arguments.size(); ++i) {
const auto& arg_type = block.get_by_position(arguments[i]).type;
filtered_args.push_back(arguments[i]);
if (!arg_type->is_nullable()) {
if (i == 0) { //if the first column not null, return it's directly
block.get_by_position(result).column = block.get_by_position(arguments[0]).column;
return Status::OK();
} else {
break;
}
}
}
size_t remaining_rows = input_rows_count;
size_t argument_size = filtered_args.size();
std::vector<uint32_t> record_idx(input_rows_count, 0); //used to save column idx, record the result data of each row from which column
std::vector<uint8_t> filled_flags(input_rows_count, 0); //used to save filled flag, in order to check current row whether have filled data
MutableColumnPtr result_column;
if (!result_type->is_nullable()) {
result_column = result_type->create_column();
} else {
result_column = remove_nullable(result_type)->create_column();
}
// because now the string types does not support random position writing,
// so insert into result data have two methods, one is for string types, one is for others type remaining
bool is_string_result = result_column->is_column_string();
if (is_string_result) {
result_column->reserve(input_rows_count);
} else {
result_column->resize(input_rows_count);
}
auto return_type = std::make_shared<DataTypeUInt8>();
auto null_map = ColumnUInt8::create(input_rows_count, 1); //if null_map_data==1, the current row should be null
auto* __restrict null_map_data = null_map->get_data().data();
ColumnPtr argument_columns[argument_size]; //use to save nested_column if is nullable column
for (size_t i = 0; i < argument_size; ++i) {
block.get_by_position(filtered_args[i]).column =
block.get_by_position(filtered_args[i])
.column->convert_to_full_column_if_const();
argument_columns[i] = block.get_by_position(filtered_args[i]).column;
if (auto* nullable = check_and_get_column<const ColumnNullable>(*argument_columns[i])) {
argument_columns[i] = nullable->get_nested_column_ptr();
}
}
Block temporary_block {
ColumnsWithTypeAndName {
block.get_by_position(filtered_args[0]),
{nullptr, std::make_shared<DataTypeUInt8>(), ""}
}
};
for (size_t i = 0; i < argument_size && remaining_rows; ++i) {
temporary_block.get_by_position(0).column = block.get_by_position(filtered_args[i]).column;
func_is_not_null->execute(context, temporary_block, {0}, 1, input_rows_count);
auto res_column = (*temporary_block.get_by_position(1).column->convert_to_full_column_if_const()).mutate();
auto& res_map = assert_cast<ColumnVector<UInt8>*>(res_column.get())->get_data();
auto* __restrict res = res_map.data();
// Here it's SIMD thought the compiler automatically
// true: res[j]==1 && null_map_data[j]==1, false: others
// if true: remaining_rows--; record_idx[j]=column_idx; null_map_data[j]=0, so the current row could fill result
for (size_t j = 0; j < input_rows_count; ++j) {
remaining_rows -= (res[j] & null_map_data[j]);
record_idx[j] += (res[j] & null_map_data[j]) * i;
null_map_data[j] -= (res[j] & null_map_data[j]);
}
if (remaining_rows == 0) {
//check whether all result data from the same column
size_t is_same_column_count = 0;
const auto data = record_idx[0];
for (size_t row = 0; row < input_rows_count; ++row) {
is_same_column_count += (record_idx[row] == data);
}
if (is_same_column_count == input_rows_count) {
if (result_type->is_nullable()) {
block.get_by_position(result).column = make_nullable(argument_columns[i], false);
} else {
block.get_by_position(result).column = argument_columns[i];
}
return Status::OK();
}
}
if (!is_string_result) {
//if not string type, could check one column firstly,
//and then fill the not null value in result column,
//this method may result in higher CPU cache
filled_result_column(result_type, result_column, argument_columns[i], null_map_data,
filled_flags.data(), input_rows_count);
}
}
if (is_string_result) {
//if string type, should according to the record results, fill in result one by one,
for (size_t row = 0; row < input_rows_count; ++row) {
if (null_map_data[row]) { //should be null
result_column->insert_default();
} else {
result_column->insert_from(*argument_columns[record_idx[row]].get(), row);
}
}
}
if (result_type->is_nullable()) {
block.replace_by_position(result, ColumnNullable::create(std::move(result_column), std::move(null_map)));
} else {
block.replace_by_position(result, std::move(result_column));
}
return Status::OK();
}
template <typename ColumnType>
Status insert_result_data(MutableColumnPtr& result_column, ColumnPtr& argument_column,
const UInt8* __restrict null_map_data, UInt8* __restrict filled_flag,
const size_t input_rows_count) {
auto* __restrict result_raw_data =
reinterpret_cast<ColumnType*>(result_column.get())->get_data().data();
auto* __restrict column_raw_data =
reinterpret_cast<const ColumnType*>(argument_column.get())->get_data().data();
// Here it's SIMD thought the compiler automatically also
// true: null_map_data[row]==0 && filled_idx[row]==0
// if true, could filled current row data into result column
for (size_t row = 0; row < input_rows_count; ++row) {
result_raw_data[row] += (!(null_map_data[row] | filled_flag[row])) * column_raw_data[row];
filled_flag[row] += (!(null_map_data[row] | filled_flag[row]));
}
return Status::OK();
}
//TODO: this function is same as case when, should be replaced by macro
Status filled_result_column(const DataTypePtr& data_type, MutableColumnPtr& result_column,
ColumnPtr& argument_column, UInt8* __restrict null_map_data,
UInt8* __restrict filled_flag, const size_t input_rows_count) {
WhichDataType which(data_type->is_nullable()
? reinterpret_cast<const DataTypeNullable*>(data_type.get())
->get_nested_type()
: data_type);
if (which.is_uint8()) {
return insert_result_data<ColumnUInt8>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_int16()) {
return insert_result_data<ColumnInt16>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_uint32()) {
return insert_result_data<ColumnUInt32>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_uint64()) {
return insert_result_data<ColumnUInt64>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_int8()) {
return insert_result_data<ColumnInt8>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_int16()) {
return insert_result_data<ColumnInt16>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_int32()) {
return insert_result_data<ColumnInt32>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_int64()) {
return insert_result_data<ColumnInt64>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_date_or_datetime()) {
return insert_result_data<ColumnVector<DateTime>>(
result_column, argument_column, null_map_data, filled_flag, input_rows_count);
} else if (which.is_float32()) {
return insert_result_data<ColumnFloat32>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_float64()) {
return insert_result_data<ColumnFloat64>(result_column, argument_column, null_map_data,
filled_flag, input_rows_count);
} else if (which.is_decimal()) {
return insert_result_data<ColumnDecimal<Decimal128>>(
result_column, argument_column, null_map_data, filled_flag, input_rows_count);
} else {
return Status::NotSupported(fmt::format("Unexpected type {} of argument of function {}",
data_type->get_name(), get_name()));
}
}
};
void register_function_coalesce(SimpleFunctionFactory& factory) {
factory.register_function<FunctionCoalesce>();
}
} // namespace doris::vectorized