mem tracker can be logically divided into 4 layers: 1)process 2)type 3)query/load/compation task etc. 4)exec node etc.
type includes
enum Type {
GLOBAL = 0, // Life cycle is the same as the process, e.g. Cache and default Orphan
QUERY = 1, // Count the memory consumption of all Query tasks.
LOAD = 2, // Count the memory consumption of all Load tasks.
COMPACTION = 3, // Count the memory consumption of all Base and Cumulative tasks.
SCHEMA_CHANGE = 4, // Count the memory consumption of all SchemaChange tasks.
CLONE = 5, // Count the memory consumption of all EngineCloneTask. Note: Memory that does not contain make/release snapshots.
BATCHLOAD = 6, // Count the memory consumption of all EngineBatchLoadTask.
CONSISTENCY = 7 // Count the memory consumption of all EngineChecksumTask.
}
Object pointers are no longer saved between each layer, and the values of process and each type are periodically aggregated.
other fix:
In [fix](memtracker) Fix transmit_tracker null pointer because phamp is not thread safe #13528, I tried to separate the memory that was manually abandoned in the query from the orphan mem tracker. But in the actual test, the accuracy of this part of the memory cannot be guaranteed, so put it back to the orphan mem tracker again.
144 lines
4.7 KiB
C++
144 lines
4.7 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/es_http_scan_node.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <string>
|
|
|
|
#include "common/object_pool.h"
|
|
#include "gen_cpp/PlanNodes_types.h"
|
|
#include "runtime/descriptors.h"
|
|
#include "runtime/mem_pool.h"
|
|
#include "runtime/row_batch.h"
|
|
#include "runtime/runtime_state.h"
|
|
#include "runtime/string_value.h"
|
|
#include "runtime/tuple_row.h"
|
|
#include "util/debug_util.h"
|
|
#include "util/runtime_profile.h"
|
|
|
|
using std::vector;
|
|
|
|
namespace doris {
|
|
|
|
// mock
|
|
class EsHttpScanNodeTest : public testing::Test {
|
|
public:
|
|
EsHttpScanNodeTest() : _runtime_state(TQueryGlobals()) {
|
|
_runtime_state.init_mem_trackers();
|
|
TDescriptorTable t_desc_table;
|
|
|
|
// table descriptors
|
|
TTableDescriptor t_table_desc;
|
|
t_table_desc.id = 0;
|
|
t_table_desc.tableType = TTableType::ES_TABLE;
|
|
t_table_desc.numCols = 1;
|
|
t_table_desc.numClusteringCols = 0;
|
|
t_table_desc.__isset.esTable = true;
|
|
t_desc_table.tableDescriptors.push_back(t_table_desc);
|
|
t_desc_table.__isset.tableDescriptors = true;
|
|
|
|
// TSlotDescriptor
|
|
int offset = 1;
|
|
int i = 0;
|
|
// id
|
|
{
|
|
TSlotDescriptor t_slot_desc;
|
|
t_slot_desc.__set_slotType(TypeDescriptor(TYPE_INT).to_thrift());
|
|
t_slot_desc.__set_columnPos(i);
|
|
t_slot_desc.__set_byteOffset(offset);
|
|
t_slot_desc.__set_nullIndicatorByte(0);
|
|
t_slot_desc.__set_nullIndicatorBit(-1);
|
|
t_slot_desc.__set_slotIdx(i);
|
|
t_slot_desc.__set_isMaterialized(true);
|
|
t_desc_table.slotDescriptors.push_back(t_slot_desc);
|
|
offset += sizeof(int);
|
|
}
|
|
|
|
TTupleDescriptor t_tuple_desc;
|
|
t_tuple_desc.id = 0;
|
|
t_tuple_desc.byteSize = offset;
|
|
t_tuple_desc.numNullBytes = 1;
|
|
t_tuple_desc.tableId = 0;
|
|
t_tuple_desc.__isset.tableId = true;
|
|
t_desc_table.__isset.slotDescriptors = true;
|
|
t_desc_table.tupleDescriptors.push_back(t_tuple_desc);
|
|
|
|
DescriptorTbl::create(&_obj_pool, t_desc_table, &_desc_tbl);
|
|
_runtime_state.set_desc_tbl(_desc_tbl);
|
|
|
|
// Node Id
|
|
_tnode.node_id = 0;
|
|
_tnode.node_type = TPlanNodeType::SCHEMA_SCAN_NODE;
|
|
_tnode.num_children = 0;
|
|
_tnode.limit = -1;
|
|
_tnode.row_tuples.push_back(0);
|
|
_tnode.nullable_tuples.push_back(false);
|
|
_tnode.es_scan_node.tuple_id = 0;
|
|
std::map<std::string, std::string> properties;
|
|
_tnode.es_scan_node.__set_properties(properties);
|
|
_tnode.__isset.es_scan_node = true;
|
|
}
|
|
|
|
protected:
|
|
virtual void SetUp() {}
|
|
virtual void TearDown() {}
|
|
TPlanNode _tnode;
|
|
ObjectPool _obj_pool;
|
|
DescriptorTbl* _desc_tbl;
|
|
RuntimeState _runtime_state;
|
|
};
|
|
|
|
TEST_F(EsHttpScanNodeTest, normal_use) {
|
|
EsHttpScanNode scan_node(&_obj_pool, _tnode, *_desc_tbl);
|
|
Status status = scan_node.init(_tnode, &_runtime_state);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
status = scan_node.prepare(&_runtime_state);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
// scan range
|
|
TEsScanRange es_scan_range;
|
|
es_scan_range.__set_index("index1");
|
|
es_scan_range.__set_type("docs");
|
|
es_scan_range.__set_shard_id(0);
|
|
TNetworkAddress es_host;
|
|
es_host.__set_hostname("unknown");
|
|
es_host.__set_port(8200);
|
|
std::vector<TNetworkAddress> es_hosts;
|
|
es_hosts.push_back(es_host);
|
|
es_scan_range.__set_es_hosts(es_hosts);
|
|
TScanRange scan_range;
|
|
scan_range.__set_es_scan_range(es_scan_range);
|
|
TScanRangeParams scan_range_params;
|
|
scan_range_params.__set_scan_range(scan_range);
|
|
std::vector<TScanRangeParams> scan_ranges;
|
|
scan_ranges.push_back(scan_range_params);
|
|
|
|
status = scan_node.set_scan_ranges(scan_ranges);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
status = scan_node.open(&_runtime_state);
|
|
EXPECT_TRUE(status.ok());
|
|
|
|
status = scan_node.close(&_runtime_state);
|
|
EXPECT_FALSE(status.ok());
|
|
}
|
|
|
|
} // namespace doris
|