xinyiZzz commented on code in PR #43281: URL: https://github.com/apache/doris/pull/43281#discussion_r1835597650
########## be/src/service/arrow_flight/arrow_flight_batch_reader.cpp: ########## @@ -18,52 +18,278 @@ #include "service/arrow_flight/arrow_flight_batch_reader.h" #include <arrow/status.h> +#include <arrow/type.h> +#include <gen_cpp/internal_service.pb.h> + +#include <utility> -#include "arrow/builder.h" #include "runtime/exec_env.h" +#include "runtime/memory/mem_tracker_limiter.h" #include "runtime/result_buffer_mgr.h" +#include "runtime/thread_context.h" +#include "service/backend_options.h" +#include "util/arrow/block_convertor.h" #include "util/arrow/row_batch.h" #include "util/arrow/utils.h" +#include "util/brpc_client_cache.h" +#include "util/ref_count_closure.h" +#include "util/string_util.h" +#include "vec/core/block.h" + +namespace doris::flight { + +constexpr size_t BRPC_CONTROLLER_TIMEOUT_MS = 60 * 1000; + +ArrowFlightBatchReaderBase::ArrowFlightBatchReaderBase( + const std::shared_ptr<QueryStatement>& statement) + : _statement(statement) {} + +std::shared_ptr<arrow::Schema> ArrowFlightBatchReaderBase::schema() const { + return _schema; +} -namespace doris { -namespace flight { +arrow::Status ArrowFlightBatchReaderBase::_return_invalid_status(const std::string& msg) { + std::string status_msg = + fmt::format("ArrowFlightBatchReader {}, packet_seq={}, result={}:{}, finistId={}", msg, + _packet_seq, _statement->result_addr.hostname, _statement->result_addr.port, + print_id(_statement->query_id)); + LOG(WARNING) << status_msg; + return arrow::Status::Invalid(status_msg); +} -std::shared_ptr<arrow::Schema> ArrowFlightBatchReader::schema() const { - return schema_; +ArrowFlightBatchReaderBase::~ArrowFlightBatchReaderBase() { +#ifndef NDEBUG + LOG(INFO) << fmt::format( + "ArrowFlightBatchReader finished, packet_seq={}, result_addr={}:{}, finistId={}, " Review Comment: 没有 LOG(DEBUG) 这个用法,除非用 VLOG,但VLOG还要改conf。。预期是不在线上打印,避免压测时刷太多日志,但平时跑流水线能打印帮助定位问题 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org