Early Design Documentation: https://shimo.im/docs/DT6JXDRkdTvdyV3G Implement a new way of memory statistics based on TCMalloc New/Delete Hook, MemTracker and TLS, and it is expected that all memory new/delete/malloc/free of the BE process can be counted.
839 lines
32 KiB
C++
839 lines
32 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 "exec/tablet_info.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "runtime/descriptor_helper.h"
|
|
#include "runtime/mem_tracker.h"
|
|
#include "runtime/row_batch.h"
|
|
#include "runtime/tuple_row.h"
|
|
|
|
namespace doris {
|
|
|
|
class OlapTablePartitionParamTest : public testing::Test {
|
|
public:
|
|
OlapTablePartitionParamTest() {}
|
|
virtual ~OlapTablePartitionParamTest() {}
|
|
void SetUp() override {}
|
|
|
|
private:
|
|
};
|
|
|
|
TOlapTableSchemaParam get_schema(TDescriptorTable* desc_tbl) {
|
|
TOlapTableSchemaParam t_schema_param;
|
|
t_schema_param.db_id = 1;
|
|
t_schema_param.table_id = 2;
|
|
t_schema_param.version = 0;
|
|
|
|
// descriptor
|
|
{
|
|
TDescriptorTableBuilder dtb;
|
|
TTupleDescriptorBuilder tuple_builder;
|
|
|
|
tuple_builder.add_slot(
|
|
TSlotDescriptorBuilder().type(TYPE_INT).column_name("c1").column_pos(1).build());
|
|
tuple_builder.add_slot(
|
|
TSlotDescriptorBuilder().type(TYPE_BIGINT).column_name("c2").column_pos(2).build());
|
|
tuple_builder.add_slot(
|
|
TSlotDescriptorBuilder().string_type(20).column_name("c3").column_pos(3).build());
|
|
|
|
tuple_builder.build(&dtb);
|
|
|
|
*desc_tbl = dtb.desc_tbl();
|
|
t_schema_param.slot_descs = desc_tbl->slotDescriptors;
|
|
t_schema_param.tuple_desc = desc_tbl->tupleDescriptors[0];
|
|
}
|
|
// index
|
|
t_schema_param.indexes.resize(2);
|
|
t_schema_param.indexes[0].id = 4;
|
|
t_schema_param.indexes[0].columns = {"c1", "c2", "c3"};
|
|
t_schema_param.indexes[1].id = 5;
|
|
t_schema_param.indexes[1].columns = {"c1", "c3"};
|
|
|
|
return t_schema_param;
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, normal) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << schema->debug_string();
|
|
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_partition_column("c2");
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(3);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].__isset.end_key = true;
|
|
t_partition_param.partitions[0].end_key.node_type = TExprNodeType::INT_LITERAL;
|
|
t_partition_param.partitions[0].end_key.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_partition_param.partitions[0].end_key.num_children = 0;
|
|
t_partition_param.partitions[0].end_key.__isset.int_literal = true;
|
|
t_partition_param.partitions[0].end_key.int_literal.value = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[0].indexes[1].tablets = {22};
|
|
|
|
t_partition_param.partitions[1].id = 11;
|
|
t_partition_param.partitions[1].__isset.start_key = true;
|
|
t_partition_param.partitions[1].start_key.node_type = TExprNodeType::INT_LITERAL;
|
|
t_partition_param.partitions[1].start_key.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_partition_param.partitions[1].start_key.num_children = 0;
|
|
t_partition_param.partitions[1].start_key.__isset.int_literal = true;
|
|
t_partition_param.partitions[1].start_key.int_literal.value = 10;
|
|
t_partition_param.partitions[1].__isset.end_key = true;
|
|
t_partition_param.partitions[1].end_key.node_type = TExprNodeType::INT_LITERAL;
|
|
t_partition_param.partitions[1].end_key.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_partition_param.partitions[1].end_key.num_children = 0;
|
|
t_partition_param.partitions[1].end_key.__isset.int_literal = true;
|
|
t_partition_param.partitions[1].end_key.int_literal.value = 50;
|
|
t_partition_param.partitions[1].num_buckets = 2;
|
|
t_partition_param.partitions[1].indexes.resize(2);
|
|
t_partition_param.partitions[1].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[1].indexes[0].tablets = {31, 32};
|
|
t_partition_param.partitions[1].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[1].indexes[1].tablets = {33, 34};
|
|
|
|
t_partition_param.partitions[2].id = 12;
|
|
t_partition_param.partitions[2].__isset.start_key = true;
|
|
t_partition_param.partitions[2].start_key.node_type = TExprNodeType::INT_LITERAL;
|
|
t_partition_param.partitions[2].start_key.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_partition_param.partitions[2].start_key.num_children = 0;
|
|
t_partition_param.partitions[2].start_key.__isset.int_literal = true;
|
|
t_partition_param.partitions[2].start_key.int_literal.value = 60;
|
|
t_partition_param.partitions[2].num_buckets = 4;
|
|
t_partition_param.partitions[2].indexes.resize(2);
|
|
t_partition_param.partitions[2].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[2].indexes[0].tablets = {41, 42, 43, 44};
|
|
t_partition_param.partitions[2].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[2].indexes[1].tablets = {45, 46, 47, 48};
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << part.debug_string();
|
|
|
|
ObjectPool pool;
|
|
DescriptorTbl* desc_tbl = nullptr;
|
|
st = DescriptorTbl::create(&pool, t_desc_tbl, &desc_tbl);
|
|
ASSERT_TRUE(st.ok());
|
|
RowDescriptor row_desc(*desc_tbl, {0}, {false});
|
|
TupleDescriptor* tuple_desc = desc_tbl->get_tuple_descriptor(0);
|
|
RowBatch batch(row_desc, 1024);
|
|
// 12, 9, "abc"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 12;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 9;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 3;
|
|
memcpy(str_val->ptr, "abc", str_val->len);
|
|
|
|
// 9:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(10, partition->id);
|
|
}
|
|
// 13, 25, "abcd"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 13;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 25;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 4;
|
|
memcpy(str_val->ptr, "abcd", str_val->len);
|
|
|
|
// 25:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(11, partition->id);
|
|
}
|
|
// 14, 50, "abcde"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 14;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 50;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 5;
|
|
memcpy(str_val->ptr, "abcde", str_val->len);
|
|
|
|
// 50:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_FALSE(found);
|
|
}
|
|
|
|
// 15, 60, "abcdef"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 15;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 60;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 6;
|
|
memcpy(str_val->ptr, "abcdef", str_val->len);
|
|
|
|
// 60:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(12, partition->id);
|
|
}
|
|
}
|
|
|
|
/*
|
|
*PARTITION BY LIST(`k1`)
|
|
* (
|
|
* PARTITION p1 VALUES IN ("1", "2"),
|
|
* PARTITION p2 VALUES IN ("3"),
|
|
* PARTITION p3 VALUES IN ("4", "5", "6")
|
|
* )
|
|
*
|
|
*/
|
|
TEST_F(OlapTablePartitionParamTest, single_list_partition) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << schema->debug_string();
|
|
|
|
// 1 | 2 | 3 | 4 | 5 | 6
|
|
std::vector<TExprNode> t_node_1;
|
|
t_node_1.resize(1);
|
|
t_node_1[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_1[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_1[0].num_children = 0;
|
|
t_node_1[0].__isset.int_literal = true;
|
|
t_node_1[0].int_literal.value = 1;
|
|
|
|
std::vector<TExprNode> t_node_2;
|
|
t_node_2.resize(1);
|
|
t_node_2[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_2[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_2[0].num_children = 0;
|
|
t_node_2[0].__isset.int_literal = true;
|
|
t_node_2[0].int_literal.value = 2;
|
|
|
|
std::vector<TExprNode> t_node_3;
|
|
t_node_3.resize(1);
|
|
t_node_3[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_3[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_3[0].num_children = 0;
|
|
t_node_3[0].__isset.int_literal = true;
|
|
t_node_3[0].int_literal.value = 3;
|
|
|
|
std::vector<TExprNode> t_node_4;
|
|
t_node_4.resize(1);
|
|
t_node_4[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_4[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_4[0].num_children = 0;
|
|
t_node_4[0].__isset.int_literal = true;
|
|
t_node_4[0].int_literal.value = 4;
|
|
|
|
std::vector<TExprNode> t_node_5;
|
|
t_node_5.resize(1);
|
|
t_node_5[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_5[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_5[0].num_children = 0;
|
|
t_node_5[0].__isset.int_literal = true;
|
|
t_node_5[0].int_literal.value = 5;
|
|
|
|
std::vector<TExprNode> t_node_6;
|
|
t_node_6.resize(1);
|
|
t_node_6[0].node_type = TExprNodeType::INT_LITERAL;
|
|
t_node_6[0].type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
t_node_6[0].num_children = 0;
|
|
t_node_6[0].__isset.int_literal = true;
|
|
t_node_6[0].int_literal.value = 6;
|
|
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_partition_column("c2");
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(3);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].__isset.in_keys = true;
|
|
t_partition_param.partitions[0].in_keys.emplace_back(t_node_1);
|
|
t_partition_param.partitions[0].in_keys.emplace_back(t_node_2);
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[0].indexes[1].tablets = {22};
|
|
|
|
t_partition_param.partitions[1].id = 11;
|
|
t_partition_param.partitions[1].__isset.in_keys = true;
|
|
t_partition_param.partitions[1].in_keys.emplace_back(t_node_3);
|
|
t_partition_param.partitions[1].num_buckets = 2;
|
|
t_partition_param.partitions[1].indexes.resize(2);
|
|
t_partition_param.partitions[1].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[1].indexes[0].tablets = {31, 32};
|
|
t_partition_param.partitions[1].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[1].indexes[1].tablets = {33, 34};
|
|
|
|
t_partition_param.partitions[2].id = 12;
|
|
t_partition_param.partitions[2].__isset.in_keys = true;
|
|
t_partition_param.partitions[2].in_keys.emplace_back(t_node_4);
|
|
t_partition_param.partitions[2].in_keys.emplace_back(t_node_5);
|
|
t_partition_param.partitions[2].in_keys.emplace_back(t_node_6);
|
|
t_partition_param.partitions[2].num_buckets = 4;
|
|
t_partition_param.partitions[2].indexes.resize(2);
|
|
t_partition_param.partitions[2].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[2].indexes[0].tablets = {41, 42, 43, 44};
|
|
t_partition_param.partitions[2].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[2].indexes[1].tablets = {45, 46, 47, 48};
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << part.debug_string();
|
|
|
|
ObjectPool pool;
|
|
DescriptorTbl* desc_tbl = nullptr;
|
|
st = DescriptorTbl::create(&pool, t_desc_tbl, &desc_tbl);
|
|
ASSERT_TRUE(st.ok());
|
|
RowDescriptor row_desc(*desc_tbl, {0}, {false});
|
|
TupleDescriptor* tuple_desc = desc_tbl->get_tuple_descriptor(0);
|
|
RowBatch batch(row_desc, 1024);
|
|
// 12, 1, "abc"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 12;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 1;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 3;
|
|
memcpy(str_val->ptr, "abc", str_val->len);
|
|
|
|
// 1:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(10, partition->id);
|
|
}
|
|
// 13, 3, "abcd"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 13;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 3;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 4;
|
|
memcpy(str_val->ptr, "abcd", str_val->len);
|
|
|
|
// 3:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(11, partition->id);
|
|
}
|
|
// 14, 50, "abcde"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 14;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 50;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 5;
|
|
memcpy(str_val->ptr, "abcde", str_val->len);
|
|
|
|
// 50:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_FALSE(found);
|
|
}
|
|
|
|
// 15, 6, "abcdef"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 15;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 6;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 6;
|
|
memcpy(str_val->ptr, "abcdef", str_val->len);
|
|
|
|
// 6:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(12, partition->id);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* multi list partition key test
|
|
*
|
|
* PARTITION BY LIST(c2, c3)
|
|
* (
|
|
* PARTITION p1 VALUES IN (("1", "beijing"),("1", "shanghai")),
|
|
* PARTITION p2 VALUES IN (("1", "tianjin"),("2", "beijing")),
|
|
* PARTITION p3 VALUES IN (("2", "shanghai"))
|
|
* )
|
|
*
|
|
*/
|
|
TEST_F(OlapTablePartitionParamTest, multi_list_partition) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << schema->debug_string();
|
|
|
|
// 1
|
|
TExprNode node_1;
|
|
node_1.node_type = TExprNodeType::INT_LITERAL;
|
|
node_1.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
node_1.num_children = 0;
|
|
node_1.__isset.int_literal = true;
|
|
node_1.int_literal.value = 1;
|
|
// 2
|
|
TExprNode node_2;
|
|
node_2.node_type = TExprNodeType::INT_LITERAL;
|
|
node_2.type = t_desc_tbl.slotDescriptors[1].slotType;
|
|
node_2.num_children = 0;
|
|
node_2.__isset.int_literal = true;
|
|
node_2.int_literal.value = 2;
|
|
// beijing
|
|
TExprNode node_b;
|
|
node_b.node_type = TExprNodeType::STRING_LITERAL;
|
|
node_b.type = t_desc_tbl.slotDescriptors[2].slotType;
|
|
node_b.num_children = 0;
|
|
node_b.__isset.string_literal = true;
|
|
node_b.string_literal.value = "beijing";
|
|
// shanghai
|
|
TExprNode node_s;
|
|
node_s.node_type = TExprNodeType::STRING_LITERAL;
|
|
node_s.type = t_desc_tbl.slotDescriptors[2].slotType;
|
|
node_s.num_children = 0;
|
|
node_s.__isset.string_literal = true;
|
|
node_s.string_literal.value = "shanghai";
|
|
// tianjin
|
|
TExprNode node_t;
|
|
node_t.node_type = TExprNodeType::STRING_LITERAL;
|
|
node_t.type = t_desc_tbl.slotDescriptors[2].slotType;
|
|
node_t.num_children = 0;
|
|
node_t.__isset.string_literal = true;
|
|
node_t.string_literal.value = "tianjin";
|
|
|
|
// (1, beijing)
|
|
std::vector<TExprNode> t_nodes_1;
|
|
t_nodes_1.emplace_back(node_1);
|
|
t_nodes_1.emplace_back(node_b);
|
|
|
|
// (1, shanghai)
|
|
std::vector<TExprNode> t_nodes_2;
|
|
t_nodes_2.emplace_back(node_1);
|
|
t_nodes_2.emplace_back(node_s);
|
|
|
|
// (1, tianjin)
|
|
std::vector<TExprNode> t_nodes_3;
|
|
t_nodes_3.emplace_back(node_1);
|
|
t_nodes_3.emplace_back(node_t);
|
|
|
|
// (2, beijing)
|
|
std::vector<TExprNode> t_nodes_4;
|
|
t_nodes_4.emplace_back(node_2);
|
|
t_nodes_4.emplace_back(node_b);
|
|
|
|
// (2, shanghai)
|
|
std::vector<TExprNode> t_nodes_5;
|
|
t_nodes_5.emplace_back(node_2);
|
|
t_nodes_5.emplace_back(node_s);
|
|
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_partition_columns({"c2", "c3"});
|
|
t_partition_param.__set_distributed_columns({"c1"});
|
|
t_partition_param.partitions.resize(3);
|
|
|
|
// (("1", "beijing"),("1", "shanghai"))
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].__isset.in_keys = true;
|
|
t_partition_param.partitions[0].in_keys.resize(2);
|
|
t_partition_param.partitions[0].in_keys[0] = t_nodes_1;
|
|
t_partition_param.partitions[0].in_keys[1] = t_nodes_2;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[0].indexes[1].tablets = {22};
|
|
|
|
// (("1", "tianjin"),("2", "beijing"))
|
|
t_partition_param.partitions[1].id = 11;
|
|
t_partition_param.partitions[1].__isset.in_keys = true;
|
|
t_partition_param.partitions[1].in_keys.emplace_back(t_nodes_3);
|
|
t_partition_param.partitions[1].in_keys.emplace_back(t_nodes_4);
|
|
t_partition_param.partitions[1].num_buckets = 2;
|
|
t_partition_param.partitions[1].indexes.resize(2);
|
|
t_partition_param.partitions[1].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[1].indexes[0].tablets = {31, 32};
|
|
t_partition_param.partitions[1].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[1].indexes[1].tablets = {33, 34};
|
|
|
|
// (("2", "shanghai")))
|
|
t_partition_param.partitions[2].id = 12;
|
|
t_partition_param.partitions[2].__isset.in_keys = true;
|
|
t_partition_param.partitions[2].in_keys.emplace_back(t_nodes_5);
|
|
t_partition_param.partitions[2].num_buckets = 4;
|
|
t_partition_param.partitions[2].indexes.resize(2);
|
|
t_partition_param.partitions[2].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[2].indexes[0].tablets = {41, 42, 43, 44};
|
|
t_partition_param.partitions[2].indexes[1].index_id = 5;
|
|
t_partition_param.partitions[2].indexes[1].tablets = {45, 46, 47, 48};
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
LOG(INFO) << st.get_error_msg();
|
|
ASSERT_TRUE(st.ok());
|
|
LOG(INFO) << part.debug_string();
|
|
|
|
ObjectPool pool;
|
|
DescriptorTbl* desc_tbl = nullptr;
|
|
st = DescriptorTbl::create(&pool, t_desc_tbl, &desc_tbl);
|
|
ASSERT_TRUE(st.ok());
|
|
RowDescriptor row_desc(*desc_tbl, {0}, {false});
|
|
TupleDescriptor* tuple_desc = desc_tbl->get_tuple_descriptor(0);
|
|
RowBatch batch(row_desc, 1024);
|
|
// 12, 1, "beijing"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 12;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 1;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 7;
|
|
memcpy(str_val->ptr, "beijing", str_val->len);
|
|
|
|
// 1, beijing
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(10, partition->id);
|
|
}
|
|
// 13, 2, "shanghai"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 13;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 2;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 8;
|
|
memcpy(str_val->ptr, "shanghai", str_val->len);
|
|
|
|
// 2, shanghai
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(12, partition->id);
|
|
}
|
|
// 14, 50, "beijing"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 14;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 50;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 7;
|
|
memcpy(str_val->ptr, "beijing", str_val->len);
|
|
|
|
// 50, beijing
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_FALSE(found);
|
|
}
|
|
|
|
// 15, 1, "tianjin"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 15;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 1;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = reinterpret_cast<char*>(batch.tuple_data_pool()->allocate(10));
|
|
str_val->len = 7;
|
|
memcpy(str_val->ptr, "tianjin", str_val->len);
|
|
|
|
// 1, tianjin
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(11, partition->id);
|
|
}
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, to_protobuf) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
POlapTableSchemaParam pschema;
|
|
schema->to_protobuf(&pschema);
|
|
{
|
|
std::shared_ptr<OlapTableSchemaParam> schema2(new OlapTableSchemaParam());
|
|
auto st = schema2->init(pschema);
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
ASSERT_STREQ(schema->debug_string().c_str(), schema2->debug_string().c_str());
|
|
}
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, unknown_index_column) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto tschema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
tschema.indexes[0].columns.push_back("unknown_col");
|
|
auto st = schema->init(tschema);
|
|
ASSERT_FALSE(st.ok());
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, unpartitioned) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(1);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
ObjectPool pool;
|
|
DescriptorTbl* desc_tbl = nullptr;
|
|
st = DescriptorTbl::create(&pool, t_desc_tbl, &desc_tbl);
|
|
ASSERT_TRUE(st.ok());
|
|
RowDescriptor row_desc(*desc_tbl, {0}, {false});
|
|
TupleDescriptor* tuple_desc = desc_tbl->get_tuple_descriptor(0);
|
|
RowBatch batch(row_desc, 1024);
|
|
// 12, 9, "abc"
|
|
{
|
|
Tuple* tuple = (Tuple*)batch.tuple_data_pool()->allocate(tuple_desc->byte_size());
|
|
memset(tuple, 0, tuple_desc->byte_size());
|
|
|
|
*reinterpret_cast<int*>(tuple->get_slot(4)) = 12;
|
|
*reinterpret_cast<int64_t*>(tuple->get_slot(8)) = 9;
|
|
StringValue* str_val = reinterpret_cast<StringValue*>(tuple->get_slot(16));
|
|
str_val->ptr = (char*)batch.tuple_data_pool()->allocate(10);
|
|
str_val->len = 3;
|
|
memcpy(str_val->ptr, "abc", str_val->len);
|
|
|
|
// 9:
|
|
const OlapTablePartition* partition = nullptr;
|
|
auto found = part.find_partition(tuple, &partition);
|
|
ASSERT_TRUE(found);
|
|
ASSERT_EQ(10, partition->id);
|
|
}
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, unknown_partition_column) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_partition_column("c4");
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(1);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_FALSE(st.ok());
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, unknown_distributed_col) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_distributed_columns({"c4"});
|
|
t_partition_param.partitions.resize(1);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 5;
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_FALSE(st.ok());
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, bad_index) {
|
|
TDescriptorTable t_desc_tbl;
|
|
auto t_schema = get_schema(&t_desc_tbl);
|
|
std::shared_ptr<OlapTableSchemaParam> schema(new OlapTableSchemaParam());
|
|
auto st = schema->init(t_schema);
|
|
ASSERT_TRUE(st.ok());
|
|
|
|
{
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(1);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(1);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_FALSE(st.ok());
|
|
}
|
|
{
|
|
// (-oo, 10] | [10.50) | [60, +oo)
|
|
TOlapTablePartitionParam t_partition_param;
|
|
t_partition_param.db_id = 1;
|
|
t_partition_param.table_id = 2;
|
|
t_partition_param.version = 0;
|
|
t_partition_param.__set_partition_column("c4");
|
|
t_partition_param.__set_distributed_columns({"c1", "c3"});
|
|
t_partition_param.partitions.resize(1);
|
|
t_partition_param.partitions[0].id = 10;
|
|
t_partition_param.partitions[0].num_buckets = 1;
|
|
t_partition_param.partitions[0].indexes.resize(2);
|
|
t_partition_param.partitions[0].indexes[0].index_id = 4;
|
|
t_partition_param.partitions[0].indexes[0].tablets = {21};
|
|
t_partition_param.partitions[0].indexes[1].index_id = 6;
|
|
|
|
OlapTablePartitionParam part(schema, t_partition_param);
|
|
st = part.init();
|
|
ASSERT_FALSE(st.ok());
|
|
}
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, tableLoacation) {
|
|
TOlapTableLocationParam tparam;
|
|
tparam.tablets.resize(1);
|
|
tparam.tablets[0].tablet_id = 1;
|
|
OlapTableLocationParam location(tparam);
|
|
{
|
|
auto loc = location.find_tablet(1);
|
|
ASSERT_TRUE(loc != nullptr);
|
|
}
|
|
{
|
|
auto loc = location.find_tablet(2);
|
|
ASSERT_TRUE(loc == nullptr);
|
|
}
|
|
}
|
|
|
|
TEST_F(OlapTablePartitionParamTest, NodesInfo) {
|
|
TPaloNodesInfo tinfo;
|
|
tinfo.nodes.resize(1);
|
|
tinfo.nodes[0].id = 1;
|
|
DorisNodesInfo nodes(tinfo);
|
|
{
|
|
auto node = nodes.find_node(1);
|
|
ASSERT_TRUE(node != nullptr);
|
|
}
|
|
{
|
|
auto node = nodes.find_node(2);
|
|
ASSERT_TRUE(node == nullptr);
|
|
}
|
|
}
|
|
|
|
} // namespace doris
|
|
|
|
int main(int argc, char* argv[]) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|