|
| 1 | +// Copyright 2021-present StarRocks, Inc. All rights reserved. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +#include "runtime/http_result_writer.h" |
| 16 | + |
| 17 | +#include <column/column_helper.h> |
| 18 | + |
| 19 | +#include "column/chunk.h" |
| 20 | +#include "column/const_column.h" |
| 21 | +#include "exprs/cast_expr.h" |
| 22 | +#include "exprs/expr.h" |
| 23 | +#include "rapidjson/stringbuffer.h" |
| 24 | +#include "rapidjson/writer.h" |
| 25 | +#include "runtime/buffer_control_block.h" |
| 26 | +#include "runtime/current_thread.h" |
| 27 | +#include "types/logical_type.h" |
| 28 | + |
| 29 | +namespace starrocks { |
| 30 | + |
| 31 | +HttpResultWriter::HttpResultWriter(BufferControlBlock* sinker, const std::vector<ExprContext*>& output_expr_ctxs, |
| 32 | + RuntimeProfile* parent_profile, TResultSinkFormatType::type format_type) |
| 33 | + : _sinker(sinker), |
| 34 | + _output_expr_ctxs(output_expr_ctxs), |
| 35 | + _parent_profile(parent_profile), |
| 36 | + _format_type(format_type) {} |
| 37 | + |
| 38 | +Status HttpResultWriter::init(RuntimeState* state) { |
| 39 | + _init_profile(); |
| 40 | + if (nullptr == _sinker) { |
| 41 | + return Status::InternalError("sinker is NULL pointer."); |
| 42 | + } |
| 43 | + |
| 44 | + return Status::OK(); |
| 45 | +} |
| 46 | + |
| 47 | +void HttpResultWriter::_init_profile() { |
| 48 | + _append_chunk_timer = ADD_TIMER(_parent_profile, "AppendChunkTime"); |
| 49 | + _convert_tuple_timer = ADD_CHILD_TIMER(_parent_profile, "TupleConvertTime", "AppendChunkTime"); |
| 50 | + _result_send_timer = ADD_CHILD_TIMER(_parent_profile, "ResultRendTime", "AppendChunkTime"); |
| 51 | + _sent_rows_counter = ADD_COUNTER(_parent_profile, "NumSentRows", TUnit::UNIT); |
| 52 | +} |
| 53 | + |
| 54 | +// transform one row into json format |
| 55 | +void HttpResultWriter::_transform_row_to_json(const Columns& result_columns, int idx) { |
| 56 | + int num_columns = result_columns.size(); |
| 57 | + |
| 58 | + row_str.append("{\"data\":["); |
| 59 | + for (auto& result_column : result_columns) { |
| 60 | + std::string row = cast_type_to_json_str(result_column, idx).value(); |
| 61 | + row_str.append(row); |
| 62 | + if (result_column != result_columns[num_columns - 1]) { |
| 63 | + row_str.append(","); |
| 64 | + } |
| 65 | + } |
| 66 | + row_str.append("]}\n"); |
| 67 | +} |
| 68 | + |
| 69 | +Status HttpResultWriter::append_chunk(Chunk* chunk) { |
| 70 | + return Status::NotSupported("HttpResultWriter doesn't support non-pipeline engine"); |
| 71 | +} |
| 72 | + |
| 73 | +Status HttpResultWriter::close() { |
| 74 | + COUNTER_SET(_sent_rows_counter, _written_rows); |
| 75 | + return Status::OK(); |
| 76 | +} |
| 77 | + |
| 78 | +StatusOr<TFetchDataResultPtrs> HttpResultWriter::process_chunk(Chunk* chunk) { |
| 79 | + SCOPED_TIMER(_append_chunk_timer); |
| 80 | + int num_rows = chunk->num_rows(); |
| 81 | + std::vector<TFetchDataResultPtr> results; |
| 82 | + |
| 83 | + Columns result_columns; |
| 84 | + // Step 1: compute expr |
| 85 | + int num_columns = _output_expr_ctxs.size(); |
| 86 | + result_columns.reserve(num_columns); |
| 87 | + |
| 88 | + for (int i = 0; i < num_columns; ++i) { |
| 89 | + ASSIGN_OR_RETURN(ColumnPtr column, _output_expr_ctxs[i]->evaluate(chunk)); |
| 90 | + column = _output_expr_ctxs[i]->root()->type().type == TYPE_TIME |
| 91 | + ? ColumnHelper::convert_time_column_from_double_to_str(column) |
| 92 | + : column; |
| 93 | + result_columns.emplace_back(std::move(column)); |
| 94 | + } |
| 95 | + |
| 96 | + // Step 2: convert chunk to http json row format row by row |
| 97 | + { |
| 98 | + TRY_CATCH_ALLOC_SCOPE_START() |
| 99 | + row_str.reserve(128); |
| 100 | + size_t current_bytes = 0; |
| 101 | + int current_rows = 0; |
| 102 | + SCOPED_TIMER(_convert_tuple_timer); |
| 103 | + auto result = std::make_unique<TFetchDataResult>(); |
| 104 | + auto& result_rows = result->result_batch.rows; |
| 105 | + result_rows.resize(num_rows); |
| 106 | + |
| 107 | + for (int i = 0; i < num_rows; ++i) { |
| 108 | + switch (_format_type) { |
| 109 | + case TResultSinkFormatType::type::JSON: |
| 110 | + _transform_row_to_json(result_columns, i); |
| 111 | + break; |
| 112 | + case TResultSinkFormatType::type::OTHERS: |
| 113 | + return Status::NotSupported("HttpResultWriter only support json format right now"); |
| 114 | + } |
| 115 | + size_t len = row_str.size(); |
| 116 | + |
| 117 | + if (UNLIKELY(current_bytes + len >= _max_row_buffer_size)) { |
| 118 | + result_rows.resize(current_rows); |
| 119 | + results.emplace_back(std::move(result)); |
| 120 | + |
| 121 | + result = std::make_unique<TFetchDataResult>(); |
| 122 | + result_rows = result->result_batch.rows; |
| 123 | + result_rows.resize(num_rows - i); |
| 124 | + |
| 125 | + current_bytes = 0; |
| 126 | + current_rows = 0; |
| 127 | + } |
| 128 | + |
| 129 | + // VLOG_ROW << "written row:" << row_str; |
| 130 | + result_rows[current_rows] = std::move(row_str); |
| 131 | + row_str.clear(); |
| 132 | + |
| 133 | + row_str.reserve(len * 1.1); |
| 134 | + |
| 135 | + current_bytes += len; |
| 136 | + current_rows += 1; |
| 137 | + } |
| 138 | + if (current_rows > 0) { |
| 139 | + result_rows.resize(current_rows); |
| 140 | + results.emplace_back(std::move(result)); |
| 141 | + } |
| 142 | + TRY_CATCH_ALLOC_SCOPE_END() |
| 143 | + } |
| 144 | + return results; |
| 145 | +} |
| 146 | + |
| 147 | +StatusOr<bool> HttpResultWriter::try_add_batch(TFetchDataResultPtrs& results) { |
| 148 | + SCOPED_TIMER(_result_send_timer); |
| 149 | + size_t num_rows = 0; |
| 150 | + for (auto& result : results) { |
| 151 | + num_rows += result->result_batch.rows.size(); |
| 152 | + } |
| 153 | + |
| 154 | + auto status = _sinker->try_add_batch(results); |
| 155 | + if (status.ok()) { |
| 156 | + // success in add result to ResultQueue of _sinker |
| 157 | + if (status.value()) { |
| 158 | + _written_rows += num_rows; |
| 159 | + results.clear(); |
| 160 | + } |
| 161 | + } else { |
| 162 | + results.clear(); |
| 163 | + LOG(WARNING) << "Append result batch to sink failed: status=" << status.status().to_string(); |
| 164 | + } |
| 165 | + return status; |
| 166 | +} |
| 167 | + |
| 168 | +} // namespace starrocks |
0 commit comments