be/src/exec/operator/operator.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #pragma once |
19 | | |
20 | | #include <fmt/format.h> |
21 | | #include <glog/logging.h> |
22 | | |
23 | | #include <atomic> |
24 | | #include <cstdint> |
25 | | #include <functional> |
26 | | #include <limits> |
27 | | #include <memory> |
28 | | #include <string> |
29 | | #include <utility> |
30 | | #include <vector> |
31 | | |
32 | | #include "common/be_mock_util.h" |
33 | | #include "common/exception.h" |
34 | | #include "common/logging.h" |
35 | | #include "common/status.h" |
36 | | #include "core/block/block.h" |
37 | | #include "exec/exchange/local_exchanger.h" |
38 | | #include "exec/exchange/vdata_stream_recvr.h" |
39 | | #include "exec/operator/operator.h" |
40 | | #include "exec/operator/spill_counters.h" |
41 | | #include "exec/operator/spill_utils.h" |
42 | | #include "exec/pipeline/dependency.h" |
43 | | #include "runtime/memory/mem_tracker.h" |
44 | | #include "runtime/query_context.h" |
45 | | #include "runtime/runtime_profile.h" |
46 | | #include "runtime/runtime_profile_counter_names.h" |
47 | | #include "runtime/runtime_state.h" |
48 | | #include "runtime/thread_context.h" |
49 | | #include "util/block_budget.h" |
50 | | |
51 | | namespace doris { |
52 | | class RowDescriptor; |
53 | | class RuntimeState; |
54 | | class TDataSink; |
55 | | class AsyncResultWriter; |
56 | | class ScoreRuntime; |
57 | | class AnnTopNRuntime; |
58 | | } // namespace doris |
59 | | |
60 | | namespace doris { |
61 | | |
62 | | class OperatorBase; |
63 | | class OperatorXBase; |
64 | | class DataSinkOperatorXBase; |
65 | | |
66 | | using OperatorPtr = std::shared_ptr<OperatorXBase>; |
67 | | using Operators = std::vector<OperatorPtr>; |
68 | | |
69 | | using DataSinkOperatorPtr = std::shared_ptr<DataSinkOperatorXBase>; |
70 | | |
71 | | // This struct is used only for initializing local state. |
72 | | struct LocalStateInfo { |
73 | | RuntimeProfile* parent_profile = nullptr; |
74 | | const std::vector<TScanRangeParams>& scan_ranges; |
75 | | BasicSharedState* shared_state; |
76 | | const std::map<int, std::pair<std::shared_ptr<BasicSharedState>, |
77 | | std::vector<std::shared_ptr<Dependency>>>>& shared_state_map; |
78 | | const int task_idx; |
79 | | }; |
80 | | |
81 | | // This struct is used only for initializing local sink state. |
82 | | struct LocalSinkStateInfo { |
83 | | const int task_idx; |
84 | | RuntimeProfile* parent_profile = nullptr; |
85 | | const int sender_id; |
86 | | BasicSharedState* shared_state; |
87 | | const std::map<int, std::pair<std::shared_ptr<BasicSharedState>, |
88 | | std::vector<std::shared_ptr<Dependency>>>>& shared_state_map; |
89 | | const TDataSink& tsink; |
90 | | }; |
91 | | |
92 | | class OperatorBase { |
93 | | public: |
94 | 927k | explicit OperatorBase() : _child(nullptr), _is_closed(false) {} |
95 | | explicit OperatorBase(bool is_serial_operator) |
96 | 978k | : _child(nullptr), _is_closed(false), _is_serial_operator(is_serial_operator) {} |
97 | 1.90M | virtual ~OperatorBase() = default; |
98 | | |
99 | 0 | virtual bool is_sink() const { return false; } |
100 | | |
101 | 1.07M | virtual bool is_source() const { return false; } |
102 | | |
103 | | [[nodiscard]] virtual const RowDescriptor& row_desc() const; |
104 | | |
105 | 0 | [[nodiscard]] virtual Status init(const TDataSink& tsink) { return Status::OK(); } |
106 | | |
107 | | [[nodiscard]] virtual std::string get_name() const = 0; |
108 | | [[nodiscard]] virtual Status prepare(RuntimeState* state) = 0; |
109 | | [[nodiscard]] virtual Status terminate(RuntimeState* state) = 0; |
110 | | [[nodiscard]] virtual Status close(RuntimeState* state); |
111 | | [[nodiscard]] virtual int node_id() const = 0; |
112 | 687k | [[nodiscard]] virtual int parallelism(RuntimeState* state) const { |
113 | 687k | return _is_serial_operator ? 1 : state->query_parallel_instance_num(); |
114 | 687k | } |
115 | | |
116 | 1.54M | [[nodiscard]] virtual Status set_child(OperatorPtr child) { |
117 | 1.54M | if (_child && child != nullptr) { |
118 | 0 | return Status::InternalError("Child is already set in node name={}", get_name()); |
119 | 0 | } |
120 | 1.54M | _child = child; |
121 | 1.54M | return Status::OK(); |
122 | 1.54M | } |
123 | | |
124 | | // Operators need to be executed serially. (e.g. finalized agg without key) |
125 | 3.61M | [[nodiscard]] virtual bool is_serial_operator() const { return _is_serial_operator; } |
126 | | |
127 | 0 | [[nodiscard]] bool is_closed() const { return _is_closed; } |
128 | | |
129 | 15.0k | virtual size_t revocable_mem_size(RuntimeState* state) const { return 0; } |
130 | | |
131 | 0 | virtual Status revoke_memory(RuntimeState* state) { return Status::OK(); } |
132 | | |
133 | 6.41k | virtual bool is_hash_join_probe() const { return false; } |
134 | | |
135 | | /** |
136 | | * Pipeline task is blockable means it will be blocked in the next run. So we should put the |
137 | | * pipeline task into the blocking task scheduler. |
138 | | */ |
139 | | virtual bool is_blockable(RuntimeState* state) const = 0; |
140 | 0 | virtual void set_low_memory_mode(RuntimeState* state) {} |
141 | | |
142 | | OperatorPtr child() { return _child; } |
143 | 0 | virtual Status reset(RuntimeState* state) { |
144 | 0 | return Status::InternalError("Reset is not implemented in operator: {}", get_name()); |
145 | 0 | } |
146 | | |
147 | | /* -------------- Interfaces to determine the input data properties -------------- */ |
148 | | /** |
149 | | * Return True if this operator relies on the bucket distribution (e.g. COLOCATE join, 1-phase AGG). |
150 | | * Data input to this kind of operators must have the same distribution with the table buckets. |
151 | | * It is also means `required_data_distribution` should be `BUCKET_HASH_SHUFFLE`. |
152 | | * @return |
153 | | */ |
154 | 3.90M | [[nodiscard]] virtual bool is_colocated_operator() const { return false; } |
155 | | /** |
156 | | * Return True if this operator relies on the bucket distribution or specific hash data distribution (e.g. SHUFFLED HASH join). |
157 | | * Data input to this kind of operators must be HASH distributed according to some rules. |
158 | | * All colocated operators are also shuffled operators. |
159 | | * It is also means `required_data_distribution` should be `BUCKET_HASH_SHUFFLE` or `HASH_SHUFFLE`. |
160 | | * @return |
161 | | */ |
162 | 3.89M | [[nodiscard]] virtual bool is_shuffled_operator() const { return false; } |
163 | | /** |
164 | | * For multiple children's operators, return true if this is a shuffled operator or this is followed by a shuffled operator (HASH JOIN and SET OPERATION). |
165 | | * |
166 | | * For single child's operators, return true if this operator is followed by a shuffled operator. |
167 | | * For example, in the plan fragment: |
168 | | * `UNION` -> `SHUFFLED HASH JOIN` |
169 | | * The `SHUFFLED HASH JOIN` is a shuffled operator so the UNION operator is followed by a shuffled operator. |
170 | | */ |
171 | 4.40M | [[nodiscard]] virtual bool followed_by_shuffled_operator() const { |
172 | 4.40M | return _followed_by_shuffled_operator; |
173 | 4.40M | } |
174 | | /** |
175 | | * Update the operator properties according to the plan node. |
176 | | * This is called before `prepare`. |
177 | | */ |
178 | | virtual void update_operator(const TPlanNode& tnode, bool followed_by_shuffled_operator, |
179 | 666k | bool require_bucket_distribution) { |
180 | 666k | _followed_by_shuffled_operator = followed_by_shuffled_operator; |
181 | 666k | _require_bucket_distribution = require_bucket_distribution; |
182 | 666k | } |
183 | | /** |
184 | | * Return the required data distribution of this operator. |
185 | | */ |
186 | | [[nodiscard]] virtual DataDistribution required_data_distribution( |
187 | | RuntimeState* /*state*/) const; |
188 | | |
189 | | protected: |
190 | | [[nodiscard]] static bool is_hash_shuffle(ExchangeType exchange_type); |
191 | | [[nodiscard]] bool child_breaks_local_key_distribution(RuntimeState* state) const; |
192 | | |
193 | | OperatorPtr _child = nullptr; |
194 | | |
195 | | bool _is_closed; |
196 | | bool _followed_by_shuffled_operator = false; |
197 | | bool _require_bucket_distribution = false; |
198 | | bool _is_serial_operator = false; |
199 | | }; |
200 | | |
201 | | class PipelineXLocalStateBase { |
202 | | public: |
203 | | PipelineXLocalStateBase(RuntimeState* state, OperatorXBase* parent); |
204 | 2.49M | virtual ~PipelineXLocalStateBase() = default; |
205 | | |
206 | | template <class TARGET> |
207 | 23.6M | TARGET& cast() { |
208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) |
209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() |
210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); |
211 | 23.6M | return reinterpret_cast<TARGET&>(*this); |
212 | 23.6M | } _ZN5doris23PipelineXLocalStateBase4castINS_22RecCTESourceLocalStateEEERT_v Line | Count | Source | 207 | 10.8k | TARGET& cast() { | 208 | 10.8k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 10.8k | return reinterpret_cast<TARGET&>(*this); | 212 | 10.8k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_21CacheSourceLocalStateEEERT_v Line | Count | Source | 207 | 79 | TARGET& cast() { | 208 | 79 | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 79 | return reinterpret_cast<TARGET&>(*this); | 212 | 79 | } |
_ZN5doris23PipelineXLocalStateBase4castINS_29LocalExchangeSourceLocalStateEEERT_v Line | Count | Source | 207 | 3.54M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 3.54M | return reinterpret_cast<TARGET&>(*this); | 212 | 3.54M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_35MultiCastDataStreamSourceLocalStateEEERT_v Line | Count | Source | 207 | 82.3k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 82.3k | return reinterpret_cast<TARGET&>(*this); | 212 | 82.3k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_18OlapScanLocalStateEEERT_v Line | Count | Source | 207 | 5.10M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 5.10M | return reinterpret_cast<TARGET&>(*this); | 212 | 5.10M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_21GroupCommitLocalStateEEERT_v Line | Count | Source | 207 | 4.33M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 4.33M | return reinterpret_cast<TARGET&>(*this); | 212 | 4.33M | } |
Unexecuted instantiation: _ZN5doris23PipelineXLocalStateBase4castINS_18JDBCScanLocalStateEEERT_v _ZN5doris23PipelineXLocalStateBase4castINS_18FileScanLocalStateEEERT_v Line | Count | Source | 207 | 469k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 469k | return reinterpret_cast<TARGET&>(*this); | 212 | 469k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_23HashJoinProbeLocalStateEEERT_v Line | Count | Source | 207 | 1.09M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 1.09M | return reinterpret_cast<TARGET&>(*this); | 212 | 1.09M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_34PartitionedHashJoinProbeLocalStateEEERT_v Line | Count | Source | 207 | 59 | TARGET& cast() { | 208 | 59 | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 59 | return reinterpret_cast<TARGET&>(*this); | 212 | 59 | } |
_ZN5doris23PipelineXLocalStateBase4castINS_29NestedLoopJoinProbeLocalStateEEERT_v Line | Count | Source | 207 | 249k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 249k | return reinterpret_cast<TARGET&>(*this); | 212 | 249k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_21UnionSourceLocalStateEEERT_v Line | Count | Source | 207 | 433k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 433k | return reinterpret_cast<TARGET&>(*this); | 212 | 433k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_29PartitionSortSourceLocalStateEEERT_v Line | Count | Source | 207 | 1.73k | TARGET& cast() { | 208 | 1.73k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 1.73k | return reinterpret_cast<TARGET&>(*this); | 212 | 1.73k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_25MaterializationLocalStateEEERT_v Line | Count | Source | 207 | 36.6k | TARGET& cast() { | 208 | 36.6k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 36.6k | return reinterpret_cast<TARGET&>(*this); | 212 | 36.6k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_19SetSourceLocalStateILb1EEEEERT_v Line | Count | Source | 207 | 7.40k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 7.40k | return reinterpret_cast<TARGET&>(*this); | 212 | 7.40k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_19SetSourceLocalStateILb0EEEEERT_v Line | Count | Source | 207 | 8.27k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 8.27k | return reinterpret_cast<TARGET&>(*this); | 212 | 8.27k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_18EmptySetLocalStateEEERT_v Line | Count | Source | 207 | 3.33k | TARGET& cast() { | 208 | 3.33k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 3.33k | return reinterpret_cast<TARGET&>(*this); | 212 | 3.33k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_18MetaScanLocalStateEEERT_v Line | Count | Source | 207 | 21.8k | TARGET& cast() { | 208 | 21.8k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 21.8k | return reinterpret_cast<TARGET&>(*this); | 212 | 21.8k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_16SelectLocalStateEEERT_v Line | Count | Source | 207 | 26.7k | TARGET& cast() { | 208 | 26.7k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 26.7k | return reinterpret_cast<TARGET&>(*this); | 212 | 26.7k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_20RecCTEScanLocalStateEEERT_v Line | Count | Source | 207 | 12.3k | TARGET& cast() { | 208 | 12.3k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 12.3k | return reinterpret_cast<TARGET&>(*this); | 212 | 12.3k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_23TableFunctionLocalStateEEERT_v Line | Count | Source | 207 | 55.7k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 55.7k | return reinterpret_cast<TARGET&>(*this); | 212 | 55.7k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_18ExchangeLocalStateEEERT_v Line | Count | Source | 207 | 1.88M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 1.88M | return reinterpret_cast<TARGET&>(*this); | 212 | 1.88M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_30DistinctStreamingAggLocalStateEEERT_v Line | Count | Source | 207 | 3.82M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 3.82M | return reinterpret_cast<TARGET&>(*this); | 212 | 3.82M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_22StreamingAggLocalStateEEERT_v Line | Count | Source | 207 | 281k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 281k | return reinterpret_cast<TARGET&>(*this); | 212 | 281k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_13AggLocalStateEEERT_v Line | Count | Source | 207 | 480k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 480k | return reinterpret_cast<TARGET&>(*this); | 212 | 480k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_24PartitionedAggLocalStateEEERT_v Line | Count | Source | 207 | 700 | TARGET& cast() { | 208 | 700 | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 700 | return reinterpret_cast<TARGET&>(*this); | 212 | 700 | } |
_ZN5doris23PipelineXLocalStateBase4castINS_21BucketedAggLocalStateEEERT_v Line | Count | Source | 207 | 14.0k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 14.0k | return reinterpret_cast<TARGET&>(*this); | 212 | 14.0k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_14SortLocalStateEEERT_v Line | Count | Source | 207 | 43.4k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 43.4k | return reinterpret_cast<TARGET&>(*this); | 212 | 43.4k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_19SpillSortLocalStateEEERT_v Line | Count | Source | 207 | 796 | TARGET& cast() { | 208 | 796 | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 796 | return reinterpret_cast<TARGET&>(*this); | 212 | 796 | } |
_ZN5doris23PipelineXLocalStateBase4castINS_24LocalMergeSortLocalStateEEERT_v Line | Count | Source | 207 | 1.45M | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 1.45M | return reinterpret_cast<TARGET&>(*this); | 212 | 1.45M | } |
_ZN5doris23PipelineXLocalStateBase4castINS_18AnalyticLocalStateEEERT_v Line | Count | Source | 207 | 40.8k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 40.8k | return reinterpret_cast<TARGET&>(*this); | 212 | 40.8k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_16RepeatLocalStateEEERT_v Line | Count | Source | 207 | 25.6k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 25.6k | return reinterpret_cast<TARGET&>(*this); | 212 | 25.6k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_23AssertNumRowsLocalStateEEERT_v Line | Count | Source | 207 | 1.28k | TARGET& cast() { | 208 | 1.28k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 1.28k | return reinterpret_cast<TARGET&>(*this); | 212 | 1.28k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_17DataGenLocalStateEEERT_v Line | Count | Source | 207 | 48.9k | TARGET& cast() { | 208 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 211 | 48.9k | return reinterpret_cast<TARGET&>(*this); | 212 | 48.9k | } |
_ZN5doris23PipelineXLocalStateBase4castINS_20SchemaScanLocalStateEEERT_v Line | Count | Source | 207 | 11.2k | TARGET& cast() { | 208 | 11.2k | DCHECK(dynamic_cast<TARGET*>(this)) | 209 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 210 | 0 | << " and expect type is" << typeid(TARGET).name(); | 211 | 11.2k | return reinterpret_cast<TARGET&>(*this); | 212 | 11.2k | } |
|
213 | | template <class TARGET> |
214 | | const TARGET& cast() const { |
215 | | DCHECK(dynamic_cast<TARGET*>(this)) |
216 | | << " Mismatch type! Current type is " << typeid(*this).name() |
217 | | << " and expect type is" << typeid(TARGET).name(); |
218 | | return reinterpret_cast<const TARGET&>(*this); |
219 | | } |
220 | | |
221 | | // Do initialization. This step should be executed only once and in bthread, so we can do some |
222 | | // lightweight or non-idempotent operations (e.g. init profile, clone expr ctx from operatorX) |
223 | | virtual Status init(RuntimeState* state, LocalStateInfo& info) = 0; |
224 | | // Make sure all resources are ready before execution. For example, remote tablets should be |
225 | | // loaded to local storage. |
226 | | // This is called by execution pthread and different from `Operator::prepare` which is called |
227 | | // by bthread. |
228 | | virtual Status prepare(RuntimeState* state) = 0; |
229 | | // Do initialization. This step can be executed multiple times, so we should make sure it is |
230 | | // idempotent (e.g. wait for runtime filters). |
231 | | virtual Status open(RuntimeState* state) = 0; |
232 | | virtual Status close(RuntimeState* state) = 0; |
233 | | virtual Status terminate(RuntimeState* state) = 0; |
234 | | |
235 | | // If use projection, we should clear `_origin_block`. |
236 | | void clear_origin_block(); |
237 | | |
238 | | void reached_limit(Block* block, bool* eos); |
239 | 2.45M | RuntimeProfile* operator_profile() { return _operator_profile.get(); } |
240 | 733k | RuntimeProfile* common_profile() { return _common_profile.get(); } |
241 | 14.8M | RuntimeProfile* custom_profile() { return _custom_profile.get(); } |
242 | | |
243 | 13.1M | RuntimeProfile::Counter* exec_time_counter() { return _exec_timer; } |
244 | 0 | RuntimeProfile::Counter* memory_used_counter() { return _memory_used_counter; } |
245 | 7.70k | OperatorXBase* parent() { return _parent; } |
246 | 4.21M | RuntimeState* state() { return _state; } |
247 | 7.65k | [[nodiscard]] const BlockBudget& block_budget() const { return _budget; } |
248 | 583k | VExprContextSPtrs& conjuncts() { return _conjuncts; } |
249 | 0 | VExprContextSPtrs& projections() { return _projections; } |
250 | 22.7k | [[nodiscard]] int64_t num_rows_returned() const { return _num_rows_returned; } |
251 | 624k | void add_num_rows_returned(int64_t delta) { _num_rows_returned += delta; } |
252 | 7.21k | void set_num_rows_returned(int64_t value) { _num_rows_returned = value; } |
253 | 7.40M | void update_output_block_counters(const Block& block) { |
254 | 7.40M | if (auto rows = block.rows()) { |
255 | 1.27M | COUNTER_UPDATE(_rows_returned_counter, rows); |
256 | 1.27M | COUNTER_UPDATE(_blocks_returned_counter, 1); |
257 | 1.27M | auto block_bytes = static_cast<int64_t>(block.bytes()); |
258 | 1.27M | COUNTER_UPDATE(_output_block_bytes_counter, block_bytes); |
259 | 1.27M | if (block_bytes > _max_output_block_bytes) { |
260 | 843k | _max_output_block_bytes = block_bytes; |
261 | 843k | COUNTER_SET(_max_output_block_bytes_counter, block_bytes); |
262 | 843k | } |
263 | 1.27M | if (block_bytes < _min_output_block_bytes) { |
264 | 849k | _min_output_block_bytes = block_bytes; |
265 | 849k | COUNTER_SET(_min_output_block_bytes_counter, block_bytes); |
266 | 849k | } |
267 | 1.27M | } |
268 | 7.40M | } |
269 | | |
270 | | [[nodiscard]] virtual std::string debug_string(int indentation_level = 0) const = 0; |
271 | | [[nodiscard]] virtual bool is_blockable() const; |
272 | | |
273 | 0 | virtual std::vector<Dependency*> dependencies() const { return {nullptr}; } |
274 | | |
275 | | // override in Scan |
276 | 2.44M | virtual Dependency* finishdependency() { return nullptr; } |
277 | | // override in Scan MultiCastSink |
278 | 1.65M | virtual std::vector<Dependency*> execution_dependencies() { return {}; } |
279 | | |
280 | | Status filter_block(const VExprContextSPtrs& expr_contexts, Block* block); |
281 | | |
282 | 4.56M | int64_t& estimate_memory_usage() { return _estimate_memory_usage; } |
283 | | |
284 | 7.43M | void reset_estimate_memory_usage() { _estimate_memory_usage = 0; } |
285 | | |
286 | 8.78M | bool low_memory_mode() { |
287 | | #ifdef BE_TEST |
288 | | return false; |
289 | | #else |
290 | 8.78M | return _state->low_memory_mode(); |
291 | 8.78M | #endif |
292 | 8.78M | } |
293 | | |
294 | | protected: |
295 | | friend class OperatorXBase; |
296 | | template <typename LocalStateType> |
297 | | friend class ScanOperatorX; |
298 | | |
299 | | ObjectPool* _pool = nullptr; |
300 | | int64_t _num_rows_returned {0}; |
301 | | int64_t _estimate_memory_usage {0}; |
302 | | |
303 | | /* |
304 | | Each operator has its profile like this: |
305 | | XXXX_OPERATOR: |
306 | | CommonCounters: |
307 | | ... |
308 | | CustomCounters: |
309 | | ... |
310 | | */ |
311 | | // Profile of this operator. |
312 | | // Should not modify this profile usually. |
313 | | std::unique_ptr<RuntimeProfile> _operator_profile; |
314 | | // CommonCounters of this operator. |
315 | | // CommonCounters are counters that will be used by all operators. |
316 | | std::unique_ptr<RuntimeProfile> _common_profile; |
317 | | // CustomCounters of this operator. |
318 | | // CustomCounters are counters that will be used by this operator only. |
319 | | std::unique_ptr<RuntimeProfile> _custom_profile; |
320 | | |
321 | | RuntimeProfile::Counter* _rows_returned_counter = nullptr; |
322 | | RuntimeProfile::Counter* _blocks_returned_counter = nullptr; |
323 | | RuntimeProfile::Counter* _output_block_bytes_counter = nullptr; |
324 | | RuntimeProfile::Counter* _max_output_block_bytes_counter = nullptr; |
325 | | RuntimeProfile::Counter* _min_output_block_bytes_counter = nullptr; |
326 | | int64_t _max_output_block_bytes = 0; |
327 | | int64_t _min_output_block_bytes = std::numeric_limits<int64_t>::max(); |
328 | | RuntimeProfile::Counter* _wait_for_dependency_timer = nullptr; |
329 | | // Account for current memory and peak memory used by this node |
330 | | RuntimeProfile::HighWaterMarkCounter* _memory_used_counter = nullptr; |
331 | | RuntimeProfile::Counter* _projection_timer = nullptr; |
332 | | RuntimeProfile::Counter* _exec_timer = nullptr; |
333 | | RuntimeProfile::Counter* _init_timer = nullptr; |
334 | | RuntimeProfile::Counter* _open_timer = nullptr; |
335 | | RuntimeProfile::Counter* _close_timer = nullptr; |
336 | | |
337 | | OperatorXBase* _parent = nullptr; |
338 | | RuntimeState* _state = nullptr; |
339 | | // Execution-scoped row/byte budget derived from the session batch settings. |
340 | | const BlockBudget _budget; |
341 | | VExprContextSPtrs _conjuncts; |
342 | | VExprContextSPtrs _projections; |
343 | | std::shared_ptr<ScoreRuntime> _score_runtime; |
344 | | std::shared_ptr<segment_v2::AnnTopNRuntime> _ann_topn_runtime; |
345 | | // Used in common subexpression elimination to compute intermediate results. |
346 | | std::vector<VExprContextSPtrs> _intermediate_projections; |
347 | | |
348 | | bool _closed = false; |
349 | | std::atomic<bool> _terminated = false; |
350 | | Block _origin_block; |
351 | | }; |
352 | | |
353 | | template <typename SharedStateArg = FakeSharedState> |
354 | | class PipelineXLocalState : public PipelineXLocalStateBase { |
355 | | public: |
356 | | using SharedStateType = SharedStateArg; |
357 | | PipelineXLocalState(RuntimeState* state, OperatorXBase* parent) |
358 | 2.46M | : PipelineXLocalStateBase(state, parent) {}_ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 65.1k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 41 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_15SortSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 283k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 22 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 10.0k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 9.95k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_14AggSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 160k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 469 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 120 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 1.07M | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 54.7k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 17 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 9.29k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 315 | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_14SetSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 4.62k | : PipelineXLocalStateBase(state, parent) {} |
_ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 793k | : PipelineXLocalStateBase(state, parent) {} |
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 358 | 151 | : PipelineXLocalStateBase(state, parent) {} |
|
359 | | ~PipelineXLocalState() override = default; |
360 | | |
361 | | Status init(RuntimeState* state, LocalStateInfo& info) override; |
362 | 11.6M | Status prepare(RuntimeState* state) override { return Status::OK(); }_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 4.29M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_14SetSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 24.7k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_15SortSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 1.49M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 4.35M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 58 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 1.09k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 126k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 365k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE7prepareEPNS_12RuntimeStateE _ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 101 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 70.1k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 49.5k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_14AggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 792k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 5.77k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 505 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 79.7k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEE7prepareEPNS_12RuntimeStateE _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 362 | 4.52k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
|
363 | | Status open(RuntimeState* state) override; |
364 | | |
365 | | virtual std::string name_suffix() const; |
366 | | |
367 | | Status close(RuntimeState* state) override; |
368 | | Status terminate(RuntimeState* state) override; |
369 | | |
370 | | [[nodiscard]] std::string debug_string(int indentation_level = 0) const override; |
371 | | |
372 | 20.6M | std::vector<Dependency*> dependencies() const override { |
373 | 20.6M | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; |
374 | 20.6M | } _ZNK5doris19PipelineXLocalStateINS_15FakeSharedStateEE12dependenciesEv Line | Count | Source | 372 | 397k | std::vector<Dependency*> dependencies() const override { | 373 | 397k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 397k | } |
_ZNK5doris19PipelineXLocalStateINS_14SetSharedStateEE12dependenciesEv Line | Count | Source | 372 | 4.95k | std::vector<Dependency*> dependencies() const override { | 373 | 4.95k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 4.95k | } |
_ZNK5doris19PipelineXLocalStateINS_15SortSharedStateEE12dependenciesEv Line | Count | Source | 372 | 242k | std::vector<Dependency*> dependencies() const override { | 373 | 242k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 242k | } |
_ZNK5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE12dependenciesEv Line | Count | Source | 372 | 784k | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 784k | } |
_ZNK5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE12dependenciesEv Line | Count | Source | 372 | 14 | std::vector<Dependency*> dependencies() const override { | 373 | 14 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 14 | } |
_ZNK5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE12dependenciesEv Line | Count | Source | 372 | 18.9M | std::vector<Dependency*> dependencies() const override { | 373 | 18.9M | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 18.9M | } |
_ZNK5doris19PipelineXLocalStateINS_16UnionSharedStateEE12dependenciesEv Line | Count | Source | 372 | 54.9k | std::vector<Dependency*> dependencies() const override { | 373 | 54.9k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 54.9k | } |
_ZNK5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE12dependenciesEv Line | Count | Source | 372 | 41.2k | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 41.2k | } |
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE12dependenciesEv _ZNK5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE12dependenciesEv Line | Count | Source | 372 | 11 | std::vector<Dependency*> dependencies() const override { | 373 | 11 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 11 | } |
_ZNK5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE12dependenciesEv Line | Count | Source | 372 | 10.0k | std::vector<Dependency*> dependencies() const override { | 373 | 10.0k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 10.0k | } |
_ZNK5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE12dependenciesEv Line | Count | Source | 372 | 9.93k | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 9.93k | } |
_ZNK5doris19PipelineXLocalStateINS_14AggSharedStateEE12dependenciesEv Line | Count | Source | 372 | 160k | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 160k | } |
_ZNK5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE12dependenciesEv Line | Count | Source | 372 | 470 | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 470 | } |
_ZNK5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE12dependenciesEv Line | Count | Source | 372 | 101 | std::vector<Dependency*> dependencies() const override { | 373 | 101 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 101 | } |
_ZNK5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE12dependenciesEv Line | Count | Source | 372 | 9.27k | std::vector<Dependency*> dependencies() const override { | 373 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 374 | 9.27k | } |
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16BasicSharedStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_17RecCTESharedStateEE12dependenciesEv |
375 | | |
376 | 2.38M | virtual bool must_set_shared_state() const { |
377 | 2.38M | return !std::is_same_v<SharedStateArg, FakeSharedState>; |
378 | 2.38M | } _ZNK5doris19PipelineXLocalStateINS_15FakeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 1.06M | virtual bool must_set_shared_state() const { | 377 | 1.06M | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 1.06M | } |
_ZNK5doris19PipelineXLocalStateINS_14SetSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 4.55k | virtual bool must_set_shared_state() const { | 377 | 4.55k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 4.55k | } |
_ZNK5doris19PipelineXLocalStateINS_15SortSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 275k | virtual bool must_set_shared_state() const { | 377 | 275k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 275k | } |
_ZNK5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 786k | virtual bool must_set_shared_state() const { | 377 | 786k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 786k | } |
_ZNK5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 17 | virtual bool must_set_shared_state() const { | 377 | 17 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 17 | } |
_ZNK5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 315 | virtual bool must_set_shared_state() const { | 377 | 315 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 315 | } |
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16UnionSharedStateEE21must_set_shared_stateEv _ZNK5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 64.6k | virtual bool must_set_shared_state() const { | 377 | 64.6k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 64.6k | } |
_ZNK5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 1 | virtual bool must_set_shared_state() const { | 377 | 1 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 1 | } |
_ZNK5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 22 | virtual bool must_set_shared_state() const { | 377 | 22 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 22 | } |
_ZNK5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 10.0k | virtual bool must_set_shared_state() const { | 377 | 10.0k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 10.0k | } |
_ZNK5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 9.92k | virtual bool must_set_shared_state() const { | 377 | 9.92k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 9.92k | } |
_ZNK5doris19PipelineXLocalStateINS_14AggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 159k | virtual bool must_set_shared_state() const { | 377 | 159k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 159k | } |
_ZNK5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 448 | virtual bool must_set_shared_state() const { | 377 | 448 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 448 | } |
_ZNK5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 111 | virtual bool must_set_shared_state() const { | 377 | 111 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 111 | } |
_ZNK5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 9.26k | virtual bool must_set_shared_state() const { | 377 | 9.26k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 9.26k | } |
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16BasicSharedStateEE21must_set_shared_stateEv _ZNK5doris19PipelineXLocalStateINS_17RecCTESharedStateEE21must_set_shared_stateEv Line | Count | Source | 376 | 151 | virtual bool must_set_shared_state() const { | 377 | 151 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 378 | 151 | } |
|
379 | | |
380 | | protected: |
381 | | Dependency* _dependency = nullptr; |
382 | | SharedStateArg* _shared_state = nullptr; |
383 | | }; |
384 | | |
385 | | template <typename SharedStateArg> |
386 | | class PipelineXSpillLocalState : public PipelineXLocalState<SharedStateArg> { |
387 | | public: |
388 | | using Base = PipelineXLocalState<SharedStateArg>; |
389 | | PipelineXSpillLocalState(RuntimeState* state, OperatorXBase* parent) |
390 | 9.48k | : PipelineXLocalState<SharedStateArg>(state, parent) {}_ZN5doris24PipelineXSpillLocalStateINS_30PartitionedHashJoinSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 390 | 41 | : PipelineXLocalState<SharedStateArg>(state, parent) {} |
_ZN5doris24PipelineXSpillLocalStateINS_20SpillSortSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 390 | 22 | : PipelineXLocalState<SharedStateArg>(state, parent) {} |
_ZN5doris24PipelineXSpillLocalStateINS_25PartitionedAggSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 390 | 120 | : PipelineXLocalState<SharedStateArg>(state, parent) {} |
_ZN5doris24PipelineXSpillLocalStateINS_20MultiCastSharedStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 390 | 9.29k | : PipelineXLocalState<SharedStateArg>(state, parent) {} |
|
391 | | ~PipelineXSpillLocalState() override = default; |
392 | | |
393 | 9.41k | Status init(RuntimeState* state, LocalStateInfo& info) override { |
394 | 9.41k | RETURN_IF_ERROR(PipelineXLocalState<SharedStateArg>::init(state, info)); |
395 | | |
396 | 9.41k | init_spill_read_counters(); |
397 | | |
398 | 9.41k | return Status::OK(); |
399 | 9.41k | } _ZN5doris24PipelineXSpillLocalStateINS_20SpillSortSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE Line | Count | Source | 393 | 22 | Status init(RuntimeState* state, LocalStateInfo& info) override { | 394 | 22 | RETURN_IF_ERROR(PipelineXLocalState<SharedStateArg>::init(state, info)); | 395 | | | 396 | 22 | init_spill_read_counters(); | 397 | | | 398 | 22 | return Status::OK(); | 399 | 22 | } |
_ZN5doris24PipelineXSpillLocalStateINS_25PartitionedAggSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE Line | Count | Source | 393 | 111 | Status init(RuntimeState* state, LocalStateInfo& info) override { | 394 | 111 | RETURN_IF_ERROR(PipelineXLocalState<SharedStateArg>::init(state, info)); | 395 | | | 396 | 111 | init_spill_read_counters(); | 397 | | | 398 | 111 | return Status::OK(); | 399 | 111 | } |
_ZN5doris24PipelineXSpillLocalStateINS_20MultiCastSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE Line | Count | Source | 393 | 9.28k | Status init(RuntimeState* state, LocalStateInfo& info) override { | 394 | 9.28k | RETURN_IF_ERROR(PipelineXLocalState<SharedStateArg>::init(state, info)); | 395 | | | 396 | 9.28k | init_spill_read_counters(); | 397 | | | 398 | 9.28k | return Status::OK(); | 399 | 9.28k | } |
_ZN5doris24PipelineXSpillLocalStateINS_30PartitionedHashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE Line | Count | Source | 393 | 1 | Status init(RuntimeState* state, LocalStateInfo& info) override { | 394 | 1 | RETURN_IF_ERROR(PipelineXLocalState<SharedStateArg>::init(state, info)); | 395 | | | 396 | 1 | init_spill_read_counters(); | 397 | | | 398 | 1 | return Status::OK(); | 399 | 1 | } |
|
400 | | |
401 | 183 | void init_spill_write_counters() { |
402 | 183 | _write_counters.init(Base::custom_profile()); |
403 | | |
404 | | // Source-only extra write counters |
405 | 183 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( |
406 | 183 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); |
407 | 183 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( |
408 | 183 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); |
409 | 183 | } _ZN5doris24PipelineXSpillLocalStateINS_30PartitionedHashJoinSharedStateEE25init_spill_write_countersEv Line | Count | Source | 401 | 41 | void init_spill_write_counters() { | 402 | 41 | _write_counters.init(Base::custom_profile()); | 403 | | | 404 | | // Source-only extra write counters | 405 | 41 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 406 | 41 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 407 | 41 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 408 | 41 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 409 | 41 | } |
_ZN5doris24PipelineXSpillLocalStateINS_20SpillSortSharedStateEE25init_spill_write_countersEv Line | Count | Source | 401 | 22 | void init_spill_write_counters() { | 402 | 22 | _write_counters.init(Base::custom_profile()); | 403 | | | 404 | | // Source-only extra write counters | 405 | 22 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 406 | 22 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 407 | 22 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 408 | 22 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 409 | 22 | } |
_ZN5doris24PipelineXSpillLocalStateINS_25PartitionedAggSharedStateEE25init_spill_write_countersEv Line | Count | Source | 401 | 120 | void init_spill_write_counters() { | 402 | 120 | _write_counters.init(Base::custom_profile()); | 403 | | | 404 | | // Source-only extra write counters | 405 | 120 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 406 | 120 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 407 | 120 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 408 | 120 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 409 | 120 | } |
|
410 | | |
411 | 9.44k | void init_spill_read_counters() { |
412 | 9.44k | _spill_total_timer = |
413 | 9.44k | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); |
414 | | |
415 | 9.44k | _read_counters.init(Base::custom_profile()); |
416 | | |
417 | 9.44k | _spill_file_current_size = ADD_COUNTER_WITH_LEVEL( |
418 | 9.44k | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_BYTES, TUnit::BYTES, 1); |
419 | 9.44k | _spill_file_current_count = ADD_COUNTER_WITH_LEVEL( |
420 | 9.44k | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_COUNT, TUnit::UNIT, 1); |
421 | 9.44k | } _ZN5doris24PipelineXSpillLocalStateINS_20SpillSortSharedStateEE24init_spill_read_countersEv Line | Count | Source | 411 | 22 | void init_spill_read_counters() { | 412 | 22 | _spill_total_timer = | 413 | 22 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 414 | | | 415 | 22 | _read_counters.init(Base::custom_profile()); | 416 | | | 417 | 22 | _spill_file_current_size = ADD_COUNTER_WITH_LEVEL( | 418 | 22 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_BYTES, TUnit::BYTES, 1); | 419 | 22 | _spill_file_current_count = ADD_COUNTER_WITH_LEVEL( | 420 | 22 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_COUNT, TUnit::UNIT, 1); | 421 | 22 | } |
_ZN5doris24PipelineXSpillLocalStateINS_25PartitionedAggSharedStateEE24init_spill_read_countersEv Line | Count | Source | 411 | 120 | void init_spill_read_counters() { | 412 | 120 | _spill_total_timer = | 413 | 120 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 414 | | | 415 | 120 | _read_counters.init(Base::custom_profile()); | 416 | | | 417 | 120 | _spill_file_current_size = ADD_COUNTER_WITH_LEVEL( | 418 | 120 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_BYTES, TUnit::BYTES, 1); | 419 | 120 | _spill_file_current_count = ADD_COUNTER_WITH_LEVEL( | 420 | 120 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_COUNT, TUnit::UNIT, 1); | 421 | 120 | } |
_ZN5doris24PipelineXSpillLocalStateINS_20MultiCastSharedStateEE24init_spill_read_countersEv Line | Count | Source | 411 | 9.26k | void init_spill_read_counters() { | 412 | 9.26k | _spill_total_timer = | 413 | 9.26k | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 414 | | | 415 | 9.26k | _read_counters.init(Base::custom_profile()); | 416 | | | 417 | 9.26k | _spill_file_current_size = ADD_COUNTER_WITH_LEVEL( | 418 | 9.26k | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_BYTES, TUnit::BYTES, 1); | 419 | 9.26k | _spill_file_current_count = ADD_COUNTER_WITH_LEVEL( | 420 | 9.26k | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_COUNT, TUnit::UNIT, 1); | 421 | 9.26k | } |
_ZN5doris24PipelineXSpillLocalStateINS_30PartitionedHashJoinSharedStateEE24init_spill_read_countersEv Line | Count | Source | 411 | 41 | void init_spill_read_counters() { | 412 | 41 | _spill_total_timer = | 413 | 41 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 414 | | | 415 | 41 | _read_counters.init(Base::custom_profile()); | 416 | | | 417 | 41 | _spill_file_current_size = ADD_COUNTER_WITH_LEVEL( | 418 | 41 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_BYTES, TUnit::BYTES, 1); | 419 | 41 | _spill_file_current_count = ADD_COUNTER_WITH_LEVEL( | 420 | 41 | Base::custom_profile(), profile::SPILL_WRITE_FILE_CURRENT_COUNT, TUnit::UNIT, 1); | 421 | 41 | } |
|
422 | | |
423 | | // Total time of spill, including spill task scheduling time, |
424 | | // serialize block time, write disk file time, |
425 | | // and read disk file time, deserialize block time etc. |
426 | | RuntimeProfile::Counter* _spill_total_timer = nullptr; |
427 | | |
428 | | // Shared spill write counters |
429 | | SpillWriteCounters _write_counters; |
430 | | // Backward-compatible aliases for commonly accessed write counters |
431 | | RuntimeProfile::Counter*& _spill_write_file_timer = _write_counters.spill_write_file_timer; |
432 | | RuntimeProfile::Counter*& _spill_write_serialize_block_timer = |
433 | | _write_counters.spill_write_serialize_block_timer; |
434 | | RuntimeProfile::Counter*& _spill_write_block_count = _write_counters.spill_write_block_count; |
435 | | RuntimeProfile::Counter*& _spill_write_block_data_size = |
436 | | _write_counters.spill_write_block_data_size; |
437 | | RuntimeProfile::Counter*& _spill_write_rows_count = _write_counters.spill_write_rows_count; |
438 | | |
439 | | // Source-only write counters (not in SpillWriteCounters) |
440 | | // Total bytes of spill data written to disk file(after serialized) |
441 | | RuntimeProfile::Counter* _spill_write_file_total_size = nullptr; |
442 | | RuntimeProfile::Counter* _spill_file_total_count = nullptr; |
443 | | RuntimeProfile::Counter* _spill_file_current_count = nullptr; |
444 | | // Spilled file total size |
445 | | RuntimeProfile::Counter* _spill_file_total_size = nullptr; |
446 | | // Current spilled file size |
447 | | RuntimeProfile::Counter* _spill_file_current_size = nullptr; |
448 | | |
449 | | // Shared spill read counters |
450 | | SpillReadCounters _read_counters; |
451 | | // Backward-compatible aliases for commonly accessed read counters |
452 | | RuntimeProfile::Counter*& _spill_read_file_time = _read_counters.spill_read_file_time; |
453 | | RuntimeProfile::Counter*& _spill_read_deserialize_block_timer = |
454 | | _read_counters.spill_read_deserialize_block_timer; |
455 | | RuntimeProfile::Counter*& _spill_read_block_count = _read_counters.spill_read_block_count; |
456 | | RuntimeProfile::Counter*& _spill_read_block_data_size = |
457 | | _read_counters.spill_read_block_data_size; |
458 | | RuntimeProfile::Counter*& _spill_read_file_size = _read_counters.spill_read_file_size; |
459 | | RuntimeProfile::Counter*& _spill_read_rows_count = _read_counters.spill_read_rows_count; |
460 | | RuntimeProfile::Counter*& _spill_read_file_count = _read_counters.spill_read_file_count; |
461 | | }; |
462 | | |
463 | | class DataSinkOperatorXBase; |
464 | | |
465 | | class PipelineXSinkLocalStateBase { |
466 | | public: |
467 | | PipelineXSinkLocalStateBase(DataSinkOperatorXBase* parent_, RuntimeState* state_); |
468 | 2.08M | virtual ~PipelineXSinkLocalStateBase() = default; |
469 | | |
470 | | // Do initialization. This step should be executed only once and in bthread, so we can do some |
471 | | // lightweight or non-idempotent operations (e.g. init profile, clone expr ctx from operatorX) |
472 | | virtual Status init(RuntimeState* state, LocalSinkStateInfo& info) = 0; |
473 | | |
474 | | virtual Status prepare(RuntimeState* state) = 0; |
475 | | // Do initialization. This step can be executed multiple times, so we should make sure it is |
476 | | // idempotent (e.g. wait for runtime filters). |
477 | | virtual Status open(RuntimeState* state) = 0; |
478 | | virtual Status terminate(RuntimeState* state) = 0; |
479 | | virtual Status close(RuntimeState* state, Status exec_status) = 0; |
480 | 4.89M | [[nodiscard]] virtual bool is_finished() const { return false; } |
481 | 14.9M | [[nodiscard]] virtual bool is_blockable() const { return false; } |
482 | | |
483 | | [[nodiscard]] virtual std::string debug_string(int indentation_level) const = 0; |
484 | | |
485 | | template <class TARGET> |
486 | 3.61M | TARGET& cast() { |
487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) |
488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() |
489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); |
490 | 3.61M | return reinterpret_cast<TARGET&>(*this); |
491 | 3.61M | } _ZN5doris27PipelineXSinkLocalStateBase4castINS_22ExchangeSinkLocalStateEEERT_v Line | Count | Source | 486 | 828k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 828k | return reinterpret_cast<TARGET&>(*this); | 491 | 828k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_19UnionSinkLocalStateEEERT_v Line | Count | Source | 486 | 10.7k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 10.7k | return reinterpret_cast<TARGET&>(*this); | 491 | 10.7k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_25OlapTableSinkV2LocalStateEEERT_v Line | Count | Source | 486 | 10.2k | TARGET& cast() { | 487 | 10.2k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 2 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 2 | << " and expect type is" << typeid(TARGET).name(); | 490 | 10.2k | return reinterpret_cast<TARGET&>(*this); | 491 | 10.2k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_23OlapTableSinkLocalStateEEERT_v Line | Count | Source | 486 | 59.7k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 59.7k | return reinterpret_cast<TARGET&>(*this); | 491 | 59.7k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_23HiveTableSinkLocalStateEEERT_v Line | Count | Source | 486 | 7.48k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 7.48k | return reinterpret_cast<TARGET&>(*this); | 491 | 7.48k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_26IcebergTableSinkLocalStateEEERT_v Line | Count | Source | 486 | 5.29k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 5.29k | return reinterpret_cast<TARGET&>(*this); | 491 | 5.29k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_27IcebergDeleteSinkLocalStateEEERT_v Line | Count | Source | 486 | 180 | TARGET& cast() { | 487 | 180 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 180 | return reinterpret_cast<TARGET&>(*this); | 491 | 180 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_26IcebergMergeSinkLocalStateEEERT_v Line | Count | Source | 486 | 800 | TARGET& cast() { | 487 | 800 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 800 | return reinterpret_cast<TARGET&>(*this); | 491 | 800 | } |
Unexecuted instantiation: _ZN5doris27PipelineXSinkLocalStateBase4castINS_21MCTableSinkLocalStateEEERT_v _ZN5doris27PipelineXSinkLocalStateBase4castINS_22TVFTableSinkLocalStateEEERT_v Line | Count | Source | 486 | 310 | TARGET& cast() { | 487 | 310 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 310 | return reinterpret_cast<TARGET&>(*this); | 491 | 310 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_27LocalExchangeSinkLocalStateEEERT_v Line | Count | Source | 486 | 499k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 499k | return reinterpret_cast<TARGET&>(*this); | 491 | 499k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_17AggSinkLocalStateEEERT_v Line | Count | Source | 486 | 637k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 637k | return reinterpret_cast<TARGET&>(*this); | 491 | 637k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_27HashJoinBuildSinkLocalStateEEERT_v Line | Count | Source | 486 | 530k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 530k | return reinterpret_cast<TARGET&>(*this); | 491 | 530k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_26RecCTEAnchorSinkLocalStateEEERT_v Line | Count | Source | 486 | 473 | TARGET& cast() { | 487 | 473 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 473 | return reinterpret_cast<TARGET&>(*this); | 491 | 473 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_20RecCTESinkLocalStateEEERT_v Line | Count | Source | 486 | 6.06k | TARGET& cast() { | 487 | 6.06k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 6.06k | return reinterpret_cast<TARGET&>(*this); | 491 | 6.06k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_20ResultSinkLocalStateEEERT_v Line | Count | Source | 486 | 486k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 486k | return reinterpret_cast<TARGET&>(*this); | 491 | 486k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_23JdbcTableSinkLocalStateEEERT_v Line | Count | Source | 486 | 112 | TARGET& cast() { | 487 | 112 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 112 | return reinterpret_cast<TARGET&>(*this); | 491 | 112 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_27MemoryScratchSinkLocalStateEEERT_v Line | Count | Source | 486 | 6 | TARGET& cast() { | 487 | 6 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 6 | return reinterpret_cast<TARGET&>(*this); | 491 | 6 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_24ResultFileSinkLocalStateEEERT_v Line | Count | Source | 486 | 2.29k | TARGET& cast() { | 487 | 2.29k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 2.29k | return reinterpret_cast<TARGET&>(*this); | 491 | 2.29k | } |
Unexecuted instantiation: _ZN5doris27PipelineXSinkLocalStateBase4castINS_31SpillIcebergTableSinkLocalStateEEERT_v _ZN5doris27PipelineXSinkLocalStateBase4castINS_22AnalyticSinkLocalStateEEERT_v Line | Count | Source | 486 | 30.8k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 30.8k | return reinterpret_cast<TARGET&>(*this); | 491 | 30.8k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_23BlackholeSinkLocalStateEEERT_v Line | Count | Source | 486 | 522 | TARGET& cast() { | 487 | 522 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 522 | return reinterpret_cast<TARGET&>(*this); | 491 | 522 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_18SortSinkLocalStateEEERT_v Line | Count | Source | 486 | 425k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 425k | return reinterpret_cast<TARGET&>(*this); | 491 | 425k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_23SpillSortSinkLocalStateEEERT_v Line | Count | Source | 486 | 1.65k | TARGET& cast() { | 487 | 1.65k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 1.65k | return reinterpret_cast<TARGET&>(*this); | 491 | 1.65k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_25BucketedAggSinkLocalStateEEERT_v Line | Count | Source | 486 | 2.47k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 2.47k | return reinterpret_cast<TARGET&>(*this); | 491 | 2.47k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_28PartitionedAggSinkLocalStateEEERT_v Line | Count | Source | 486 | 880 | TARGET& cast() { | 487 | 880 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 880 | return reinterpret_cast<TARGET&>(*this); | 491 | 880 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_33NestedLoopJoinBuildSinkLocalStateEEERT_v Line | Count | Source | 486 | 24.8k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 24.8k | return reinterpret_cast<TARGET&>(*this); | 491 | 24.8k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_33MultiCastDataStreamSinkLocalStateEEERT_v Line | Count | Source | 486 | 9.53k | TARGET& cast() { | 487 | 9.53k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 9.53k | return reinterpret_cast<TARGET&>(*this); | 491 | 9.53k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_27PartitionSortSinkLocalStateEEERT_v Line | Count | Source | 486 | 1.04k | TARGET& cast() { | 487 | 1.04k | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 1.04k | return reinterpret_cast<TARGET&>(*this); | 491 | 1.04k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_22SetProbeSinkLocalStateILb1EEEEERT_v Line | Count | Source | 486 | 10.3k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 10.3k | return reinterpret_cast<TARGET&>(*this); | 491 | 10.3k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_22SetProbeSinkLocalStateILb0EEEEERT_v Line | Count | Source | 486 | 5.68k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 5.68k | return reinterpret_cast<TARGET&>(*this); | 491 | 5.68k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_17SetSinkLocalStateILb1EEEEERT_v Line | Count | Source | 486 | 6.05k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 6.05k | return reinterpret_cast<TARGET&>(*this); | 491 | 6.05k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_17SetSinkLocalStateILb0EEEEERT_v Line | Count | Source | 486 | 5.70k | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 5.70k | return reinterpret_cast<TARGET&>(*this); | 491 | 5.70k | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_33PartitionedHashJoinSinkLocalStateEEERT_v Line | Count | Source | 486 | 8 | TARGET& cast() { | 487 | 8 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 8 | return reinterpret_cast<TARGET&>(*this); | 491 | 8 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_30GroupCommitBlockSinkLocalStateEEERT_v Line | Count | Source | 486 | 667 | TARGET& cast() { | 487 | 667 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 667 | return reinterpret_cast<TARGET&>(*this); | 491 | 667 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_19CacheSinkLocalStateEEERT_v Line | Count | Source | 486 | 16 | TARGET& cast() { | 487 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 490 | 16 | return reinterpret_cast<TARGET&>(*this); | 491 | 16 | } |
_ZN5doris27PipelineXSinkLocalStateBase4castINS_18DictSinkLocalStateEEERT_v Line | Count | Source | 486 | 275 | TARGET& cast() { | 487 | 275 | DCHECK(dynamic_cast<TARGET*>(this)) | 488 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 489 | 0 | << " and expect type is" << typeid(TARGET).name(); | 490 | 275 | return reinterpret_cast<TARGET&>(*this); | 491 | 275 | } |
|
492 | | template <class TARGET> |
493 | | const TARGET& cast() const { |
494 | | DCHECK(dynamic_cast<const TARGET*>(this)) |
495 | | << " Mismatch type! Current type is " << typeid(*this).name() |
496 | | << " and expect type is" << typeid(TARGET).name(); |
497 | | return reinterpret_cast<const TARGET&>(*this); |
498 | | } |
499 | | |
500 | 98.5k | DataSinkOperatorXBase* parent() { return _parent; } |
501 | 4.66M | RuntimeState* state() { return _state; } |
502 | 2.07M | RuntimeProfile* operator_profile() { return _operator_profile; } |
503 | 3.65M | RuntimeProfile* common_profile() { return _common_profile; } |
504 | 17.7M | RuntimeProfile* custom_profile() { return _custom_profile; } |
505 | | |
506 | 14.2k | [[nodiscard]] RuntimeProfile* faker_runtime_profile() const { |
507 | 14.2k | return _faker_runtime_profile.get(); |
508 | 14.2k | } |
509 | | |
510 | 2.92M | RuntimeProfile::Counter* rows_input_counter() { return _rows_input_counter; } |
511 | 8.53M | RuntimeProfile::Counter* exec_time_counter() { return _exec_timer; } |
512 | 2.42M | RuntimeProfile::Counter* memory_used_counter() { return _memory_used_counter; } |
513 | | |
514 | 0 | virtual std::vector<Dependency*> dependencies() const { return {nullptr}; } |
515 | | |
516 | | // override in exchange sink , AsyncWriterSink |
517 | 1.21M | virtual Dependency* finishdependency() { return nullptr; } |
518 | | |
519 | 839k | bool low_memory_mode() { return _state->low_memory_mode(); } |
520 | | |
521 | | protected: |
522 | | DataSinkOperatorXBase* _parent = nullptr; |
523 | | RuntimeState* _state = nullptr; |
524 | | RuntimeProfile* _operator_profile = nullptr; |
525 | | RuntimeProfile* _common_profile = nullptr; |
526 | | RuntimeProfile* _custom_profile = nullptr; |
527 | | // Set to true after close() has been called. subclasses should check and set this in |
528 | | // close(). |
529 | | bool _closed = false; |
530 | | bool _terminated = false; |
531 | | //NOTICE: now add a faker profile, because sometimes the profile record is useless |
532 | | //so we want remove some counters and timers, eg: in join node, if it's broadcast_join |
533 | | //and shared hash table, some counter/timer about build hash table is useless, |
534 | | //so we could add those counter/timer in faker profile, and those will not display in web profile. |
535 | | std::unique_ptr<RuntimeProfile> _faker_runtime_profile = |
536 | | std::make_unique<RuntimeProfile>(profile::FAKER_PROFILE); |
537 | | |
538 | | RuntimeProfile::Counter* _rows_input_counter = nullptr; |
539 | | RuntimeProfile::Counter* _init_timer = nullptr; |
540 | | RuntimeProfile::Counter* _open_timer = nullptr; |
541 | | RuntimeProfile::Counter* _close_timer = nullptr; |
542 | | RuntimeProfile::Counter* _wait_for_dependency_timer = nullptr; |
543 | | RuntimeProfile::Counter* _wait_for_finish_dependency_timer = nullptr; |
544 | | RuntimeProfile::Counter* _exec_timer = nullptr; |
545 | | RuntimeProfile::HighWaterMarkCounter* _memory_used_counter = nullptr; |
546 | | }; |
547 | | |
548 | | template <typename SharedStateArg = FakeSharedState> |
549 | | class PipelineXSinkLocalState : public PipelineXSinkLocalStateBase { |
550 | | public: |
551 | | using SharedStateType = SharedStateArg; |
552 | | PipelineXSinkLocalState(DataSinkOperatorXBase* parent, RuntimeState* state) |
553 | 2.07M | : PipelineXSinkLocalStateBase(parent, state) {}_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 113k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 7 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 285k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 28 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 10.1k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 9.97k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 160k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 436 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 121 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 669k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 5.79k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 315 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 3.25k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 12.1k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 341k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 459k | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 17 | : PipelineXSinkLocalStateBase(parent, state) {} |
_ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 553 | 302 | : PipelineXSinkLocalStateBase(parent, state) {} |
|
554 | | ~PipelineXSinkLocalState() override = default; |
555 | | |
556 | | Status init(RuntimeState* state, LocalSinkStateInfo& info) override; |
557 | | |
558 | 12.3M | Status prepare(RuntimeState* state) override { return Status::OK(); }_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 3.68M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 31.3k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 3.39M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 1.98M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 48.6k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 50 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 27.8k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 1.33k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE7prepareEPNS_12RuntimeStateE _ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 5.69k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 1.64M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 249k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 657 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 57.2k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 1.11M | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 4.56k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 643 | Status prepare(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE7prepareEPNS_12RuntimeStateE Line | Count | Source | 558 | 65.9k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
|
559 | 2.08M | Status open(RuntimeState* state) override { return Status::OK(); }_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 675k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 5.79k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 343k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 9.97k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 17 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 463k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 3.27k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 315 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 2 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 302 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 286k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 113k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 28 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 10.0k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 160k | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 434 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 121 | Status open(RuntimeState* state) override { return Status::OK(); } |
_ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE4openEPNS_12RuntimeStateE Line | Count | Source | 559 | 12.2k | Status open(RuntimeState* state) override { return Status::OK(); } |
|
560 | | |
561 | | Status terminate(RuntimeState* state) override; |
562 | | Status close(RuntimeState* state, Status exec_status) override; |
563 | | |
564 | | [[nodiscard]] std::string debug_string(int indentation_level) const override; |
565 | | |
566 | | virtual std::string name_suffix(); |
567 | | |
568 | 1.26M | std::vector<Dependency*> dependencies() const override { |
569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; |
570 | 1.26M | } _ZNK5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE12dependenciesEv Line | Count | Source | 568 | 86 | std::vector<Dependency*> dependencies() const override { | 569 | 86 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 86 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE12dependenciesEv Line | Count | Source | 568 | 5.77k | std::vector<Dependency*> dependencies() const override { | 569 | 5.77k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 5.77k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE12dependenciesEv Line | Count | Source | 568 | 341k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 341k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE12dependenciesEv Line | Count | Source | 568 | 9.97k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 9.97k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE12dependenciesEv Line | Count | Source | 568 | 14 | std::vector<Dependency*> dependencies() const override { | 569 | 14 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 14 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE12dependenciesEv Line | Count | Source | 568 | 396k | std::vector<Dependency*> dependencies() const override { | 569 | 396k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 396k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE12dependenciesEv Line | Count | Source | 568 | 3.27k | std::vector<Dependency*> dependencies() const override { | 569 | 3.27k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 3.27k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE12dependenciesEv Line | Count | Source | 568 | 213 | std::vector<Dependency*> dependencies() const override { | 569 | 213 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 213 | } |
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE12dependenciesEv _ZNK5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE12dependenciesEv Line | Count | Source | 568 | 299 | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 299 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE12dependenciesEv Line | Count | Source | 568 | 282k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 282k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE12dependenciesEv Line | Count | Source | 568 | 41.2k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 41.2k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE12dependenciesEv Line | Count | Source | 568 | 11 | std::vector<Dependency*> dependencies() const override { | 569 | 11 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 11 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE12dependenciesEv Line | Count | Source | 568 | 10.0k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 10.0k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE12dependenciesEv Line | Count | Source | 568 | 160k | std::vector<Dependency*> dependencies() const override { | 569 | 160k | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 160k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE12dependenciesEv Line | Count | Source | 568 | 429 | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 429 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE12dependenciesEv Line | Count | Source | 568 | 101 | std::vector<Dependency*> dependencies() const override { | 569 | 101 | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 101 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE12dependenciesEv Line | Count | Source | 568 | 12.1k | std::vector<Dependency*> dependencies() const override { | 569 | 18.4E | return _dependency ? std::vector<Dependency*> {_dependency} : std::vector<Dependency*> {}; | 570 | 12.1k | } |
|
571 | | |
572 | 2.04M | virtual bool must_set_shared_state() const { |
573 | 2.04M | return !std::is_same_v<SharedStateArg, FakeSharedState>; |
574 | 2.04M | } _ZNK5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 660k | virtual bool must_set_shared_state() const { | 573 | 660k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 660k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 5.77k | virtual bool must_set_shared_state() const { | 573 | 5.77k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 5.77k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 455k | virtual bool must_set_shared_state() const { | 573 | 455k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 455k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 336k | virtual bool must_set_shared_state() const { | 573 | 336k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 336k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 9.92k | virtual bool must_set_shared_state() const { | 573 | 9.92k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 9.92k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 17 | virtual bool must_set_shared_state() const { | 573 | 17 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 17 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 3.24k | virtual bool must_set_shared_state() const { | 573 | 3.24k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 3.24k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 314 | virtual bool must_set_shared_state() const { | 573 | 314 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 314 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 2 | virtual bool must_set_shared_state() const { | 573 | 2 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 2 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 302 | virtual bool must_set_shared_state() const { | 573 | 302 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 302 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 280k | virtual bool must_set_shared_state() const { | 573 | 280k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 280k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 112k | virtual bool must_set_shared_state() const { | 573 | 112k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 112k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 28 | virtual bool must_set_shared_state() const { | 573 | 28 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 28 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 10.0k | virtual bool must_set_shared_state() const { | 573 | 10.0k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 10.0k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 160k | virtual bool must_set_shared_state() const { | 573 | 160k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 160k | } |
_ZNK5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 425 | virtual bool must_set_shared_state() const { | 573 | 425 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 425 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 121 | virtual bool must_set_shared_state() const { | 573 | 121 | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 121 | } |
_ZNK5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE21must_set_shared_stateEv Line | Count | Source | 572 | 12.0k | virtual bool must_set_shared_state() const { | 573 | 12.0k | return !std::is_same_v<SharedStateArg, FakeSharedState>; | 574 | 12.0k | } |
|
575 | | |
576 | | protected: |
577 | | Dependency* _dependency = nullptr; |
578 | | SharedStateType* _shared_state = nullptr; |
579 | | }; |
580 | | |
581 | | class DataSinkOperatorXBase : public OperatorBase { |
582 | | public: |
583 | | DataSinkOperatorXBase(const int operator_id, const int node_id, const int dest_id) |
584 | 578k | : _operator_id(operator_id), _node_id(node_id), _dests_id({dest_id}) {} |
585 | | DataSinkOperatorXBase(const int operator_id, const TPlanNode& tnode, const int dest_id) |
586 | 205k | : OperatorBase(tnode.__isset.is_serial_operator && tnode.is_serial_operator), |
587 | 205k | _operator_id(operator_id), |
588 | 205k | _node_id(tnode.node_id), |
589 | 205k | _dests_id({dest_id}) {} |
590 | | |
591 | | DataSinkOperatorXBase(const int operator_id, const int node_id, std::vector<int>& dests) |
592 | 2.36k | : _operator_id(operator_id), _node_id(node_id), _dests_id(dests) {} |
593 | | |
594 | | #ifdef BE_TEST |
595 | | DataSinkOperatorXBase() : _operator_id(-1), _node_id(0), _dests_id({-1}) {}; |
596 | | #endif |
597 | | |
598 | 860k | ~DataSinkOperatorXBase() override = default; |
599 | | |
600 | | // For agg/sort/join sink. |
601 | | virtual Status init(const TPlanNode& tnode, RuntimeState* state); |
602 | | |
603 | 2.00M | virtual bool reset_to_rerun(RuntimeState* state, OperatorXBase* root) const { return false; } |
604 | | |
605 | | Status init(const TDataSink& tsink) override; |
606 | | [[nodiscard]] virtual Status init(RuntimeState* state, ExchangeType type, const int num_buckets, |
607 | | const bool use_global_hash_shuffle, |
608 | 0 | const std::map<int, int>& shuffle_idx_to_instance_idx) { |
609 | 0 | return Status::InternalError("init() is only implemented in local exchange!"); |
610 | 0 | } |
611 | | |
612 | 786k | Status prepare(RuntimeState* state) override { return Status::OK(); } |
613 | | Status terminate(RuntimeState* state) override; |
614 | 7.50M | [[nodiscard]] bool is_finished(RuntimeState* state) const { |
615 | 7.50M | auto result = state->get_sink_local_state_result(); |
616 | 7.50M | if (!result) { |
617 | 0 | return result.error(); |
618 | 0 | } |
619 | 7.50M | return result.value()->is_finished(); |
620 | 7.50M | } |
621 | | |
622 | | [[nodiscard]] virtual Status sink(RuntimeState* state, Block* block, bool eos) = 0; |
623 | | |
624 | | [[nodiscard]] virtual Status setup_local_state(RuntimeState* state, |
625 | | LocalSinkStateInfo& info) = 0; |
626 | | |
627 | | // Returns the memory this sink operator expects to allocate in the next |
628 | | // execution round (sink only — pipeline task sums all operators + sink). |
629 | 2.37M | [[nodiscard]] virtual size_t get_reserve_mem_size(RuntimeState* state, bool eos) { |
630 | 2.37M | return state->minimum_operator_memory_required_bytes(); |
631 | 2.37M | } |
632 | 7.32M | bool is_blockable(RuntimeState* state) const override { |
633 | 7.32M | return state->get_sink_local_state()->is_blockable(); |
634 | 7.32M | } |
635 | | |
636 | 0 | [[nodiscard]] bool is_spillable() const { return _spillable; } |
637 | | |
638 | | template <class TARGET> |
639 | 7.04M | TARGET& cast() { |
640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) |
641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() |
642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); |
643 | 7.04M | return reinterpret_cast<TARGET&>(*this); |
644 | 7.04M | } _ZN5doris21DataSinkOperatorXBase4castINS_23ResultFileSinkOperatorXEEERT_v Line | Count | Source | 639 | 3.43k | TARGET& cast() { | 640 | 3.43k | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 3.43k | return reinterpret_cast<TARGET&>(*this); | 644 | 3.43k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_22JdbcTableSinkOperatorXEEERT_v Line | Count | Source | 639 | 412 | TARGET& cast() { | 640 | 412 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 412 | return reinterpret_cast<TARGET&>(*this); | 644 | 412 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_22OlapTableSinkOperatorXEEERT_v Line | Count | Source | 639 | 332k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 332k | return reinterpret_cast<TARGET&>(*this); | 644 | 332k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_24OlapTableSinkV2OperatorXEEERT_v Line | Count | Source | 639 | 54.5k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 54.5k | return reinterpret_cast<TARGET&>(*this); | 644 | 54.5k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_22HiveTableSinkOperatorXEEERT_v Line | Count | Source | 639 | 138k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 138k | return reinterpret_cast<TARGET&>(*this); | 644 | 138k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_25IcebergTableSinkOperatorXEEERT_v Line | Count | Source | 639 | 45.7k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 45.7k | return reinterpret_cast<TARGET&>(*this); | 644 | 45.7k | } |
Unexecuted instantiation: _ZN5doris21DataSinkOperatorXBase4castINS_30SpillIcebergTableSinkOperatorXEEERT_v _ZN5doris21DataSinkOperatorXBase4castINS_26IcebergDeleteSinkOperatorXEEERT_v Line | Count | Source | 639 | 638 | TARGET& cast() { | 640 | 638 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 638 | return reinterpret_cast<TARGET&>(*this); | 644 | 638 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_25IcebergMergeSinkOperatorXEEERT_v Line | Count | Source | 639 | 5.02k | TARGET& cast() { | 640 | 5.02k | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 5.02k | return reinterpret_cast<TARGET&>(*this); | 644 | 5.02k | } |
Unexecuted instantiation: _ZN5doris21DataSinkOperatorXBase4castINS_20MCTableSinkOperatorXEEERT_v _ZN5doris21DataSinkOperatorXBase4castINS_21TVFTableSinkOperatorXEEERT_v Line | Count | Source | 639 | 786 | TARGET& cast() { | 640 | 786 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 786 | return reinterpret_cast<TARGET&>(*this); | 644 | 786 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_26HashJoinBuildSinkOperatorXEEERT_v Line | Count | Source | 639 | 1.21M | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 1.21M | return reinterpret_cast<TARGET&>(*this); | 644 | 1.21M | } |
_ZN5doris21DataSinkOperatorXBase4castINS_32NestedLoopJoinBuildSinkOperatorXEEERT_v Line | Count | Source | 639 | 20.1k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 20.1k | return reinterpret_cast<TARGET&>(*this); | 644 | 20.1k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_32PartitionedHashJoinSinkOperatorXEEERT_v Line | Count | Source | 639 | 17 | TARGET& cast() { | 640 | 17 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 17 | return reinterpret_cast<TARGET&>(*this); | 644 | 17 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_19ResultSinkOperatorXEEERT_v Line | Count | Source | 639 | 1.17M | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 1.17M | return reinterpret_cast<TARGET&>(*this); | 644 | 1.17M | } |
_ZN5doris21DataSinkOperatorXBase4castINS_26MemoryScratchSinkOperatorXEEERT_v Line | Count | Source | 639 | 3 | TARGET& cast() { | 640 | 3 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 3 | return reinterpret_cast<TARGET&>(*this); | 644 | 3 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_21AnalyticSinkOperatorXEEERT_v Line | Count | Source | 639 | 27.5k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 27.5k | return reinterpret_cast<TARGET&>(*this); | 644 | 27.5k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_17SortSinkOperatorXEEERT_v Line | Count | Source | 639 | 285k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 285k | return reinterpret_cast<TARGET&>(*this); | 644 | 285k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_22SpillSortSinkOperatorXEEERT_v Line | Count | Source | 639 | 539 | TARGET& cast() { | 640 | 539 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 539 | return reinterpret_cast<TARGET&>(*this); | 644 | 539 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_26LocalExchangeSinkOperatorXEEERT_v Line | Count | Source | 639 | 981k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 981k | return reinterpret_cast<TARGET&>(*this); | 644 | 981k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_16AggSinkOperatorXEEERT_v Line | Count | Source | 639 | 637k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 637k | return reinterpret_cast<TARGET&>(*this); | 644 | 637k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_24BucketedAggSinkOperatorXEEERT_v Line | Count | Source | 639 | 2.14k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 2.14k | return reinterpret_cast<TARGET&>(*this); | 644 | 2.14k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_27PartitionedAggSinkOperatorXEEERT_v Line | Count | Source | 639 | 375 | TARGET& cast() { | 640 | 375 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 375 | return reinterpret_cast<TARGET&>(*this); | 644 | 375 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_21ExchangeSinkOperatorXEEERT_v Line | Count | Source | 639 | 2.08M | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 2.08M | return reinterpret_cast<TARGET&>(*this); | 644 | 2.08M | } |
_ZN5doris21DataSinkOperatorXBase4castINS_18UnionSinkOperatorXEEERT_v Line | Count | Source | 639 | 11.5k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 11.5k | return reinterpret_cast<TARGET&>(*this); | 644 | 11.5k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_26PartitionSortSinkOperatorXEEERT_v Line | Count | Source | 639 | 315 | TARGET& cast() { | 640 | 315 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 315 | return reinterpret_cast<TARGET&>(*this); | 644 | 315 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_21SetProbeSinkOperatorXILb1EEEEERT_v Line | Count | Source | 639 | 4.63k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 4.63k | return reinterpret_cast<TARGET&>(*this); | 644 | 4.63k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_21SetProbeSinkOperatorXILb0EEEEERT_v Line | Count | Source | 639 | 2.54k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 2.54k | return reinterpret_cast<TARGET&>(*this); | 644 | 2.54k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_16SetSinkOperatorXILb1EEEEERT_v Line | Count | Source | 639 | 4.75k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 4.75k | return reinterpret_cast<TARGET&>(*this); | 644 | 4.75k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_16SetSinkOperatorXILb0EEEEERT_v Line | Count | Source | 639 | 4.96k | TARGET& cast() { | 640 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 643 | 4.96k | return reinterpret_cast<TARGET&>(*this); | 644 | 4.96k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_29GroupCommitBlockSinkOperatorXEEERT_v Line | Count | Source | 639 | 1.17k | TARGET& cast() { | 640 | 1.17k | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 1.17k | return reinterpret_cast<TARGET&>(*this); | 644 | 1.17k | } |
_ZN5doris21DataSinkOperatorXBase4castINS_17DictSinkOperatorXEEERT_v Line | Count | Source | 639 | 210 | TARGET& cast() { | 640 | 210 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 210 | return reinterpret_cast<TARGET&>(*this); | 644 | 210 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_19RecCTESinkOperatorXEEERT_v Line | Count | Source | 639 | 151 | TARGET& cast() { | 640 | 151 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 151 | return reinterpret_cast<TARGET&>(*this); | 644 | 151 | } |
_ZN5doris21DataSinkOperatorXBase4castINS_25RecCTEAnchorSinkOperatorXEEERT_v Line | Count | Source | 639 | 151 | TARGET& cast() { | 640 | 151 | DCHECK(dynamic_cast<TARGET*>(this)) | 641 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 642 | 0 | << " and expect type is" << typeid(TARGET).name(); | 643 | 151 | return reinterpret_cast<TARGET&>(*this); | 644 | 151 | } |
|
645 | | template <class TARGET> |
646 | | const TARGET& cast() const { |
647 | | DCHECK(dynamic_cast<const TARGET*>(this)) |
648 | | << " Mismatch type! Current type is " << typeid(*this).name() |
649 | | << " and expect type is" << typeid(TARGET).name(); |
650 | | return reinterpret_cast<const TARGET&>(*this); |
651 | | } |
652 | | |
653 | | [[nodiscard]] virtual std::shared_ptr<BasicSharedState> create_shared_state() const = 0; |
654 | | |
655 | 0 | Status close(RuntimeState* state) override { |
656 | 0 | return Status::InternalError("Should not reach here!"); |
657 | 0 | } |
658 | | |
659 | | [[nodiscard]] virtual std::string debug_string(int indentation_level) const; |
660 | | |
661 | | [[nodiscard]] virtual std::string debug_string(RuntimeState* state, |
662 | | int indentation_level) const; |
663 | | |
664 | 857k | [[nodiscard]] bool is_sink() const override { return true; } |
665 | | |
666 | 2.07M | static Status close(RuntimeState* state, Status exec_status) { |
667 | 2.07M | auto result = state->get_sink_local_state_result(); |
668 | 2.07M | if (!result) { |
669 | 0 | return result.error(); |
670 | 0 | } |
671 | 2.07M | return result.value()->close(state, exec_status); |
672 | 2.07M | } |
673 | | |
674 | 4.97M | [[nodiscard]] int operator_id() const { return _operator_id; } |
675 | | |
676 | 8.90M | [[nodiscard]] const std::vector<int>& dests_id() const { return _dests_id; } |
677 | | |
678 | 2.65M | [[nodiscard]] int nereids_id() const { return _nereids_id; } |
679 | | |
680 | 7.42M | [[nodiscard]] int node_id() const override { return _node_id; } |
681 | | |
682 | 4.68M | [[nodiscard]] std::string get_name() const override { return _name; } |
683 | | |
684 | 1.96M | virtual bool should_dry_run(RuntimeState* state) { return false; } |
685 | | |
686 | 383k | [[nodiscard]] virtual bool count_down_destination() { return true; } |
687 | | |
688 | | protected: |
689 | | template <typename Writer, typename Parent> |
690 | | requires(std::is_base_of_v<AsyncResultWriter, Writer>) |
691 | | friend class AsyncWriterSink; |
692 | | // _operator_id : the current Operator's ID, which is not visible to the user. |
693 | | // _node_id : the plan node ID corresponding to the Operator, which is visible on the profile. |
694 | | // _dests_id : the target _operator_id of the sink, for example, in the case of a multi-sink, there are multiple targets. |
695 | | const int _operator_id; |
696 | | const int _node_id; |
697 | | int _nereids_id = -1; |
698 | | bool _spillable = false; |
699 | | std::vector<int> _dests_id; |
700 | | std::string _name; |
701 | | }; |
702 | | |
703 | | template <typename LocalStateType> |
704 | | class DataSinkOperatorX : public DataSinkOperatorXBase { |
705 | | public: |
706 | | DataSinkOperatorX(const int id, const int node_id, const int dest_id) |
707 | 578k | : DataSinkOperatorXBase(id, node_id, dest_id) {}_ZN5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 123k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEEC2Eiii Line | Count | Source | 707 | 2.78k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 30.9k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 166 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 1.46k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 1.71k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 20 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 80 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 156 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEEC2Eiii Line | Count | Source | 707 | 134 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEEC2Eiii Line | Count | Source | 707 | 213 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEEC2Eiii Line | Count | Source | 707 | 133 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEEC2Eiii Line | Count | Source | 707 | 148 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 151 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEEC2Eiii Line | Count | Source | 707 | 151 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 256k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 88 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 3 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 502 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEEC2Eiii Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 13 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_18SortSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 28 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_17AggSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 31 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 131 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 158k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 1.41k | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 62 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEEC2Eiii _ZN5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 10 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_18DictSinkLocalStateEEC2Eiii Line | Count | Source | 707 | 105 | : DataSinkOperatorXBase(id, node_id, dest_id) {} |
|
708 | | DataSinkOperatorX(const int id, const TPlanNode& tnode, const int dest_id) |
709 | 205k | : DataSinkOperatorXBase(id, tnode, dest_id) {}_ZN5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 81.8k | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEEC2EiRKNS_9TPlanNodeEi _ZN5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 1.56k | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEEC2EiRKNS_9TPlanNodeEi _ZN5doris17DataSinkOperatorXINS_18SortSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 44.9k | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEEC2EiRKNS_9TPlanNodeEi _ZN5doris17DataSinkOperatorXINS_17AggSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 71.1k | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
_ZN5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 93 | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEEC2EiRKNS_9TPlanNodeEi _ZN5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 5.69k | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEEC2EiRKNS_9TPlanNodeEi _ZN5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Line | Count | Source | 709 | 51 | : DataSinkOperatorXBase(id, tnode, dest_id) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_18DictSinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEEC2EiRKNS_9TPlanNodeEi Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEEC2EiRKNS_9TPlanNodeEi |
710 | | |
711 | | DataSinkOperatorX(const int id, const int node_id, std::vector<int> dest_ids) |
712 | 2.36k | : DataSinkOperatorXBase(id, node_id, dest_ids) {}_ZN5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Line | Count | Source | 712 | 2.36k | : DataSinkOperatorXBase(id, node_id, dest_ids) {} |
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_18SortSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17AggSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_18DictSinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEEC2EiiSt6vectorIiSaIiEE Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEEC2EiiSt6vectorIiSaIiEE |
713 | | #ifdef BE_TEST |
714 | | DataSinkOperatorX() = default; |
715 | | #endif |
716 | | ~DataSinkOperatorX() override = default; |
717 | | |
718 | | Status setup_local_state(RuntimeState* state, LocalSinkStateInfo& info) override; |
719 | | std::shared_ptr<BasicSharedState> create_shared_state() const override; |
720 | | |
721 | | using LocalState = LocalStateType; |
722 | 3.58M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { |
723 | 3.58M | return state->get_sink_local_state()->template cast<LocalState>(); |
724 | 3.58M | } _ZNK5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 829k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 829k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 829k | } |
_ZNK5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 10.7k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 10.7k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 10.7k | } |
_ZNK5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 10.2k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 10.2k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 10.2k | } |
_ZNK5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 59.7k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 59.7k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 59.7k | } |
_ZNK5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 7.49k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 7.49k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 7.49k | } |
_ZNK5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 5.28k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 5.28k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 5.28k | } |
_ZNK5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 180 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 180 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 180 | } |
_ZNK5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 800 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 800 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 800 | } |
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE _ZNK5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 310 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 310 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 310 | } |
_ZNK5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 500k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 500k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 500k | } |
_ZNK5doris17DataSinkOperatorXINS_17AggSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 638k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 638k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 638k | } |
_ZNK5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 473 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 473 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 473 | } |
_ZNK5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 6.06k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 6.06k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 6.06k | } |
_ZNK5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 501k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 501k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 501k | } |
_ZNK5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 486k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 486k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 486k | } |
_ZNK5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 112 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 112 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 112 | } |
_ZNK5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 6 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 6 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 6 | } |
_ZNK5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 2.29k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 2.29k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 2.29k | } |
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE _ZNK5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 30.9k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 30.9k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 30.9k | } |
_ZNK5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 522 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 522 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 522 | } |
_ZNK5doris17DataSinkOperatorXINS_18SortSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 425k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 425k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 425k | } |
_ZNK5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 1.65k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 1.65k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 1.65k | } |
_ZNK5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 2.48k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 2.48k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 2.48k | } |
_ZNK5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 880 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 880 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 880 | } |
_ZNK5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 24.9k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 24.9k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 24.9k | } |
_ZNK5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 9.53k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 9.53k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 9.53k | } |
_ZNK5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 1.04k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 1.04k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 1.04k | } |
_ZNK5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 10.4k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 10.4k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 10.4k | } |
_ZNK5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 5.71k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 5.71k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 5.71k | } |
_ZNK5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 6.06k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 6.06k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 6.06k | } |
_ZNK5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 5.71k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 5.71k | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 5.71k | } |
_ZNK5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 8 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 8 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 8 | } |
_ZNK5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 667 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 667 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 667 | } |
_ZNK5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 16 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 16 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 16 | } |
_ZNK5doris17DataSinkOperatorXINS_18DictSinkLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 722 | 275 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 723 | 275 | return state->get_sink_local_state()->template cast<LocalState>(); | 724 | 275 | } |
|
725 | | }; |
726 | | |
727 | | template <typename SharedStateArg> |
728 | | class PipelineXSpillSinkLocalState : public PipelineXSinkLocalState<SharedStateArg> { |
729 | | public: |
730 | | using Base = PipelineXSinkLocalState<SharedStateArg>; |
731 | | PipelineXSpillSinkLocalState(DataSinkOperatorXBase* parent, RuntimeState* state) |
732 | 3.41k | : Base(parent, state) {}_ZN5doris28PipelineXSpillSinkLocalStateINS_20MultiCastSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 732 | 3.25k | : Base(parent, state) {} |
_ZN5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 732 | 7 | : Base(parent, state) {} |
_ZN5doris28PipelineXSpillSinkLocalStateINS_20SpillSortSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 732 | 28 | : Base(parent, state) {} |
_ZN5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 732 | 121 | : Base(parent, state) {} |
|
733 | 3.43k | ~PipelineXSpillSinkLocalState() override = default; _ZN5doris28PipelineXSpillSinkLocalStateINS_20MultiCastSharedStateEED2Ev Line | Count | Source | 733 | 3.27k | ~PipelineXSpillSinkLocalState() override = default; |
_ZN5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEED2Ev Line | Count | Source | 733 | 7 | ~PipelineXSpillSinkLocalState() override = default; |
_ZN5doris28PipelineXSpillSinkLocalStateINS_20SpillSortSharedStateEED2Ev Line | Count | Source | 733 | 28 | ~PipelineXSpillSinkLocalState() override = default; |
_ZN5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEED2Ev Line | Count | Source | 733 | 121 | ~PipelineXSpillSinkLocalState() override = default; |
|
734 | | |
735 | 3.38k | Status init(RuntimeState* state, LocalSinkStateInfo& info) override { |
736 | 3.38k | RETURN_IF_ERROR(Base::init(state, info)); |
737 | 3.38k | init_spill_counters(); |
738 | 3.38k | return Status::OK(); |
739 | 3.38k | } _ZN5doris28PipelineXSpillSinkLocalStateINS_20MultiCastSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE Line | Count | Source | 735 | 3.23k | Status init(RuntimeState* state, LocalSinkStateInfo& info) override { | 736 | 3.23k | RETURN_IF_ERROR(Base::init(state, info)); | 737 | 3.23k | init_spill_counters(); | 738 | 3.23k | return Status::OK(); | 739 | 3.23k | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE Line | Count | Source | 735 | 2 | Status init(RuntimeState* state, LocalSinkStateInfo& info) override { | 736 | 2 | RETURN_IF_ERROR(Base::init(state, info)); | 737 | 2 | init_spill_counters(); | 738 | 2 | return Status::OK(); | 739 | 2 | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_20SpillSortSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE Line | Count | Source | 735 | 28 | Status init(RuntimeState* state, LocalSinkStateInfo& info) override { | 736 | 28 | RETURN_IF_ERROR(Base::init(state, info)); | 737 | 28 | init_spill_counters(); | 738 | 28 | return Status::OK(); | 739 | 28 | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE Line | Count | Source | 735 | 121 | Status init(RuntimeState* state, LocalSinkStateInfo& info) override { | 736 | 121 | RETURN_IF_ERROR(Base::init(state, info)); | 737 | 121 | init_spill_counters(); | 738 | 121 | return Status::OK(); | 739 | 121 | } |
|
740 | | |
741 | 3.39k | void init_spill_counters() { |
742 | 3.39k | _spill_total_timer = |
743 | 3.39k | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); |
744 | | |
745 | 3.39k | _write_counters.init(Base::custom_profile()); |
746 | | |
747 | | // SpillFileWriter looks up these counters via get_counter() in its |
748 | | // constructor. They must be registered on the CustomCounters profile |
749 | | // before any SpillFileWriter is created, otherwise the lookups return |
750 | | // nullptr and COUNTER_UPDATE will SEGV. |
751 | 3.39k | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( |
752 | 3.39k | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); |
753 | 3.39k | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( |
754 | 3.39k | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); |
755 | | |
756 | 3.39k | _spill_max_rows_of_partition = ADD_COUNTER_WITH_LEVEL( |
757 | 3.39k | Base::custom_profile(), profile::SPILL_MAX_ROWS_OF_PARTITION, TUnit::UNIT, 1); |
758 | 3.39k | _spill_min_rows_of_partition = ADD_COUNTER_WITH_LEVEL( |
759 | 3.39k | Base::custom_profile(), profile::SPILL_MIN_ROWS_OF_PARTITION, TUnit::UNIT, 1); |
760 | 3.39k | } _ZN5doris28PipelineXSpillSinkLocalStateINS_20MultiCastSharedStateEE19init_spill_countersEv Line | Count | Source | 741 | 3.23k | void init_spill_counters() { | 742 | 3.23k | _spill_total_timer = | 743 | 3.23k | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 744 | | | 745 | 3.23k | _write_counters.init(Base::custom_profile()); | 746 | | | 747 | | // SpillFileWriter looks up these counters via get_counter() in its | 748 | | // constructor. They must be registered on the CustomCounters profile | 749 | | // before any SpillFileWriter is created, otherwise the lookups return | 750 | | // nullptr and COUNTER_UPDATE will SEGV. | 751 | 3.23k | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 752 | 3.23k | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 753 | 3.23k | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 754 | 3.23k | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 755 | | | 756 | 3.23k | _spill_max_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 757 | 3.23k | Base::custom_profile(), profile::SPILL_MAX_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 758 | 3.23k | _spill_min_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 759 | 3.23k | Base::custom_profile(), profile::SPILL_MIN_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 760 | 3.23k | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEE19init_spill_countersEv Line | Count | Source | 741 | 7 | void init_spill_counters() { | 742 | 7 | _spill_total_timer = | 743 | 7 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 744 | | | 745 | 7 | _write_counters.init(Base::custom_profile()); | 746 | | | 747 | | // SpillFileWriter looks up these counters via get_counter() in its | 748 | | // constructor. They must be registered on the CustomCounters profile | 749 | | // before any SpillFileWriter is created, otherwise the lookups return | 750 | | // nullptr and COUNTER_UPDATE will SEGV. | 751 | 7 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 752 | 7 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 753 | 7 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 754 | 7 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 755 | | | 756 | 7 | _spill_max_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 757 | 7 | Base::custom_profile(), profile::SPILL_MAX_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 758 | 7 | _spill_min_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 759 | 7 | Base::custom_profile(), profile::SPILL_MIN_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 760 | 7 | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_20SpillSortSharedStateEE19init_spill_countersEv Line | Count | Source | 741 | 28 | void init_spill_counters() { | 742 | 28 | _spill_total_timer = | 743 | 28 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 744 | | | 745 | 28 | _write_counters.init(Base::custom_profile()); | 746 | | | 747 | | // SpillFileWriter looks up these counters via get_counter() in its | 748 | | // constructor. They must be registered on the CustomCounters profile | 749 | | // before any SpillFileWriter is created, otherwise the lookups return | 750 | | // nullptr and COUNTER_UPDATE will SEGV. | 751 | 28 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 752 | 28 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 753 | 28 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 754 | 28 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 755 | | | 756 | 28 | _spill_max_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 757 | 28 | Base::custom_profile(), profile::SPILL_MAX_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 758 | 28 | _spill_min_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 759 | 28 | Base::custom_profile(), profile::SPILL_MIN_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 760 | 28 | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEE19init_spill_countersEv Line | Count | Source | 741 | 121 | void init_spill_counters() { | 742 | 121 | _spill_total_timer = | 743 | 121 | ADD_TIMER_WITH_LEVEL(Base::custom_profile(), profile::SPILL_TOTAL_TIME, 1); | 744 | | | 745 | 121 | _write_counters.init(Base::custom_profile()); | 746 | | | 747 | | // SpillFileWriter looks up these counters via get_counter() in its | 748 | | // constructor. They must be registered on the CustomCounters profile | 749 | | // before any SpillFileWriter is created, otherwise the lookups return | 750 | | // nullptr and COUNTER_UPDATE will SEGV. | 751 | 121 | _spill_write_file_total_size = ADD_COUNTER_WITH_LEVEL( | 752 | 121 | Base::custom_profile(), profile::SPILL_WRITE_FILE_BYTES, TUnit::BYTES, 1); | 753 | 121 | _spill_file_total_count = ADD_COUNTER_WITH_LEVEL( | 754 | 121 | Base::custom_profile(), profile::SPILL_WRITE_FILE_TOTAL_COUNT, TUnit::UNIT, 1); | 755 | | | 756 | 121 | _spill_max_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 757 | 121 | Base::custom_profile(), profile::SPILL_MAX_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 758 | 121 | _spill_min_rows_of_partition = ADD_COUNTER_WITH_LEVEL( | 759 | 121 | Base::custom_profile(), profile::SPILL_MIN_ROWS_OF_PARTITION, TUnit::UNIT, 1); | 760 | 121 | } |
|
761 | | |
762 | 3.38k | std::vector<Dependency*> dependencies() const override { |
763 | 3.38k | auto dependencies = Base::dependencies(); |
764 | 3.38k | return dependencies; |
765 | 3.38k | } _ZNK5doris28PipelineXSpillSinkLocalStateINS_20MultiCastSharedStateEE12dependenciesEv Line | Count | Source | 762 | 3.27k | std::vector<Dependency*> dependencies() const override { | 763 | 3.27k | auto dependencies = Base::dependencies(); | 764 | 3.27k | return dependencies; | 765 | 3.27k | } |
Unexecuted instantiation: _ZNK5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEE12dependenciesEv _ZNK5doris28PipelineXSpillSinkLocalStateINS_20SpillSortSharedStateEE12dependenciesEv Line | Count | Source | 762 | 11 | std::vector<Dependency*> dependencies() const override { | 763 | 11 | auto dependencies = Base::dependencies(); | 764 | 11 | return dependencies; | 765 | 11 | } |
_ZNK5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEE12dependenciesEv Line | Count | Source | 762 | 101 | std::vector<Dependency*> dependencies() const override { | 763 | 101 | auto dependencies = Base::dependencies(); | 764 | 101 | return dependencies; | 765 | 101 | } |
|
766 | | |
767 | 370 | void update_max_min_rows_counter() { |
768 | 370 | int64_t max_rows = 0; |
769 | 370 | int64_t min_rows = std::numeric_limits<int64_t>::max(); |
770 | | |
771 | 1.66k | for (auto rows : _rows_in_partitions) { |
772 | 1.66k | if (rows > max_rows) { |
773 | 11 | max_rows = rows; |
774 | 11 | } |
775 | 1.66k | if (rows < min_rows) { |
776 | 372 | min_rows = rows; |
777 | 372 | } |
778 | 1.66k | } |
779 | | |
780 | 370 | COUNTER_SET(_spill_max_rows_of_partition, max_rows); |
781 | 370 | COUNTER_SET(_spill_min_rows_of_partition, min_rows); |
782 | 370 | } _ZN5doris28PipelineXSpillSinkLocalStateINS_30PartitionedHashJoinSharedStateEE27update_max_min_rows_counterEv Line | Count | Source | 767 | 4 | void update_max_min_rows_counter() { | 768 | 4 | int64_t max_rows = 0; | 769 | 4 | int64_t min_rows = std::numeric_limits<int64_t>::max(); | 770 | | | 771 | 32 | for (auto rows : _rows_in_partitions) { | 772 | 32 | if (rows > max_rows) { | 773 | 4 | max_rows = rows; | 774 | 4 | } | 775 | 32 | if (rows < min_rows) { | 776 | 6 | min_rows = rows; | 777 | 6 | } | 778 | 32 | } | 779 | | | 780 | 4 | COUNTER_SET(_spill_max_rows_of_partition, max_rows); | 781 | 4 | COUNTER_SET(_spill_min_rows_of_partition, min_rows); | 782 | 4 | } |
_ZN5doris28PipelineXSpillSinkLocalStateINS_25PartitionedAggSharedStateEE27update_max_min_rows_counterEv Line | Count | Source | 767 | 366 | void update_max_min_rows_counter() { | 768 | 366 | int64_t max_rows = 0; | 769 | 366 | int64_t min_rows = std::numeric_limits<int64_t>::max(); | 770 | | | 771 | 1.63k | for (auto rows : _rows_in_partitions) { | 772 | 1.63k | if (rows > max_rows) { | 773 | 7 | max_rows = rows; | 774 | 7 | } | 775 | 1.63k | if (rows < min_rows) { | 776 | 366 | min_rows = rows; | 777 | 366 | } | 778 | 1.63k | } | 779 | | | 780 | 366 | COUNTER_SET(_spill_max_rows_of_partition, max_rows); | 781 | 366 | COUNTER_SET(_spill_min_rows_of_partition, min_rows); | 782 | 366 | } |
|
783 | | |
784 | | std::vector<int64_t> _rows_in_partitions; |
785 | | |
786 | | // Total time of spill, including spill task scheduling time, |
787 | | // serialize block time, write disk file time, |
788 | | // and read disk file time, deserialize block time etc. |
789 | | RuntimeProfile::Counter* _spill_total_timer = nullptr; |
790 | | |
791 | | // Shared spill write counters |
792 | | SpillWriteCounters _write_counters; |
793 | | // Backward-compatible aliases for commonly accessed write counters |
794 | | RuntimeProfile::Counter*& _spill_write_file_timer = _write_counters.spill_write_file_timer; |
795 | | RuntimeProfile::Counter*& _spill_write_serialize_block_timer = |
796 | | _write_counters.spill_write_serialize_block_timer; |
797 | | RuntimeProfile::Counter*& _spill_write_block_count = _write_counters.spill_write_block_count; |
798 | | RuntimeProfile::Counter*& _spill_write_block_data_size = |
799 | | _write_counters.spill_write_block_data_size; |
800 | | RuntimeProfile::Counter*& _spill_write_rows_count = _write_counters.spill_write_rows_count; |
801 | | |
802 | | // Sink-only counters |
803 | | // Spilled file total size |
804 | | RuntimeProfile::Counter* _spill_file_total_size = nullptr; |
805 | | // Total bytes written to spill files (required by SpillFileWriter) |
806 | | RuntimeProfile::Counter* _spill_write_file_total_size = nullptr; |
807 | | // Total number of spill files created (required by SpillFileWriter) |
808 | | RuntimeProfile::Counter* _spill_file_total_count = nullptr; |
809 | | RuntimeProfile::Counter* _spill_max_rows_of_partition = nullptr; |
810 | | RuntimeProfile::Counter* _spill_min_rows_of_partition = nullptr; |
811 | | }; |
812 | | |
813 | | class OperatorXBase : public OperatorBase { |
814 | | public: |
815 | | OperatorXBase(ObjectPool* pool, const TPlanNode& tnode, const int operator_id, |
816 | | const DescriptorTbl& descs) |
817 | 771k | : OperatorBase(tnode.__isset.is_serial_operator && tnode.is_serial_operator), |
818 | 771k | _operator_id(operator_id), |
819 | 771k | _node_id(tnode.node_id), |
820 | 771k | _type(tnode.node_type), |
821 | 771k | _pool(pool), |
822 | 771k | _tuple_ids(tnode.row_tuples), |
823 | 771k | _row_descriptor(descs, tnode.row_tuples), |
824 | 771k | _resource_profile(tnode.resource_profile), |
825 | 771k | _limit(tnode.limit) { |
826 | 771k | if (tnode.__isset.output_tuple_id) { |
827 | 361k | _output_row_descriptor = |
828 | 361k | std::make_unique<RowDescriptor>(descs, std::vector {tnode.output_tuple_id}); |
829 | 361k | } |
830 | 771k | if (!tnode.intermediate_output_tuple_id_list.empty()) { |
831 | | // common subexpression elimination |
832 | 3.72k | _intermediate_output_row_descriptor.reserve( |
833 | 3.72k | tnode.intermediate_output_tuple_id_list.size()); |
834 | 7.63k | for (auto output_tuple_id : tnode.intermediate_output_tuple_id_list) { |
835 | 7.63k | _intermediate_output_row_descriptor.push_back( |
836 | 7.63k | RowDescriptor(descs, std::vector {output_tuple_id})); |
837 | 7.63k | } |
838 | 3.72k | } |
839 | 771k | } |
840 | | |
841 | | OperatorXBase(ObjectPool* pool, int node_id, int operator_id) |
842 | 130k | : OperatorBase(), |
843 | 130k | _operator_id(operator_id), |
844 | 130k | _node_id(node_id), |
845 | 130k | _pool(pool), |
846 | 130k | _limit(-1) {} |
847 | | |
848 | | #ifdef BE_TEST |
849 | | OperatorXBase() : _operator_id(-1), _node_id(0), _limit(-1) {}; |
850 | | #endif |
851 | | virtual Status init(const TPlanNode& tnode, RuntimeState* state); |
852 | 0 | Status init(const TDataSink& tsink) override { |
853 | 0 | throw Exception(Status::FatalError("should not reach here!")); |
854 | 0 | } |
855 | 0 | virtual Status init(ExchangeType type) { |
856 | 0 | throw Exception(Status::FatalError("should not reach here!")); |
857 | 0 | } |
858 | 0 | [[noreturn]] virtual const std::vector<TRuntimeFilterDesc>& runtime_filter_descs() { |
859 | 0 | throw doris::Exception(ErrorCode::NOT_IMPLEMENTED_ERROR, _op_name); |
860 | 0 | } |
861 | 4.56M | [[nodiscard]] std::string get_name() const override { return _op_name; } |
862 | 6.80M | [[nodiscard]] virtual bool need_more_input_data(RuntimeState* state) const { return true; } |
863 | 8.93M | bool is_blockable(RuntimeState* state) const override { |
864 | 8.93M | return state->get_sink_local_state()->is_blockable() || _blockable; |
865 | 8.93M | } |
866 | | |
867 | | Status prepare(RuntimeState* state) override; |
868 | | |
869 | | Status terminate(RuntimeState* state) override; |
870 | | [[nodiscard]] virtual Status get_block(RuntimeState* state, Block* block, bool* eos) = 0; |
871 | | |
872 | | Status close(RuntimeState* state) override; |
873 | | |
874 | 1.76M | [[nodiscard]] virtual const RowDescriptor& intermediate_row_desc() const { |
875 | 1.76M | return _row_descriptor; |
876 | 1.76M | } |
877 | | |
878 | 7.64k | [[nodiscard]] const RowDescriptor& intermediate_row_desc(int idx) { |
879 | 7.64k | if (idx == 0) { |
880 | 3.73k | return intermediate_row_desc(); |
881 | 3.73k | } |
882 | 7.64k | DCHECK((idx - 1) < _intermediate_output_row_descriptor.size()); |
883 | 3.90k | return _intermediate_output_row_descriptor[idx - 1]; |
884 | 7.64k | } |
885 | | |
886 | 762k | [[nodiscard]] const RowDescriptor& projections_row_desc() const { |
887 | 762k | if (_intermediate_output_row_descriptor.empty()) { |
888 | 759k | return intermediate_row_desc(); |
889 | 759k | } else { |
890 | 3.08k | return _intermediate_output_row_descriptor.back(); |
891 | 3.08k | } |
892 | 762k | } |
893 | | |
894 | | // Returns the memory this single operator expects to allocate in the next |
895 | | // execution round. Each operator reports only its OWN requirement — the |
896 | | // pipeline task is responsible for summing all operators + sink. |
897 | | // After the value is consumed the caller should invoke |
898 | | // reset_reserve_mem_size() so the next round starts from zero. |
899 | | // If this method is not overridden by a subclass, its default value is the |
900 | | // minimum operator memory (typically 1 MB). |
901 | 0 | [[nodiscard]] virtual size_t get_reserve_mem_size(RuntimeState* state) { |
902 | 0 | return state->minimum_operator_memory_required_bytes(); |
903 | 0 | } |
904 | | |
905 | | virtual std::string debug_string(int indentation_level = 0) const; |
906 | | |
907 | | virtual std::string debug_string(RuntimeState* state, int indentation_level = 0) const; |
908 | | |
909 | | virtual Status setup_local_state(RuntimeState* state, LocalStateInfo& info) = 0; |
910 | | |
911 | | template <class TARGET> |
912 | 27.9M | TARGET& cast() { |
913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) |
914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() |
915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); |
916 | 27.9M | return reinterpret_cast<TARGET&>(*this); |
917 | 27.9M | } _ZN5doris13OperatorXBase4castINS_17OlapScanOperatorXEEERT_v Line | Count | Source | 912 | 20.9M | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 20.9M | return reinterpret_cast<TARGET&>(*this); | 917 | 20.9M | } |
Unexecuted instantiation: _ZN5doris13OperatorXBase4castINS_17JDBCScanOperatorXEEERT_v _ZN5doris13OperatorXBase4castINS_17FileScanOperatorXEEERT_v Line | Count | Source | 912 | 1.44M | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 1.44M | return reinterpret_cast<TARGET&>(*this); | 917 | 1.44M | } |
_ZN5doris13OperatorXBase4castINS_17MetaScanOperatorXEEERT_v Line | Count | Source | 912 | 56.9k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 56.9k | return reinterpret_cast<TARGET&>(*this); | 917 | 56.9k | } |
_ZN5doris13OperatorXBase4castINS_20GroupCommitOperatorXEEERT_v Line | Count | Source | 912 | 539 | TARGET& cast() { | 913 | 539 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 539 | return reinterpret_cast<TARGET&>(*this); | 917 | 539 | } |
_ZN5doris13OperatorXBase4castINS_22HashJoinProbeOperatorXEEERT_v Line | Count | Source | 912 | 325k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 325k | return reinterpret_cast<TARGET&>(*this); | 917 | 325k | } |
_ZN5doris13OperatorXBase4castINS_28NestedLoopJoinProbeOperatorXEEERT_v Line | Count | Source | 912 | 2.01M | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 2.01M | return reinterpret_cast<TARGET&>(*this); | 917 | 2.01M | } |
_ZN5doris13OperatorXBase4castINS_33PartitionedHashJoinProbeOperatorXEEERT_v Line | Count | Source | 912 | 21 | TARGET& cast() { | 913 | 21 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 21 | return reinterpret_cast<TARGET&>(*this); | 917 | 21 | } |
_ZN5doris13OperatorXBase4castINS_24SpillSortSourceOperatorXEEERT_v Line | Count | Source | 912 | 31 | TARGET& cast() { | 913 | 31 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 31 | return reinterpret_cast<TARGET&>(*this); | 917 | 31 | } |
_ZN5doris13OperatorXBase4castINS_29LocalMergeSortSourceOperatorXEEERT_v Line | Count | Source | 912 | 85.2k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 85.2k | return reinterpret_cast<TARGET&>(*this); | 917 | 85.2k | } |
_ZN5doris13OperatorXBase4castINS_18AggSourceOperatorXEEERT_v Line | Count | Source | 912 | 225k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 225k | return reinterpret_cast<TARGET&>(*this); | 917 | 225k | } |
_ZN5doris13OperatorXBase4castINS_26BucketedAggSourceOperatorXEEERT_v Line | Count | Source | 912 | 1.24k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 1.24k | return reinterpret_cast<TARGET&>(*this); | 917 | 1.24k | } |
_ZN5doris13OperatorXBase4castINS_29PartitionedAggSourceOperatorXEEERT_v Line | Count | Source | 912 | 114 | TARGET& cast() { | 913 | 114 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 114 | return reinterpret_cast<TARGET&>(*this); | 917 | 114 | } |
_ZN5doris13OperatorXBase4castINS_22TableFunctionOperatorXEEERT_v Line | Count | Source | 912 | 28.3k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 28.3k | return reinterpret_cast<TARGET&>(*this); | 917 | 28.3k | } |
_ZN5doris13OperatorXBase4castINS_23ExchangeSourceOperatorXEEERT_v Line | Count | Source | 912 | 668k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 668k | return reinterpret_cast<TARGET&>(*this); | 917 | 668k | } |
_ZN5doris13OperatorXBase4castINS_15RepeatOperatorXEEERT_v Line | Count | Source | 912 | 5.18k | TARGET& cast() { | 913 | 5.18k | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 2 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 2 | << " and expect type is" << typeid(TARGET).name(); | 916 | 5.18k | return reinterpret_cast<TARGET&>(*this); | 917 | 5.18k | } |
_ZN5doris13OperatorXBase4castINS_20UnionSourceOperatorXEEERT_v Line | Count | Source | 912 | 163k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 163k | return reinterpret_cast<TARGET&>(*this); | 917 | 163k | } |
_ZN5doris13OperatorXBase4castINS_36MultiCastDataStreamerSourceOperatorXEEERT_v Line | Count | Source | 912 | 18.5k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 18.5k | return reinterpret_cast<TARGET&>(*this); | 917 | 18.5k | } |
_ZN5doris13OperatorXBase4castINS_18SetSourceOperatorXILb1EEEEERT_v Line | Count | Source | 912 | 4.54k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 4.54k | return reinterpret_cast<TARGET&>(*this); | 917 | 4.54k | } |
_ZN5doris13OperatorXBase4castINS_18SetSourceOperatorXILb0EEEEERT_v Line | Count | Source | 912 | 4.91k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 4.91k | return reinterpret_cast<TARGET&>(*this); | 917 | 4.91k | } |
_ZN5doris13OperatorXBase4castINS_22DataGenSourceOperatorXEEERT_v Line | Count | Source | 912 | 469 | TARGET& cast() { | 913 | 469 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 469 | return reinterpret_cast<TARGET&>(*this); | 917 | 469 | } |
_ZN5doris13OperatorXBase4castINS_19SchemaScanOperatorXEEERT_v Line | Count | Source | 912 | 2.07k | TARGET& cast() { | 913 | 2.07k | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 2.07k | return reinterpret_cast<TARGET&>(*this); | 917 | 2.07k | } |
_ZN5doris13OperatorXBase4castINS_20CacheSourceOperatorXEEERT_v Line | Count | Source | 912 | 34 | TARGET& cast() { | 913 | 34 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 34 | return reinterpret_cast<TARGET&>(*this); | 917 | 34 | } |
_ZN5doris13OperatorXBase4castINS_21RecCTESourceOperatorXEEERT_v Line | Count | Source | 912 | 604 | TARGET& cast() { | 913 | 604 | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 0 | << " and expect type is" << typeid(TARGET).name(); | 916 | 604 | return reinterpret_cast<TARGET&>(*this); | 917 | 604 | } |
_ZN5doris13OperatorXBase4castINS_21StreamingAggOperatorXEEERT_v Line | Count | Source | 912 | 1.07M | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 1.07M | return reinterpret_cast<TARGET&>(*this); | 917 | 1.07M | } |
_ZN5doris13OperatorXBase4castINS_29DistinctStreamingAggOperatorXEEERT_v Line | Count | Source | 912 | 896k | TARGET& cast() { | 913 | 18.4E | DCHECK(dynamic_cast<TARGET*>(this)) | 914 | 18.4E | << " Mismatch type! Current type is " << typeid(*this).name() | 915 | 18.4E | << " and expect type is" << typeid(TARGET).name(); | 916 | 896k | return reinterpret_cast<TARGET&>(*this); | 917 | 896k | } |
|
918 | | template <class TARGET> |
919 | | const TARGET& cast() const { |
920 | | DCHECK(dynamic_cast<const TARGET*>(this)) |
921 | | << " Mismatch type! Current type is " << typeid(*this).name() |
922 | | << " and expect type is" << typeid(TARGET).name(); |
923 | | return reinterpret_cast<const TARGET&>(*this); |
924 | | } |
925 | | |
926 | 80.7k | [[nodiscard]] OperatorPtr get_child() { return _child; } |
927 | | |
928 | 9.79k | [[nodiscard]] VExprContextSPtrs& conjuncts() { return _conjuncts; } |
929 | 5.64k | [[nodiscard]] VExprContextSPtrs& projections() { return _projections; } |
930 | 2.09M | [[nodiscard]] virtual RowDescriptor& row_descriptor() { return _row_descriptor; } |
931 | | |
932 | 76.3M | [[nodiscard]] int operator_id() const { return _operator_id; } |
933 | 11.6M | [[nodiscard]] int node_id() const override { return _node_id; } |
934 | 3.77M | [[nodiscard]] int nereids_id() const { return _nereids_id; } |
935 | | |
936 | 583k | [[nodiscard]] int64_t limit() const { return _limit; } |
937 | | |
938 | 12.0M | [[nodiscard]] const RowDescriptor& row_desc() const override { |
939 | 12.0M | return _output_row_descriptor ? *_output_row_descriptor : _row_descriptor; |
940 | 12.0M | } |
941 | | |
942 | 1.60M | [[nodiscard]] const RowDescriptor* output_row_descriptor() { |
943 | 1.60M | return _output_row_descriptor.get(); |
944 | 1.60M | } |
945 | | |
946 | 755k | bool has_output_row_desc() const { return _output_row_descriptor != nullptr; } |
947 | | |
948 | | [[nodiscard]] virtual Status get_block_after_projects(RuntimeState* state, Block* block, |
949 | | bool* eos); |
950 | | |
951 | | /// Only use in vectorized exec engine try to do projections to trans _row_desc -> _output_row_desc |
952 | | Status do_projections(RuntimeState* state, Block* origin_block, Block* output_block) const; |
953 | 1.18M | void set_parallel_tasks(int parallel_tasks) { _parallel_tasks = parallel_tasks; } |
954 | 105 | int parallel_tasks() const { return _parallel_tasks; } |
955 | | |
956 | | // To keep compatibility with older FE |
957 | 1 | void set_serial_operator() { _is_serial_operator = true; } |
958 | | |
959 | | // Resets this operator's estimated memory usage to zero so that the next |
960 | | // call to get_reserve_mem_size() starts fresh. The pipeline task calls |
961 | | // this after consuming the reserve size for all operators in a round. |
962 | 0 | virtual void reset_reserve_mem_size(RuntimeState* state) {} |
963 | | |
964 | | protected: |
965 | | template <typename Dependency> |
966 | | friend class PipelineXLocalState; |
967 | | friend class PipelineXLocalStateBase; |
968 | | friend class Scanner; |
969 | | const int _operator_id; |
970 | | const int _node_id; // unique w/in single plan tree |
971 | | int _nereids_id = -1; |
972 | | TPlanNodeType::type _type; |
973 | | ObjectPool* _pool = nullptr; |
974 | | std::vector<TupleId> _tuple_ids; |
975 | | |
976 | | private: |
977 | | // The expr of operator set to private permissions, as cannot be executed concurrently, |
978 | | // should use local state's expr. |
979 | | VExprContextSPtrs _conjuncts; |
980 | | VExprContextSPtrs _projections; |
981 | | // Used in common subexpression elimination to compute intermediate results. |
982 | | std::vector<VExprContextSPtrs> _intermediate_projections; |
983 | | |
984 | | protected: |
985 | | RowDescriptor _row_descriptor; |
986 | | std::unique_ptr<RowDescriptor> _output_row_descriptor = nullptr; |
987 | | std::vector<RowDescriptor> _intermediate_output_row_descriptor; |
988 | | |
989 | | /// Resource information sent from the frontend. |
990 | | const TBackendResourceProfile _resource_profile; |
991 | | |
992 | | int64_t _limit; // -1: no limit |
993 | | |
994 | | uint32_t _debug_point_count = 0; |
995 | | std::atomic_uint32_t _bytes_per_row = 0; |
996 | | |
997 | | std::string _op_name; |
998 | | int _parallel_tasks = 0; |
999 | | |
1000 | | //_keep_origin is used to avoid copying during projection, |
1001 | | // currently set to false only in the nestloop join. |
1002 | | bool _keep_origin = true; |
1003 | | |
1004 | | // _blockable is true if the operator contains expressions that may block execution |
1005 | | bool _blockable = false; |
1006 | | }; |
1007 | | |
1008 | | template <typename LocalStateType> |
1009 | | class OperatorX : public OperatorXBase { |
1010 | | public: |
1011 | | OperatorX(ObjectPool* pool, const TPlanNode& tnode, const int operator_id, |
1012 | | const DescriptorTbl& descs) |
1013 | 772k | : OperatorXBase(pool, tnode, operator_id, descs) {}_ZN5doris9OperatorXINS_21UnionSourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 53.6k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_29PartitionSortSourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 62 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_25MaterializationLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 1.58k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb1EEEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 134 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb0EEEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 133 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_18EmptySetLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 1.66k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_16SelectLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 2.36k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_22RecCTESourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 151 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_20RecCTEScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 1.95k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_23HashJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 81.8k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_18OlapScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 217k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_21GroupCommitLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 77 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
Unexecuted instantiation: _ZN5doris9OperatorXINS_18JDBCScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE _ZN5doris9OperatorXINS_18FileScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 25.3k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_18AnalyticLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 1.56k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_14SortLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 2.30k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_19SpillSortLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 28 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_24LocalMergeSortLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 42.6k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_13AggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 71.1k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_21BucketedAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 93 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_24PartitionedAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 131 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_23TableFunctionLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 919 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_18ExchangeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 155k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_16RepeatLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 297 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 5.69k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_23AssertNumRowsLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 218 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
Unexecuted instantiation: _ZN5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE _ZN5doris9OperatorXINS_17DataGenLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 466 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_20SchemaScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 2.07k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_18MetaScanLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 7.11k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
Unexecuted instantiation: _ZN5doris9OperatorXINS_29LocalExchangeSourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE _ZN5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 49 | : OperatorXBase(pool, tnode, operator_id, descs) {} |
Unexecuted instantiation: _ZN5doris9OperatorXINS_21CacheSourceLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE _ZN5doris9OperatorXINS_22StreamingAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 3.60k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
_ZN5doris9OperatorXINS_30DistinctStreamingAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1013 | 91.7k | : OperatorXBase(pool, tnode, operator_id, descs) {} |
|
1014 | | OperatorX(ObjectPool* pool, int node_id, int operator_id) |
1015 | 130k | : OperatorXBase(pool, node_id, operator_id) {};_ZN5doris9OperatorXINS_21CacheSourceLocalStateEEC2EPNS_10ObjectPoolEii Line | Count | Source | 1015 | 10 | : OperatorXBase(pool, node_id, operator_id) {}; |
_ZN5doris9OperatorXINS_29LocalExchangeSourceLocalStateEEC2EPNS_10ObjectPoolEii Line | Count | Source | 1015 | 123k | : OperatorXBase(pool, node_id, operator_id) {}; |
_ZN5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEEC2EPNS_10ObjectPoolEii Line | Count | Source | 1015 | 6.89k | : OperatorXBase(pool, node_id, operator_id) {}; |
Unexecuted instantiation: _ZN5doris9OperatorXINS_23HashJoinProbeLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18OlapScanLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_21GroupCommitLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18JDBCScanLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18FileScanLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18AnalyticLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_14SortLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_19SpillSortLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_24LocalMergeSortLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_13AggLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_21BucketedAggLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_24PartitionedAggLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_23TableFunctionLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18ExchangeLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_16RepeatLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_23AssertNumRowsLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18EmptySetLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_21UnionSourceLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_29PartitionSortSourceLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_19SetSourceLocalStateILb1EEEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_19SetSourceLocalStateILb0EEEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_17DataGenLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_20SchemaScanLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_18MetaScanLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_22RecCTESourceLocalStateEEC2EPNS_10ObjectPoolEii Unexecuted instantiation: _ZN5doris9OperatorXINS_20RecCTEScanLocalStateEEC2EPNS_10ObjectPoolEii |
1016 | | |
1017 | | #ifdef BE_TEST |
1018 | | OperatorX() = default; |
1019 | | #endif |
1020 | | |
1021 | | ~OperatorX() override = default; |
1022 | | |
1023 | | Status setup_local_state(RuntimeState* state, LocalStateInfo& info) override; |
1024 | | using LocalState = LocalStateType; |
1025 | 21.6M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { |
1026 | 21.6M | return state->get_local_state(operator_id())->template cast<LocalState>(); |
1027 | 21.6M | } _ZNK5doris9OperatorXINS_22RecCTESourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 10.8k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 10.8k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 10.8k | } |
_ZNK5doris9OperatorXINS_21CacheSourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 79 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 79 | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 79 | } |
_ZNK5doris9OperatorXINS_29LocalExchangeSourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 3.54M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 3.54M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 3.54M | } |
_ZNK5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 82.6k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 82.6k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 82.6k | } |
_ZNK5doris9OperatorXINS_18OlapScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 3.90M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 3.90M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 3.90M | } |
_ZNK5doris9OperatorXINS_21GroupCommitLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 4.33M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 4.33M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 4.33M | } |
Unexecuted instantiation: _ZNK5doris9OperatorXINS_18JDBCScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE _ZNK5doris9OperatorXINS_18FileScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 436k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 436k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 436k | } |
_ZNK5doris9OperatorXINS_23HashJoinProbeLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 591k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 591k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 591k | } |
_ZNK5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 59 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 59 | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 59 | } |
_ZNK5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 136k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 136k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 136k | } |
_ZNK5doris9OperatorXINS_21UnionSourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 381k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 381k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 381k | } |
_ZNK5doris9OperatorXINS_29PartitionSortSourceLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 1.73k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 1.73k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 1.73k | } |
_ZNK5doris9OperatorXINS_25MaterializationLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 36.6k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 36.6k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 36.6k | } |
_ZNK5doris9OperatorXINS_19SetSourceLocalStateILb1EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 7.41k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 7.41k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 7.41k | } |
_ZNK5doris9OperatorXINS_19SetSourceLocalStateILb0EEEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 8.27k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 8.27k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 8.27k | } |
_ZNK5doris9OperatorXINS_18EmptySetLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 3.33k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 3.33k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 3.33k | } |
_ZNK5doris9OperatorXINS_18MetaScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 21.8k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 21.8k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 21.8k | } |
_ZNK5doris9OperatorXINS_16SelectLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 26.7k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 26.7k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 26.7k | } |
_ZNK5doris9OperatorXINS_20RecCTEScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 12.3k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 12.3k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 12.3k | } |
_ZNK5doris9OperatorXINS_23TableFunctionLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 31.0k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 31.0k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 31.0k | } |
_ZNK5doris9OperatorXINS_18ExchangeLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 1.88M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 1.88M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 1.88M | } |
_ZNK5doris9OperatorXINS_30DistinctStreamingAggLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 3.82M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 3.82M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 3.82M | } |
_ZNK5doris9OperatorXINS_22StreamingAggLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 281k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 281k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 281k | } |
_ZNK5doris9OperatorXINS_13AggLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 481k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 481k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 481k | } |
_ZNK5doris9OperatorXINS_24PartitionedAggLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 700 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 700 | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 700 | } |
_ZNK5doris9OperatorXINS_21BucketedAggLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 14.1k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 14.1k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 14.1k | } |
_ZNK5doris9OperatorXINS_14SortLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 43.4k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 43.4k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 43.4k | } |
_ZNK5doris9OperatorXINS_19SpillSortLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 796 | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 796 | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 796 | } |
_ZNK5doris9OperatorXINS_24LocalMergeSortLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 1.45M | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 1.45M | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 1.45M | } |
_ZNK5doris9OperatorXINS_18AnalyticLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 40.8k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 40.8k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 40.8k | } |
_ZNK5doris9OperatorXINS_16RepeatLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 13.6k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 13.6k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 13.6k | } |
_ZNK5doris9OperatorXINS_23AssertNumRowsLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 1.28k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 1.28k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 1.28k | } |
_ZNK5doris9OperatorXINS_17DataGenLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 48.9k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 48.9k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 48.9k | } |
_ZNK5doris9OperatorXINS_20SchemaScanLocalStateEE15get_local_stateEPNS_12RuntimeStateE Line | Count | Source | 1025 | 11.2k | [[nodiscard]] LocalState& get_local_state(RuntimeState* state) const { | 1026 | 11.2k | return state->get_local_state(operator_id())->template cast<LocalState>(); | 1027 | 11.2k | } |
|
1028 | | |
1029 | | // Returns memory this single operator expects to allocate in the next round. |
1030 | | // Does NOT include child operators — the pipeline task iterates all |
1031 | | // operators itself. |
1032 | 3.19M | size_t get_reserve_mem_size(RuntimeState* state) override { |
1033 | 3.19M | auto& local_state = get_local_state(state); |
1034 | 3.19M | auto estimated_size = local_state.estimate_memory_usage(); |
1035 | 3.19M | if (estimated_size < state->minimum_operator_memory_required_bytes()) { |
1036 | 3.19M | estimated_size = state->minimum_operator_memory_required_bytes(); |
1037 | 3.19M | } |
1038 | 3.19M | return estimated_size; |
1039 | 3.19M | } _ZN5doris9OperatorXINS_22RecCTESourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 2.95k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 2.95k | auto& local_state = get_local_state(state); | 1034 | 2.95k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 2.95k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 2.95k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 2.95k | } | 1038 | 2.95k | return estimated_size; | 1039 | 2.95k | } |
_ZN5doris9OperatorXINS_21CacheSourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 23 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 23 | auto& local_state = get_local_state(state); | 1034 | 23 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 23 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 23 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 23 | } | 1038 | 23 | return estimated_size; | 1039 | 23 | } |
_ZN5doris9OperatorXINS_29LocalExchangeSourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 1.18M | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 1.18M | auto& local_state = get_local_state(state); | 1034 | 1.18M | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 1.18M | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 1.18M | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 1.18M | } | 1038 | 1.18M | return estimated_size; | 1039 | 1.18M | } |
_ZN5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 27.6k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 27.6k | auto& local_state = get_local_state(state); | 1034 | 27.6k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 27.6k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 27.6k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 27.6k | } | 1038 | 27.6k | return estimated_size; | 1039 | 27.6k | } |
_ZN5doris9OperatorXINS_23HashJoinProbeLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 139k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 139k | auto& local_state = get_local_state(state); | 1034 | 139k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 139k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 139k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 139k | } | 1038 | 139k | return estimated_size; | 1039 | 139k | } |
_ZN5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 1 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 1 | auto& local_state = get_local_state(state); | 1034 | 1 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 1 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 1 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 1 | } | 1038 | 1 | return estimated_size; | 1039 | 1 | } |
_ZN5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 32.4k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 32.4k | auto& local_state = get_local_state(state); | 1034 | 32.4k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 32.4k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 32.4k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 32.4k | } | 1038 | 32.4k | return estimated_size; | 1039 | 32.4k | } |
_ZN5doris9OperatorXINS_21UnionSourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 80.4k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 80.4k | auto& local_state = get_local_state(state); | 1034 | 80.4k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 80.4k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 80.3k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 80.3k | } | 1038 | 80.4k | return estimated_size; | 1039 | 80.4k | } |
_ZN5doris9OperatorXINS_29PartitionSortSourceLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 446 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 446 | auto& local_state = get_local_state(state); | 1034 | 446 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 446 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 445 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 445 | } | 1038 | 446 | return estimated_size; | 1039 | 446 | } |
_ZN5doris9OperatorXINS_25MaterializationLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 4.68k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 4.68k | auto& local_state = get_local_state(state); | 1034 | 4.68k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 4.68k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 4.68k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 4.68k | } | 1038 | 4.68k | return estimated_size; | 1039 | 4.68k | } |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb1EEEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 2.48k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 2.48k | auto& local_state = get_local_state(state); | 1034 | 2.48k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 2.48k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 2.48k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 2.48k | } | 1038 | 2.48k | return estimated_size; | 1039 | 2.48k | } |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb0EEEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 2.48k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 2.48k | auto& local_state = get_local_state(state); | 1034 | 2.48k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 2.48k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 2.48k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 2.48k | } | 1038 | 2.48k | return estimated_size; | 1039 | 2.48k | } |
_ZN5doris9OperatorXINS_18EmptySetLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 1.66k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 1.66k | auto& local_state = get_local_state(state); | 1034 | 1.66k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 1.66k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 1.66k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 1.66k | } | 1038 | 1.66k | return estimated_size; | 1039 | 1.66k | } |
_ZN5doris9OperatorXINS_16SelectLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 8.91k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 8.91k | auto& local_state = get_local_state(state); | 1034 | 8.91k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 8.91k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 8.91k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 8.91k | } | 1038 | 8.91k | return estimated_size; | 1039 | 8.91k | } |
_ZN5doris9OperatorXINS_20RecCTEScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 4.10k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 4.10k | auto& local_state = get_local_state(state); | 1034 | 4.10k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 4.10k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 4.10k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 4.10k | } | 1038 | 4.10k | return estimated_size; | 1039 | 4.10k | } |
Unexecuted instantiation: _ZN5doris9OperatorXINS_18OlapScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris9OperatorXINS_21GroupCommitLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris9OperatorXINS_18JDBCScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE _ZN5doris9OperatorXINS_18ExchangeLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 629k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 629k | auto& local_state = get_local_state(state); | 1034 | 629k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 630k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 630k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 630k | } | 1038 | 629k | return estimated_size; | 1039 | 629k | } |
_ZN5doris9OperatorXINS_30DistinctStreamingAggLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 446k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 446k | auto& local_state = get_local_state(state); | 1034 | 446k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 446k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 446k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 446k | } | 1038 | 446k | return estimated_size; | 1039 | 446k | } |
_ZN5doris9OperatorXINS_22StreamingAggLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 35.7k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 35.7k | auto& local_state = get_local_state(state); | 1034 | 35.7k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 35.7k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 35.7k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 35.7k | } | 1038 | 35.7k | return estimated_size; | 1039 | 35.7k | } |
_ZN5doris9OperatorXINS_13AggLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 160k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 160k | auto& local_state = get_local_state(state); | 1034 | 160k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 160k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 160k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 160k | } | 1038 | 160k | return estimated_size; | 1039 | 160k | } |
_ZN5doris9OperatorXINS_24PartitionedAggLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 155 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 155 | auto& local_state = get_local_state(state); | 1034 | 155 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 155 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 155 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 155 | } | 1038 | 155 | return estimated_size; | 1039 | 155 | } |
_ZN5doris9OperatorXINS_21BucketedAggLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 4.74k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 4.74k | auto& local_state = get_local_state(state); | 1034 | 4.74k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 4.75k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 4.75k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 4.75k | } | 1038 | 4.74k | return estimated_size; | 1039 | 4.74k | } |
_ZN5doris9OperatorXINS_14SortLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 14.4k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 14.4k | auto& local_state = get_local_state(state); | 1034 | 14.4k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 14.4k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 14.4k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 14.4k | } | 1038 | 14.4k | return estimated_size; | 1039 | 14.4k | } |
_ZN5doris9OperatorXINS_19SpillSortLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 242 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 242 | auto& local_state = get_local_state(state); | 1034 | 242 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 242 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 242 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 242 | } | 1038 | 242 | return estimated_size; | 1039 | 242 | } |
_ZN5doris9OperatorXINS_24LocalMergeSortLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 365k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 365k | auto& local_state = get_local_state(state); | 1034 | 365k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 365k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 365k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 365k | } | 1038 | 365k | return estimated_size; | 1039 | 365k | } |
_ZN5doris9OperatorXINS_18AnalyticLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 13.6k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 13.6k | auto& local_state = get_local_state(state); | 1034 | 13.6k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 13.6k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 13.6k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 13.6k | } | 1038 | 13.6k | return estimated_size; | 1039 | 13.6k | } |
_ZN5doris9OperatorXINS_16RepeatLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 3.07k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 3.07k | auto& local_state = get_local_state(state); | 1034 | 3.07k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 3.07k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 3.07k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 3.07k | } | 1038 | 3.07k | return estimated_size; | 1039 | 3.07k | } |
_ZN5doris9OperatorXINS_23TableFunctionLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 6.54k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 6.54k | auto& local_state = get_local_state(state); | 1034 | 6.54k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 6.54k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 6.53k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 6.53k | } | 1038 | 6.54k | return estimated_size; | 1039 | 6.54k | } |
_ZN5doris9OperatorXINS_23AssertNumRowsLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 428 | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 428 | auto& local_state = get_local_state(state); | 1034 | 428 | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 428 | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 428 | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 428 | } | 1038 | 428 | return estimated_size; | 1039 | 428 | } |
_ZN5doris9OperatorXINS_17DataGenLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 16.3k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 16.3k | auto& local_state = get_local_state(state); | 1034 | 16.3k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 16.3k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 16.3k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 16.3k | } | 1038 | 16.3k | return estimated_size; | 1039 | 16.3k | } |
_ZN5doris9OperatorXINS_20SchemaScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1032 | 3.75k | size_t get_reserve_mem_size(RuntimeState* state) override { | 1033 | 3.75k | auto& local_state = get_local_state(state); | 1034 | 3.75k | auto estimated_size = local_state.estimate_memory_usage(); | 1035 | 3.75k | if (estimated_size < state->minimum_operator_memory_required_bytes()) { | 1036 | 3.75k | estimated_size = state->minimum_operator_memory_required_bytes(); | 1037 | 3.75k | } | 1038 | 3.75k | return estimated_size; | 1039 | 3.75k | } |
Unexecuted instantiation: _ZN5doris9OperatorXINS_18MetaScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris9OperatorXINS_18FileScanLocalStateEE20get_reserve_mem_sizeEPNS_12RuntimeStateE |
1040 | | |
1041 | 6.10M | void reset_reserve_mem_size(RuntimeState* state) override { |
1042 | 6.10M | auto& local_state = get_local_state(state); |
1043 | 6.10M | local_state.reset_estimate_memory_usage(); |
1044 | 6.10M | } _ZN5doris9OperatorXINS_22RecCTESourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 2.95k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 2.95k | auto& local_state = get_local_state(state); | 1043 | 2.95k | local_state.reset_estimate_memory_usage(); | 1044 | 2.95k | } |
_ZN5doris9OperatorXINS_21CacheSourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 23 | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 23 | auto& local_state = get_local_state(state); | 1043 | 23 | local_state.reset_estimate_memory_usage(); | 1044 | 23 | } |
_ZN5doris9OperatorXINS_29LocalExchangeSourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 1.18M | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 1.18M | auto& local_state = get_local_state(state); | 1043 | 1.18M | local_state.reset_estimate_memory_usage(); | 1044 | 1.18M | } |
_ZN5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 27.6k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 27.6k | auto& local_state = get_local_state(state); | 1043 | 27.6k | local_state.reset_estimate_memory_usage(); | 1044 | 27.6k | } |
_ZN5doris9OperatorXINS_18OlapScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 1.30M | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 1.30M | auto& local_state = get_local_state(state); | 1043 | 1.30M | local_state.reset_estimate_memory_usage(); | 1044 | 1.30M | } |
_ZN5doris9OperatorXINS_21GroupCommitLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 1.44M | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 1.44M | auto& local_state = get_local_state(state); | 1043 | 1.44M | local_state.reset_estimate_memory_usage(); | 1044 | 1.44M | } |
Unexecuted instantiation: _ZN5doris9OperatorXINS_18JDBCScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE _ZN5doris9OperatorXINS_18FileScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 145k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 145k | auto& local_state = get_local_state(state); | 1043 | 145k | local_state.reset_estimate_memory_usage(); | 1044 | 145k | } |
_ZN5doris9OperatorXINS_23HashJoinProbeLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 139k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 139k | auto& local_state = get_local_state(state); | 1043 | 139k | local_state.reset_estimate_memory_usage(); | 1044 | 139k | } |
Unexecuted instantiation: _ZN5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE _ZN5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 32.4k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 32.4k | auto& local_state = get_local_state(state); | 1043 | 32.4k | local_state.reset_estimate_memory_usage(); | 1044 | 32.4k | } |
_ZN5doris9OperatorXINS_21UnionSourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 80.3k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 80.3k | auto& local_state = get_local_state(state); | 1043 | 80.3k | local_state.reset_estimate_memory_usage(); | 1044 | 80.3k | } |
_ZN5doris9OperatorXINS_29PartitionSortSourceLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 444 | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 444 | auto& local_state = get_local_state(state); | 1043 | 444 | local_state.reset_estimate_memory_usage(); | 1044 | 444 | } |
_ZN5doris9OperatorXINS_25MaterializationLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 4.68k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 4.68k | auto& local_state = get_local_state(state); | 1043 | 4.68k | local_state.reset_estimate_memory_usage(); | 1044 | 4.68k | } |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb1EEEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 2.48k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 2.48k | auto& local_state = get_local_state(state); | 1043 | 2.48k | local_state.reset_estimate_memory_usage(); | 1044 | 2.48k | } |
_ZN5doris9OperatorXINS_19SetSourceLocalStateILb0EEEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 2.48k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 2.48k | auto& local_state = get_local_state(state); | 1043 | 2.48k | local_state.reset_estimate_memory_usage(); | 1044 | 2.48k | } |
_ZN5doris9OperatorXINS_18EmptySetLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 1.66k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 1.66k | auto& local_state = get_local_state(state); | 1043 | 1.66k | local_state.reset_estimate_memory_usage(); | 1044 | 1.66k | } |
_ZN5doris9OperatorXINS_18MetaScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 7.27k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 7.27k | auto& local_state = get_local_state(state); | 1043 | 7.27k | local_state.reset_estimate_memory_usage(); | 1044 | 7.27k | } |
_ZN5doris9OperatorXINS_16SelectLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 8.91k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 8.91k | auto& local_state = get_local_state(state); | 1043 | 8.91k | local_state.reset_estimate_memory_usage(); | 1044 | 8.91k | } |
_ZN5doris9OperatorXINS_20RecCTEScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 4.10k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 4.10k | auto& local_state = get_local_state(state); | 1043 | 4.10k | local_state.reset_estimate_memory_usage(); | 1044 | 4.10k | } |
_ZN5doris9OperatorXINS_18ExchangeLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 629k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 629k | auto& local_state = get_local_state(state); | 1043 | 629k | local_state.reset_estimate_memory_usage(); | 1044 | 629k | } |
_ZN5doris9OperatorXINS_30DistinctStreamingAggLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 446k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 446k | auto& local_state = get_local_state(state); | 1043 | 446k | local_state.reset_estimate_memory_usage(); | 1044 | 446k | } |
_ZN5doris9OperatorXINS_22StreamingAggLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 35.7k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 35.7k | auto& local_state = get_local_state(state); | 1043 | 35.7k | local_state.reset_estimate_memory_usage(); | 1044 | 35.7k | } |
_ZN5doris9OperatorXINS_13AggLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 160k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 160k | auto& local_state = get_local_state(state); | 1043 | 160k | local_state.reset_estimate_memory_usage(); | 1044 | 160k | } |
_ZN5doris9OperatorXINS_24PartitionedAggLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 155 | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 155 | auto& local_state = get_local_state(state); | 1043 | 155 | local_state.reset_estimate_memory_usage(); | 1044 | 155 | } |
_ZN5doris9OperatorXINS_21BucketedAggLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 4.74k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 4.74k | auto& local_state = get_local_state(state); | 1043 | 4.74k | local_state.reset_estimate_memory_usage(); | 1044 | 4.74k | } |
_ZN5doris9OperatorXINS_14SortLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 14.4k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 14.4k | auto& local_state = get_local_state(state); | 1043 | 14.4k | local_state.reset_estimate_memory_usage(); | 1044 | 14.4k | } |
_ZN5doris9OperatorXINS_19SpillSortLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 242 | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 242 | auto& local_state = get_local_state(state); | 1043 | 242 | local_state.reset_estimate_memory_usage(); | 1044 | 242 | } |
_ZN5doris9OperatorXINS_24LocalMergeSortLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 365k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 365k | auto& local_state = get_local_state(state); | 1043 | 365k | local_state.reset_estimate_memory_usage(); | 1044 | 365k | } |
_ZN5doris9OperatorXINS_18AnalyticLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 13.6k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 13.6k | auto& local_state = get_local_state(state); | 1043 | 13.6k | local_state.reset_estimate_memory_usage(); | 1044 | 13.6k | } |
_ZN5doris9OperatorXINS_16RepeatLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 3.07k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 3.07k | auto& local_state = get_local_state(state); | 1043 | 3.07k | local_state.reset_estimate_memory_usage(); | 1044 | 3.07k | } |
_ZN5doris9OperatorXINS_23TableFunctionLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 6.53k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 6.53k | auto& local_state = get_local_state(state); | 1043 | 6.53k | local_state.reset_estimate_memory_usage(); | 1044 | 6.53k | } |
_ZN5doris9OperatorXINS_23AssertNumRowsLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 428 | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 428 | auto& local_state = get_local_state(state); | 1043 | 428 | local_state.reset_estimate_memory_usage(); | 1044 | 428 | } |
_ZN5doris9OperatorXINS_17DataGenLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 16.3k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 16.3k | auto& local_state = get_local_state(state); | 1043 | 16.3k | local_state.reset_estimate_memory_usage(); | 1044 | 16.3k | } |
_ZN5doris9OperatorXINS_20SchemaScanLocalStateEE22reset_reserve_mem_sizeEPNS_12RuntimeStateE Line | Count | Source | 1041 | 3.75k | void reset_reserve_mem_size(RuntimeState* state) override { | 1042 | 3.75k | auto& local_state = get_local_state(state); | 1043 | 3.75k | local_state.reset_estimate_memory_usage(); | 1044 | 3.75k | } |
|
1045 | | }; |
1046 | | |
1047 | | /** |
1048 | | * StreamingOperatorX indicates operators which always processes block in streaming way (one-in-one-out). |
1049 | | */ |
1050 | | template <typename LocalStateType> |
1051 | | class StreamingOperatorX : public OperatorX<LocalStateType> { |
1052 | | public: |
1053 | | StreamingOperatorX(ObjectPool* pool, const TPlanNode& tnode, int operator_id, |
1054 | | const DescriptorTbl& descs) |
1055 | 2.58k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {}_ZN5doris18StreamingOperatorXINS_16SelectLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1055 | 2.36k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris18StreamingOperatorXINS_23AssertNumRowsLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1055 | 218 | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
|
1056 | | |
1057 | | #ifdef BE_TEST |
1058 | | StreamingOperatorX() = default; |
1059 | | #endif |
1060 | | |
1061 | | virtual ~StreamingOperatorX() = default; |
1062 | | |
1063 | | Status get_block(RuntimeState* state, Block* block, bool* eos) override; |
1064 | | |
1065 | | virtual Status pull(RuntimeState* state, Block* block, bool* eos) = 0; |
1066 | | }; |
1067 | | |
1068 | | /** |
1069 | | * StatefulOperatorX indicates the operators with some states inside. |
1070 | | * |
1071 | | * Specifically, we called an operator stateful if an operator can determine its output by itself. |
1072 | | * For example, hash join probe operator is a typical StatefulOperator. When it gets a block from probe side, it will hold this block inside (e.g. _child_block). |
1073 | | * If there are still remain rows in probe block, we can get output block by calling `get_block` without any data from its child. |
1074 | | * In a nutshell, it is a one-to-many relation between input blocks and output blocks for StatefulOperator. |
1075 | | */ |
1076 | | template <typename LocalStateType> |
1077 | | class StatefulOperatorX : public OperatorX<LocalStateType> { |
1078 | | public: |
1079 | | StatefulOperatorX(ObjectPool* pool, const TPlanNode& tnode, const int operator_id, |
1080 | | const DescriptorTbl& descs) |
1081 | 185k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {}_ZN5doris17StatefulOperatorXINS_25MaterializationLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 1.58k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_23HashJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 81.8k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_34PartitionedHashJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 49 | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_16RepeatLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 297 | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_22StreamingAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 3.60k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_30DistinctStreamingAggLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 91.6k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_29NestedLoopJoinProbeLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 5.69k | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
_ZN5doris17StatefulOperatorXINS_23TableFunctionLocalStateEEC2EPNS_10ObjectPoolERKNS_9TPlanNodeEiRKNS_13DescriptorTblE Line | Count | Source | 1081 | 919 | : OperatorX<LocalStateType>(pool, tnode, operator_id, descs) {} |
|
1082 | | #ifdef BE_TEST |
1083 | | StatefulOperatorX() = default; |
1084 | | #endif |
1085 | | virtual ~StatefulOperatorX() = default; |
1086 | | |
1087 | | using OperatorX<LocalStateType>::get_local_state; |
1088 | | |
1089 | | [[nodiscard]] Status get_block(RuntimeState* state, Block* block, bool* eos) override; |
1090 | | |
1091 | | [[nodiscard]] virtual Status pull(RuntimeState* state, Block* block, bool* eos) const = 0; |
1092 | | [[nodiscard]] virtual Status push(RuntimeState* state, Block* input_block, bool eos) const = 0; |
1093 | 0 | bool need_more_input_data(RuntimeState* state) const override { return true; }Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_23HashJoinProbeLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_34PartitionedHashJoinProbeLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_29NestedLoopJoinProbeLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_25MaterializationLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_30DistinctStreamingAggLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_22StreamingAggLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_16RepeatLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris17StatefulOperatorXINS_23TableFunctionLocalStateEE20need_more_input_dataEPNS_12RuntimeStateE |
1094 | | }; |
1095 | | |
1096 | | template <typename Writer, typename Parent> |
1097 | | requires(std::is_base_of_v<AsyncResultWriter, Writer>) |
1098 | | class AsyncWriterSink : public PipelineXSinkLocalState<BasicSharedState> { |
1099 | | public: |
1100 | | using Base = PipelineXSinkLocalState<BasicSharedState>; |
1101 | | AsyncWriterSink(DataSinkOperatorXBase* parent, RuntimeState* state) |
1102 | 63.4k | : Base(parent, state), _async_writer_dependency(nullptr) { |
1103 | 63.4k | _finish_dependency = |
1104 | 63.4k | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), |
1105 | 63.4k | parent->get_name() + "_FINISH_DEPENDENCY", true); |
1106 | 63.4k | } _ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 541 | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 541 | _finish_dependency = | 1104 | 541 | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 541 | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 541 | } |
_ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 88 | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 88 | _finish_dependency = | 1104 | 88 | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 88 | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 88 | } |
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 44.3k | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 44.3k | _finish_dependency = | 1104 | 44.3k | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 44.3k | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 44.3k | } |
_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 8.96k | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 8.96k | _finish_dependency = | 1104 | 8.96k | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 8.96k | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 8.96k | } |
_ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 5.15k | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 5.15k | _finish_dependency = | 1104 | 5.15k | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 5.15k | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 5.15k | } |
_ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 3.37k | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 3.37k | _finish_dependency = | 1104 | 3.37k | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 3.37k | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 3.37k | } |
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE _ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 160 | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 160 | _finish_dependency = | 1104 | 160 | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 160 | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 160 | } |
_ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 640 | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 640 | _finish_dependency = | 1104 | 640 | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 640 | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 640 | } |
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEEC2EPNS_21DataSinkOperatorXBaseEPNS_12RuntimeStateE Line | Count | Source | 1102 | 156 | : Base(parent, state), _async_writer_dependency(nullptr) { | 1103 | 156 | _finish_dependency = | 1104 | 156 | std::make_shared<Dependency>(parent->operator_id(), parent->node_id(), | 1105 | 156 | parent->get_name() + "_FINISH_DEPENDENCY", true); | 1106 | 156 | } |
|
1107 | | |
1108 | | Status init(RuntimeState* state, LocalSinkStateInfo& info) override; |
1109 | | |
1110 | | Status open(RuntimeState* state) override; |
1111 | | |
1112 | | Status sink(RuntimeState* state, Block* block, bool eos); |
1113 | | |
1114 | 63.6k | std::vector<Dependency*> dependencies() const override { |
1115 | 63.6k | return {_async_writer_dependency.get()}; |
1116 | 63.6k | } _ZNK5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE12dependenciesEv Line | Count | Source | 1114 | 8.96k | std::vector<Dependency*> dependencies() const override { | 1115 | 8.96k | return {_async_writer_dependency.get()}; | 1116 | 8.96k | } |
_ZNK5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 44.6k | std::vector<Dependency*> dependencies() const override { | 1115 | 44.6k | return {_async_writer_dependency.get()}; | 1116 | 44.6k | } |
_ZNK5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 5.15k | std::vector<Dependency*> dependencies() const override { | 1115 | 5.15k | return {_async_writer_dependency.get()}; | 1116 | 5.15k | } |
_ZNK5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 160 | std::vector<Dependency*> dependencies() const override { | 1115 | 160 | return {_async_writer_dependency.get()}; | 1116 | 160 | } |
_ZNK5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 640 | std::vector<Dependency*> dependencies() const override { | 1115 | 640 | return {_async_writer_dependency.get()}; | 1116 | 640 | } |
_ZNK5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 3.37k | std::vector<Dependency*> dependencies() const override { | 1115 | 3.37k | return {_async_writer_dependency.get()}; | 1116 | 3.37k | } |
_ZNK5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 88 | std::vector<Dependency*> dependencies() const override { | 1115 | 88 | return {_async_writer_dependency.get()}; | 1116 | 88 | } |
Unexecuted instantiation: _ZNK5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE12dependenciesEv _ZNK5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 156 | std::vector<Dependency*> dependencies() const override { | 1115 | 156 | return {_async_writer_dependency.get()}; | 1116 | 156 | } |
_ZNK5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE12dependenciesEv Line | Count | Source | 1114 | 542 | std::vector<Dependency*> dependencies() const override { | 1115 | 542 | return {_async_writer_dependency.get()}; | 1116 | 542 | } |
Unexecuted instantiation: _ZNK5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE12dependenciesEv |
1117 | | Status close(RuntimeState* state, Status exec_status) override; |
1118 | | |
1119 | 63.6k | Dependency* finishdependency() override { return _finish_dependency.get(); }_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 8.96k | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 44.6k | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 5.15k | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 160 | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 640 | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 3.37k | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 88 | Dependency* finishdependency() override { return _finish_dependency.get(); } |
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE16finishdependencyEv _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 156 | Dependency* finishdependency() override { return _finish_dependency.get(); } |
_ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE16finishdependencyEv Line | Count | Source | 1119 | 542 | Dependency* finishdependency() override { return _finish_dependency.get(); } |
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE16finishdependencyEv |
1120 | | |
1121 | | protected: |
1122 | | VExprContextSPtrs _output_vexpr_ctxs; |
1123 | | std::unique_ptr<Writer> _writer; |
1124 | | |
1125 | | std::shared_ptr<Dependency> _async_writer_dependency; |
1126 | | std::shared_ptr<Dependency> _finish_dependency; |
1127 | | }; |
1128 | | |
1129 | | #ifdef BE_TEST |
1130 | | class DummyOperatorLocalState final : public PipelineXLocalState<FakeSharedState> { |
1131 | | public: |
1132 | | ENABLE_FACTORY_CREATOR(DummyOperatorLocalState); |
1133 | | |
1134 | | DummyOperatorLocalState(RuntimeState* state, OperatorXBase* parent) |
1135 | | : PipelineXLocalState<FakeSharedState>(state, parent) { |
1136 | | _tmp_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(), |
1137 | | "DummyOperatorDependency", true); |
1138 | | _finish_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(), |
1139 | | "DummyOperatorDependency", true); |
1140 | | _filter_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(), |
1141 | | "DummyOperatorDependency", true); |
1142 | | } |
1143 | | Dependency* finishdependency() override { return _finish_dependency.get(); } |
1144 | | ~DummyOperatorLocalState() = default; |
1145 | | |
1146 | | std::vector<Dependency*> dependencies() const override { return {_tmp_dependency.get()}; } |
1147 | | std::vector<Dependency*> execution_dependencies() override { |
1148 | | return {_filter_dependency.get()}; |
1149 | | } |
1150 | | |
1151 | | private: |
1152 | | std::shared_ptr<Dependency> _tmp_dependency; |
1153 | | std::shared_ptr<Dependency> _finish_dependency; |
1154 | | std::shared_ptr<Dependency> _filter_dependency; |
1155 | | }; |
1156 | | |
1157 | | class DummyOperator final : public OperatorX<DummyOperatorLocalState> { |
1158 | | public: |
1159 | | DummyOperator() : OperatorX<DummyOperatorLocalState>(nullptr, 0, 0) {} |
1160 | | |
1161 | | [[nodiscard]] bool is_source() const override { return true; } |
1162 | | |
1163 | | Status get_block(RuntimeState* state, Block* block, bool* eos) override { |
1164 | | *eos = _eos; |
1165 | | return Status::OK(); |
1166 | | } |
1167 | | void set_low_memory_mode(RuntimeState* state) override { _low_memory_mode = true; } |
1168 | | Status terminate(RuntimeState* state) override { |
1169 | | _terminated = true; |
1170 | | return Status::OK(); |
1171 | | } |
1172 | | size_t revocable_mem_size(RuntimeState* state) const override { return _revocable_mem_size; } |
1173 | | size_t get_reserve_mem_size(RuntimeState* state) override { |
1174 | | return _disable_reserve_mem |
1175 | | ? 0 |
1176 | | : OperatorX<DummyOperatorLocalState>::get_reserve_mem_size(state); |
1177 | | } |
1178 | | Status revoke_memory(RuntimeState* state) override { |
1179 | | _revoke_called = true; |
1180 | | return Status::OK(); |
1181 | | } |
1182 | | |
1183 | | private: |
1184 | | friend class AssertNumRowsLocalState; |
1185 | | bool _eos = false; |
1186 | | bool _low_memory_mode = false; |
1187 | | bool _terminated = false; |
1188 | | size_t _revocable_mem_size = 0; |
1189 | | bool _disable_reserve_mem = false; |
1190 | | bool _revoke_called = false; |
1191 | | }; |
1192 | | |
1193 | | class DummySinkLocalState final : public PipelineXSinkLocalState<BasicSharedState> { |
1194 | | public: |
1195 | | using Base = PipelineXSinkLocalState<BasicSharedState>; |
1196 | | ENABLE_FACTORY_CREATOR(DummySinkLocalState); |
1197 | | DummySinkLocalState(DataSinkOperatorXBase* parent, RuntimeState* state) : Base(parent, state) { |
1198 | | _tmp_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(), |
1199 | | "DummyOperatorDependency", true); |
1200 | | _finish_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(), |
1201 | | "DummyOperatorDependency", true); |
1202 | | } |
1203 | | |
1204 | | std::vector<Dependency*> dependencies() const override { return {_tmp_dependency.get()}; } |
1205 | | Dependency* finishdependency() override { return _finish_dependency.get(); } |
1206 | | bool is_finished() const override { return _is_finished; } |
1207 | | |
1208 | | private: |
1209 | | std::shared_ptr<Dependency> _tmp_dependency; |
1210 | | std::shared_ptr<Dependency> _finish_dependency; |
1211 | | std::atomic_bool _is_finished = false; |
1212 | | }; |
1213 | | |
1214 | | class DummySinkOperatorX final : public DataSinkOperatorX<DummySinkLocalState> { |
1215 | | public: |
1216 | | DummySinkOperatorX(int op_id, int node_id, int dest_id) |
1217 | | : DataSinkOperatorX<DummySinkLocalState>(op_id, node_id, dest_id) {} |
1218 | | Status sink(RuntimeState* state, Block* in_block, bool eos) override { |
1219 | | return _return_eof ? Status::Error<ErrorCode::END_OF_FILE>("source have closed") |
1220 | | : Status::OK(); |
1221 | | } |
1222 | | void set_low_memory_mode(RuntimeState* state) override { _low_memory_mode = true; } |
1223 | | Status terminate(RuntimeState* state) override { |
1224 | | _terminated = true; |
1225 | | return Status::OK(); |
1226 | | } |
1227 | | size_t revocable_mem_size(RuntimeState* state) const override { return _revocable_mem_size; } |
1228 | | size_t get_reserve_mem_size(RuntimeState* state, bool eos) override { |
1229 | | return _disable_reserve_mem |
1230 | | ? 0 |
1231 | | : DataSinkOperatorX<DummySinkLocalState>::get_reserve_mem_size(state, eos); |
1232 | | } |
1233 | | Status revoke_memory(RuntimeState* state) override { |
1234 | | _revoke_called = true; |
1235 | | return Status::OK(); |
1236 | | } |
1237 | | |
1238 | | private: |
1239 | | bool _low_memory_mode = false; |
1240 | | bool _terminated = false; |
1241 | | std::atomic_bool _return_eof = false; |
1242 | | size_t _revocable_mem_size = 0; |
1243 | | bool _disable_reserve_mem = false; |
1244 | | bool _revoke_called = false; |
1245 | | }; |
1246 | | #endif |
1247 | | |
1248 | | } // namespace doris |