Files
doris/be/src/runtime/dpp_sink_internal.cpp
Mingyu Chen f431d8d94c [Enhance][Log] Make RPC error log more clear (#4702)
At present, when some rpc errors occur, the client cannot obtain the error information well.

And this CL change the RPC error returned to client like this:

```
ERROR 1064 (HY000): errCode = 2, detailMessage = there is no scanNode Backend. [10002: in black list(A error 
occurred: errorCode=2001 errorMessage:Channel inactive error!)]

ERROR 1064 (HY000): failed to send brpc batch, error=The server is overcrowded, error_text=[E1011]The server is 
overcrowded @xx.xx.xx.xx:8060 [R1][E1011]The server is overcrowded @xx.xx.xx.xx:8060 [R2][E1011]The server is 
overcrowded @xx.xx.xx.xx:8060 [R3][E1011]The server is overcrowded @xx.xx.xx.xx:8060, client: yy.yy.yy.yy
```
2020-10-13 10:08:43 +08:00

246 lines
8.3 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 "runtime/dpp_sink_internal.h"
#include <thrift/protocol/TDebugProtocol.h>
#include "common/object_pool.h"
#include "exprs/expr.h"
#include "runtime/runtime_state.h"
#include "runtime/descriptors.h"
#include "exec/text_converter.hpp"
#include "gen_cpp/DataSinks_types.h"
namespace doris {
PartRangeKey PartRangeKey::_s_pos_infinite(1);
PartRangeKey PartRangeKey::_s_neg_infinite(-1);
PartRange PartRange::_s_all_range = {
._start_key = PartRangeKey::neg_infinite(),
._end_key = PartRangeKey::pos_infinite(),
._include_start_key = true,
._include_end_key = true,
};
RollupSchema::RollupSchema() {
}
RollupSchema::~RollupSchema() {
}
Status RollupSchema::from_thrift(
ObjectPool* pool, const TRollupSchema& t_schema, RollupSchema* schema) {
if (t_schema.values.size() != t_schema.value_ops.size()) {
std::stringstream ss;
ss << "values size(" << t_schema.values.size() << ") not equal with value_ops size("
<< t_schema.value_ops.size() << ")";
return Status::InternalError(ss.str());
}
schema->_keys_type = t_schema.keys_type;
if (false == t_schema.__isset.keys_type) {
//be compatible for existing table with no keys type
schema->_keys_type = "AGG_KEYS";
} else {
schema->_keys_type = t_schema.keys_type;
}
RETURN_IF_ERROR(Expr::create_expr_trees(
pool, t_schema.keys, &schema->_key_ctxs));
RETURN_IF_ERROR(Expr::create_expr_trees(
pool, t_schema.values, &schema->_value_ctxs));
schema->_value_ops.assign(t_schema.value_ops.begin(), t_schema.value_ops.end());
return Status::OK();
}
Status RollupSchema::prepare(
RuntimeState* state, const RowDescriptor& row_desc, const std::shared_ptr<MemTracker>& mem_tracker) {
RETURN_IF_ERROR(Expr::prepare(_key_ctxs, state, row_desc, mem_tracker));
RETURN_IF_ERROR(Expr::prepare(_value_ctxs, state, row_desc, mem_tracker));
return Status::OK();
}
Status RollupSchema::open(RuntimeState* state) {
RETURN_IF_ERROR(Expr::open(_key_ctxs, state));
RETURN_IF_ERROR(Expr::open(_value_ctxs, state));
return Status::OK();
}
void RollupSchema::close(RuntimeState* state) {
Expr::close(_key_ctxs, state);
Expr::close(_value_ctxs, state);
}
Status PartRangeKey::from_thrift(
ObjectPool* pool,
const TPartitionKey& t_key,
PartRangeKey* key) {
key->_sign = t_key.sign;
if (key->_sign != 0) {
return Status::OK();
}
key->_type = thrift_to_type(t_key.type);
key->_str_key = t_key.key;
StringParser::ParseResult parse_result = StringParser::PARSE_SUCCESS;
switch (key->_type) {
case TYPE_TINYINT: {
key->_key = pool->add(new int8_t());
int8_t* int_value = reinterpret_cast<int8_t*>(key->_key);
*int_value = StringParser::string_to_int<int8_t>(
t_key.key.c_str(), t_key.key.length(), &parse_result);
break;
}
case TYPE_SMALLINT: {
key->_key = pool->add(new int16_t());
int16_t* int_value = reinterpret_cast<int16_t*>(key->_key);
*int_value = StringParser::string_to_int<int16_t>(
t_key.key.c_str(), t_key.key.length(), &parse_result);
break;
}
case TYPE_INT: {
key->_key = pool->add(new int32_t());
int32_t* int_value = reinterpret_cast<int32_t*>(key->_key);
*int_value = StringParser::string_to_int<int32_t>(
t_key.key.c_str(), t_key.key.length(), &parse_result);
break;
}
case TYPE_BIGINT: {
key->_key = pool->add(new int64_t());
int64_t* int_value = reinterpret_cast<int64_t*>(key->_key);
*int_value = StringParser::string_to_int<int64_t>(
t_key.key.c_str(), t_key.key.length(), &parse_result);
break;
}
case TYPE_LARGEINT: {
key->_key = pool->add(new __int128());
__int128* int_value = reinterpret_cast<__int128*>(key->_key);
*int_value = StringParser::string_to_int<__int128>(
t_key.key.c_str(), t_key.key.length(), &parse_result);
break;
}
case TYPE_DATE: {
key->_key = pool->add(new DateTimeValue());
DateTimeValue* datetime = reinterpret_cast<DateTimeValue*>(key->_key);
if (!(datetime->from_date_str(t_key.key.c_str(), t_key.key.length()))) {
std::stringstream error_msg;
error_msg << "Fail to convert date string:" << t_key.key;
return Status::InternalError(error_msg.str());
}
datetime->cast_to_date();
break;
}
case TYPE_DATETIME: {
key->_key = pool->add(new DateTimeValue());
DateTimeValue* datetime = reinterpret_cast<DateTimeValue*>(key->_key);
if (!(datetime->from_date_str(t_key.key.c_str(), t_key.key.length()))) {
std::stringstream error_msg;
error_msg << "Fail to convert datetime string:" << t_key.key;
return Status::InternalError(error_msg.str());
}
datetime->to_datetime();
break;
}
default:
DCHECK(false) << "bad partition key column type: " << type_to_string(key->_type);
break;
}
if (parse_result != StringParser::PARSE_SUCCESS) {
std::stringstream error_msg;
error_msg << "Fail to convert string:" << t_key.key;
return Status::InternalError(error_msg.str());
}
return Status::OK();
}
Status PartRangeKey::from_value(
PrimitiveType type,
void* value,
PartRangeKey* key) {
key->_sign = 0;
key->_type = type;
key->_key = value;
return Status::OK();
}
Status PartRange::from_thrift(
ObjectPool* pool,
const TPartitionRange& t_part_range,
PartRange* range) {
VLOG_ROW << "construct from thrift: " << apache::thrift::ThriftDebugString(t_part_range);
RETURN_IF_ERROR(PartRangeKey::from_thrift(
pool, t_part_range.start_key, &range->_start_key));
RETURN_IF_ERROR(PartRangeKey::from_thrift(
pool, t_part_range.end_key, &range->_end_key));
range->_include_start_key = t_part_range.include_start_key;
range->_include_end_key = t_part_range.include_end_key;
VLOG_ROW << "after construct: " << range->debug_string();
return Status::OK();
}
Status PartitionInfo::from_thrift(
ObjectPool* pool,
const TRangePartition& t_partition,
PartitionInfo* partition) {
partition->_id = t_partition.partition_id;
RETURN_IF_ERROR(PartRange::from_thrift(pool, t_partition.range, &partition->_range));
if (t_partition.__isset.distributed_exprs) {
partition->_distributed_bucket = t_partition.distribute_bucket;
if (partition->_distributed_bucket == 0) {
return Status::InternalError("Distributed bucket is 0.");
}
RETURN_IF_ERROR(Expr::create_expr_trees(
pool, t_partition.distributed_exprs, &partition->_distributed_expr_ctxs));
}
return Status::OK();
}
Status PartitionInfo::prepare(RuntimeState* state, const RowDescriptor& row_desc,
const std::shared_ptr<MemTracker>& mem_tracker) {
if (_distributed_expr_ctxs.size() > 0) {
RETURN_IF_ERROR(Expr::prepare(_distributed_expr_ctxs, state, row_desc, mem_tracker));
}
return Status::OK();
}
Status PartitionInfo::open(RuntimeState* state) {
if (_distributed_expr_ctxs.size() > 0) {
return Expr::open(_distributed_expr_ctxs, state);
}
return Status::OK();
}
void PartitionInfo::close(RuntimeState* state) {
if (_distributed_expr_ctxs.size() > 0) {
Expr::close(_distributed_expr_ctxs, state);
}
}
}