Coverage Report

Created: 2026-08-26 10:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/operator/operator.cpp
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
#include "exec/operator/operator.h"
19
20
#include <algorithm>
21
22
#include "common/status.h"
23
#include "exec/common/util.hpp"
24
#include "exec/exchange/local_exchange_sink_operator.h"
25
#include "exec/exchange/local_exchange_source_operator.h"
26
#include "exec/operator/aggregation_sink_operator.h"
27
#include "exec/operator/aggregation_source_operator.h"
28
#include "exec/operator/analytic_sink_operator.h"
29
#include "exec/operator/analytic_source_operator.h"
30
#include "exec/operator/assert_num_rows_operator.h"
31
#include "exec/operator/blackhole_sink_operator.h"
32
#include "exec/operator/bucketed_aggregation_sink_operator.h"
33
#include "exec/operator/bucketed_aggregation_source_operator.h"
34
#include "exec/operator/cache_sink_operator.h"
35
#include "exec/operator/cache_source_operator.h"
36
#include "exec/operator/datagen_operator.h"
37
#include "exec/operator/dict_sink_operator.h"
38
#include "exec/operator/distinct_streaming_aggregation_operator.h"
39
#include "exec/operator/empty_set_operator.h"
40
#include "exec/operator/exchange_sink_operator.h"
41
#include "exec/operator/exchange_source_operator.h"
42
#include "exec/operator/file_scan_operator.h"
43
#include "exec/operator/group_commit_block_sink_operator.h"
44
#include "exec/operator/group_commit_scan_operator.h"
45
#include "exec/operator/hashjoin_build_sink.h"
46
#include "exec/operator/hashjoin_probe_operator.h"
47
#include "exec/operator/hive_table_sink_operator.h"
48
#include "exec/operator/iceberg_delete_sink_operator.h"
49
#include "exec/operator/iceberg_merge_sink_operator.h"
50
#include "exec/operator/iceberg_table_sink_operator.h"
51
#include "exec/operator/jdbc_scan_operator.h"
52
#include "exec/operator/jdbc_table_sink_operator.h"
53
#include "exec/operator/local_merge_sort_source_operator.h"
54
#include "exec/operator/materialization_opertor.h"
55
#include "exec/operator/maxcompute_table_sink_operator.h"
56
#include "exec/operator/memory_scratch_sink_operator.h"
57
#include "exec/operator/meta_scan_operator.h"
58
#include "exec/operator/mock_operator.h"
59
#include "exec/operator/mock_scan_operator.h"
60
#include "exec/operator/multi_cast_data_stream_sink.h"
61
#include "exec/operator/multi_cast_data_stream_source.h"
62
#include "exec/operator/nested_loop_join_build_operator.h"
63
#include "exec/operator/nested_loop_join_probe_operator.h"
64
#include "exec/operator/olap_scan_operator.h"
65
#include "exec/operator/olap_table_sink_operator.h"
66
#include "exec/operator/olap_table_sink_v2_operator.h"
67
#include "exec/operator/partition_sort_sink_operator.h"
68
#include "exec/operator/partition_sort_source_operator.h"
69
#include "exec/operator/partitioned_aggregation_sink_operator.h"
70
#include "exec/operator/partitioned_aggregation_source_operator.h"
71
#include "exec/operator/partitioned_hash_join_probe_operator.h"
72
#include "exec/operator/partitioned_hash_join_sink_operator.h"
73
#include "exec/operator/rec_cte_anchor_sink_operator.h"
74
#include "exec/operator/rec_cte_scan_operator.h"
75
#include "exec/operator/rec_cte_sink_operator.h"
76
#include "exec/operator/rec_cte_source_operator.h"
77
#include "exec/operator/repeat_operator.h"
78
#include "exec/operator/result_file_sink_operator.h"
79
#include "exec/operator/result_sink_operator.h"
80
#include "exec/operator/schema_scan_operator.h"
81
#include "exec/operator/select_operator.h"
82
#include "exec/operator/set_probe_sink_operator.h"
83
#include "exec/operator/set_sink_operator.h"
84
#include "exec/operator/set_source_operator.h"
85
#include "exec/operator/sort_sink_operator.h"
86
#include "exec/operator/sort_source_operator.h"
87
#include "exec/operator/spill_iceberg_table_sink_operator.h"
88
#include "exec/operator/spill_sort_sink_operator.h"
89
#include "exec/operator/spill_sort_source_operator.h"
90
#include "exec/operator/streaming_aggregation_operator.h"
91
#include "exec/operator/table_function_operator.h"
92
#include "exec/operator/tvf_table_sink_operator.h"
93
#include "exec/operator/union_sink_operator.h"
94
#include "exec/operator/union_source_operator.h"
95
#include "exec/pipeline/dependency.h"
96
#include "exec/pipeline/pipeline.h"
97
#include "exprs/vexpr.h"
98
#include "exprs/vexpr_context.h"
99
#include "runtime/runtime_profile.h"
100
#include "runtime/runtime_profile_counter_names.h"
101
#include "util/debug_util.h"
102
#include "util/string_util.h"
103
104
namespace doris {
105
class RowDescriptor;
106
class RuntimeState;
107
} // namespace doris
108
109
namespace doris {
110
111
0
Status OperatorBase::close(RuntimeState* state) {
112
0
    if (_is_closed) {
113
0
        return Status::OK();
114
0
    }
115
0
    _is_closed = true;
116
0
    return Status::OK();
117
0
}
118
119
template <typename SharedStateArg>
120
27.2k
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
27.2k
    if (_parent->nereids_id() == -1) {
122
1.80k
        return fmt::format("(id={})", _parent->node_id());
123
25.4k
    } else {
124
25.4k
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
25.4k
    }
126
27.2k
}
_ZNK5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
24.0k
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
24.0k
    if (_parent->nereids_id() == -1) {
122
0
        return fmt::format("(id={})", _parent->node_id());
123
24.0k
    } else {
124
24.0k
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
24.0k
    }
126
24.0k
}
_ZNK5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
1
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
1
    if (_parent->nereids_id() == -1) {
122
1
        return fmt::format("(id={})", _parent->node_id());
123
1
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
1
}
_ZNK5doris19PipelineXLocalStateINS_15SortSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
165
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
165
    if (_parent->nereids_id() == -1) {
122
12
        return fmt::format("(id={})", _parent->node_id());
123
153
    } else {
124
153
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
153
    }
126
165
}
_ZNK5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
13
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
13
    if (_parent->nereids_id() == -1) {
122
0
        return fmt::format("(id={})", _parent->node_id());
123
13
    } else {
124
13
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
13
    }
126
13
}
_ZNK5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
248
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
248
    if (_parent->nereids_id() == -1) {
122
0
        return fmt::format("(id={})", _parent->node_id());
123
248
    } else {
124
248
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
248
    }
126
248
}
_ZNK5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
11
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
11
    if (_parent->nereids_id() == -1) {
122
11
        return fmt::format("(id={})", _parent->node_id());
123
11
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
11
}
_ZNK5doris19PipelineXLocalStateINS_14AggSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
743
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
743
    if (_parent->nereids_id() == -1) {
122
29
        return fmt::format("(id={})", _parent->node_id());
123
714
    } else {
124
714
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
714
    }
126
743
}
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE11name_suffixB5cxx11Ev
_ZNK5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
118
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
118
    if (_parent->nereids_id() == -1) {
122
0
        return fmt::format("(id={})", _parent->node_id());
123
118
    } else {
124
118
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
118
    }
126
118
}
_ZNK5doris19PipelineXLocalStateINS_15FakeSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
1.22k
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
1.22k
    if (_parent->nereids_id() == -1) {
122
1.08k
        return fmt::format("(id={})", _parent->node_id());
123
1.08k
    } else {
124
141
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
141
    }
126
1.22k
}
_ZNK5doris19PipelineXLocalStateINS_16UnionSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
20
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
20
    if (_parent->nereids_id() == -1) {
122
2
        return fmt::format("(id={})", _parent->node_id());
123
18
    } else {
124
18
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
18
    }
126
20
}
_ZNK5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
12
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
12
    if (_parent->nereids_id() == -1) {
122
12
        return fmt::format("(id={})", _parent->node_id());
123
12
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
12
}
_ZNK5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
372
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
372
    if (_parent->nereids_id() == -1) {
122
372
        return fmt::format("(id={})", _parent->node_id());
123
372
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
372
}
_ZNK5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
102
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
102
    if (_parent->nereids_id() == -1) {
122
102
        return fmt::format("(id={})", _parent->node_id());
123
102
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
102
}
_ZNK5doris19PipelineXLocalStateINS_14SetSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
13
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
13
    if (_parent->nereids_id() == -1) {
122
13
        return fmt::format("(id={})", _parent->node_id());
123
13
    } else {
124
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
0
    }
126
13
}
_ZNK5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
120
158
std::string PipelineXLocalState<SharedStateArg>::name_suffix() const {
121
160
    if (_parent->nereids_id() == -1) {
122
160
        return fmt::format("(id={})", _parent->node_id());
123
18.4E
    } else {
124
18.4E
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
125
18.4E
    }
126
158
}
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16BasicSharedStateEE11name_suffixB5cxx11Ev
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_17RecCTESharedStateEE11name_suffixB5cxx11Ev
127
128
template <typename SharedStateArg>
129
74.2k
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
74.2k
    if (_parent->nereids_id() == -1) {
131
969
        return fmt::format("(id={})", _parent->node_id());
132
73.3k
    } else {
133
73.3k
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
73.3k
    }
135
74.2k
}
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
72.0k
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
72.0k
    if (_parent->nereids_id() == -1) {
131
0
        return fmt::format("(id={})", _parent->node_id());
132
72.0k
    } else {
133
72.0k
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
72.0k
    }
135
72.0k
}
_ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
2
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
2
    if (_parent->nereids_id() == -1) {
131
1
        return fmt::format("(id={})", _parent->node_id());
132
1
    } else {
133
1
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
1
    }
135
2
}
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
169
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
169
    if (_parent->nereids_id() == -1) {
131
9
        return fmt::format("(id={})", _parent->node_id());
132
160
    } else {
133
160
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
160
    }
135
169
}
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
20
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
20
    if (_parent->nereids_id() == -1) {
131
0
        return fmt::format("(id={})", _parent->node_id());
132
20
    } else {
133
20
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
20
    }
135
20
}
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
249
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
249
    if (_parent->nereids_id() == -1) {
131
0
        return fmt::format("(id={})", _parent->node_id());
132
249
    } else {
133
249
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
249
    }
135
249
}
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
11
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
11
    if (_parent->nereids_id() == -1) {
131
11
        return fmt::format("(id={})", _parent->node_id());
132
11
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
11
}
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
753
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
753
    if (_parent->nereids_id() == -1) {
131
29
        return fmt::format("(id={})", _parent->node_id());
132
724
    } else {
133
724
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
724
    }
135
753
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE11name_suffixB5cxx11Ev
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
128
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
128
    if (_parent->nereids_id() == -1) {
131
0
        return fmt::format("(id={})", _parent->node_id());
132
128
    } else {
133
128
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
128
    }
135
128
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE11name_suffixB5cxx11Ev
_ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
3
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
3
    if (_parent->nereids_id() == -1) {
131
3
        return fmt::format("(id={})", _parent->node_id());
132
3
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
3
}
_ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
102
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
102
    if (_parent->nereids_id() == -1) {
131
102
        return fmt::format("(id={})", _parent->node_id());
132
102
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
102
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE11name_suffixB5cxx11Ev
_ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
29
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
29
    if (_parent->nereids_id() == -1) {
131
29
        return fmt::format("(id={})", _parent->node_id());
132
29
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
29
}
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
10
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
10
    if (_parent->nereids_id() == -1) {
131
10
        return fmt::format("(id={})", _parent->node_id());
132
10
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
10
}
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
764
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
764
    if (_parent->nereids_id() == -1) {
131
764
        return fmt::format("(id={})", _parent->node_id());
132
764
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
764
}
_ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE11name_suffixB5cxx11Ev
Line
Count
Source
129
11
std::string PipelineXSinkLocalState<SharedStateArg>::name_suffix() {
130
11
    if (_parent->nereids_id() == -1) {
131
11
        return fmt::format("(id={})", _parent->node_id());
132
11
    } else {
133
0
        return fmt::format("(nereids_id={}, id={})", _parent->nereids_id(), _parent->node_id());
134
0
    }
135
11
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE11name_suffixB5cxx11Ev
136
137
template <typename SharedStateArg>
138
24.0k
Status PipelineXSinkLocalState<SharedStateArg>::terminate(RuntimeState* state) {
139
24.0k
    if (_terminated) {
140
0
        return Status::OK();
141
0
    }
142
24.0k
    _terminated = true;
143
24.0k
    return Status::OK();
144
24.0k
}
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE9terminateEPNS_12RuntimeStateE
Line
Count
Source
138
24.0k
Status PipelineXSinkLocalState<SharedStateArg>::terminate(RuntimeState* state) {
139
24.0k
    if (_terminated) {
140
0
        return Status::OK();
141
0
    }
142
24.0k
    _terminated = true;
143
24.0k
    return Status::OK();
144
24.0k
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE9terminateEPNS_12RuntimeStateE
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE9terminateEPNS_12RuntimeStateE
Line
Count
Source
138
2
Status PipelineXSinkLocalState<SharedStateArg>::terminate(RuntimeState* state) {
139
2
    if (_terminated) {
140
0
        return Status::OK();
141
0
    }
142
2
    _terminated = true;
143
2
    return Status::OK();
144
2
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE9terminateEPNS_12RuntimeStateE
_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE9terminateEPNS_12RuntimeStateE
Line
Count
Source
138
6
Status PipelineXSinkLocalState<SharedStateArg>::terminate(RuntimeState* state) {
139
6
    if (_terminated) {
140
0
        return Status::OK();
141
0
    }
142
6
    _terminated = true;
143
6
    return Status::OK();
144
6
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE9terminateEPNS_12RuntimeStateE
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE9terminateEPNS_12RuntimeStateE
Line
Count
Source
138
72
Status PipelineXSinkLocalState<SharedStateArg>::terminate(RuntimeState* state) {
139
72
    if (_terminated) {
140
0
        return Status::OK();
141
0
    }
142
72
    _terminated = true;
143
72
    return Status::OK();
144
72
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE9terminateEPNS_12RuntimeStateE
145
146
3.31k
DataDistribution OperatorBase::required_data_distribution(RuntimeState* /*state*/) const {
147
3.31k
    return _child && _child->is_serial_operator() && !is_source()
148
3.31k
                   ? DataDistribution(TLocalPartitionType::PASSTHROUGH)
149
3.31k
                   : DataDistribution(TLocalPartitionType::NOOP);
150
3.31k
}
151
152
376
bool OperatorBase::child_breaks_local_key_distribution(RuntimeState* state) const {
153
376
    if (!_child) {
154
124
        return false;
155
124
    }
156
252
    if (_child->is_serial_operator()) {
157
60
        return true;
158
60
    }
159
192
    const auto child_distribution = _child->required_data_distribution(state);
160
192
    return child_distribution.need_local_exchange() &&
161
192
           !is_shuffled_exchange(child_distribution.distribution_type);
162
252
}
163
164
template <typename SharedStateArg>
165
20.1k
std::string PipelineXLocalState<SharedStateArg>::debug_string(int indentation_level) const {
166
20.1k
    fmt::memory_buffer debug_string_buffer;
167
20.1k
    fmt::format_to(debug_string_buffer, "{}", _parent->debug_string(indentation_level));
168
20.1k
    return fmt::to_string(debug_string_buffer);
169
20.1k
}
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE12debug_stringB5cxx11Ei
_ZNK5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE12debug_stringB5cxx11Ei
Line
Count
Source
165
3
std::string PipelineXLocalState<SharedStateArg>::debug_string(int indentation_level) const {
166
3
    fmt::memory_buffer debug_string_buffer;
167
3
    fmt::format_to(debug_string_buffer, "{}", _parent->debug_string(indentation_level));
168
3
    return fmt::to_string(debug_string_buffer);
169
3
}
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_15SortSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_14AggSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE12debug_stringB5cxx11Ei
_ZNK5doris19PipelineXLocalStateINS_15FakeSharedStateEE12debug_stringB5cxx11Ei
Line
Count
Source
165
20.1k
std::string PipelineXLocalState<SharedStateArg>::debug_string(int indentation_level) const {
166
20.1k
    fmt::memory_buffer debug_string_buffer;
167
20.1k
    fmt::format_to(debug_string_buffer, "{}", _parent->debug_string(indentation_level));
168
20.1k
    return fmt::to_string(debug_string_buffer);
169
20.1k
}
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16UnionSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_14SetSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_16BasicSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris19PipelineXLocalStateINS_17RecCTESharedStateEE12debug_stringB5cxx11Ei
170
171
template <typename SharedStateArg>
172
20.1k
std::string PipelineXSinkLocalState<SharedStateArg>::debug_string(int indentation_level) const {
173
20.1k
    fmt::memory_buffer debug_string_buffer;
174
20.1k
    fmt::format_to(debug_string_buffer, "{}", _parent->debug_string(indentation_level));
175
20.1k
    return fmt::to_string(debug_string_buffer);
176
20.1k
}
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE12debug_stringB5cxx11Ei
_ZNK5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE12debug_stringB5cxx11Ei
Line
Count
Source
172
20.1k
std::string PipelineXSinkLocalState<SharedStateArg>::debug_string(int indentation_level) const {
173
20.1k
    fmt::memory_buffer debug_string_buffer;
174
20.1k
    fmt::format_to(debug_string_buffer, "{}", _parent->debug_string(indentation_level));
175
20.1k
    return fmt::to_string(debug_string_buffer);
176
20.1k
}
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE12debug_stringB5cxx11Ei
Unexecuted instantiation: _ZNK5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE12debug_stringB5cxx11Ei
177
178
20.1k
std::string OperatorXBase::debug_string(int indentation_level) const {
179
20.1k
    fmt::memory_buffer debug_string_buffer;
180
20.1k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, parallel_tasks={}, _is_serial_operator={}",
181
20.1k
                   std::string(indentation_level * 2, ' '), _op_name, node_id(), _parallel_tasks,
182
20.1k
                   _is_serial_operator);
183
20.1k
    return fmt::to_string(debug_string_buffer);
184
20.1k
}
185
186
20.1k
std::string OperatorXBase::debug_string(RuntimeState* state, int indentation_level) const {
187
20.1k
    return state->get_local_state(operator_id())->debug_string(indentation_level);
188
20.1k
}
189
190
27.2k
Status OperatorXBase::init(const TPlanNode& tnode, RuntimeState* state) {
191
27.2k
    std::string node_name = print_plan_node_type(tnode.node_type);
192
27.2k
    _nereids_id = tnode.nereids_id;
193
27.2k
    if (!tnode.intermediate_output_tuple_id_list.empty()) {
194
26
        if (!has_projection()) {
195
0
            return Status::InternalError("no final output tuple id");
196
0
        }
197
26
        if (tnode.intermediate_output_tuple_id_list.size() !=
198
26
            tnode.intermediate_projections_list.size()) {
199
0
            return Status::InternalError(
200
0
                    "intermediate_output_tuple_id_list size:{} not match "
201
0
                    "intermediate_projections_list size:{}",
202
0
                    tnode.intermediate_output_tuple_id_list.size(),
203
0
                    tnode.intermediate_projections_list.size());
204
0
        }
205
26
    }
206
27.2k
    auto substr = node_name.substr(0, node_name.find("_NODE"));
207
27.2k
    _op_name = substr + "_OPERATOR";
208
209
27.2k
    if (tnode.__isset.vconjunct) {
210
0
        return Status::InternalError("vconjunct is not supported yet");
211
27.2k
    } else if (tnode.__isset.conjuncts) {
212
1.26k
        for (const auto& conjunct : tnode.conjuncts) {
213
1.26k
            VExprContextSPtr context;
214
1.26k
            RETURN_IF_ERROR(VExpr::create_expr_tree(conjunct, context));
215
1.26k
            _conjuncts.emplace_back(context);
216
1.26k
        }
217
344
    }
218
219
    // create the projections expr
220
27.2k
    if (tnode.__isset.projections) {
221
25.6k
        RETURN_IF_ERROR(VExpr::create_expr_trees(tnode.projections, _projection->projections));
222
25.6k
    }
223
27.2k
    if (!tnode.intermediate_projections_list.empty()) {
224
26
        DCHECK(has_projection()) << "no final projections";
225
26
        _projection->intermediate_projections.reserve(tnode.intermediate_projections_list.size());
226
130
        for (const auto& tnode_projections : tnode.intermediate_projections_list) {
227
130
            VExprContextSPtrs projections;
228
130
            RETURN_IF_ERROR(VExpr::create_expr_trees(tnode_projections, projections));
229
130
            _projection->intermediate_projections.push_back(projections);
230
130
        }
231
26
    }
232
27.2k
    return Status::OK();
233
27.2k
}
234
235
51.7k
Status OperatorXBase::prepare(RuntimeState* state) {
236
51.7k
    for (auto& conjunct : _conjuncts) {
237
1.26k
        RETURN_IF_ERROR(conjunct->prepare(state, operator_row_desc_before_projection()));
238
1.26k
    }
239
51.7k
    if (state->enable_adjust_conjunct_order_by_cost()) {
240
3.48k
        std::ranges::stable_sort(_conjuncts, [](const auto& a, const auto& b) {
241
1.81k
            return a->execute_cost() < b->execute_cost();
242
1.81k
        });
243
3.48k
    };
244
245
51.7k
    if (has_projection()) {
246
25.6k
        auto& projection = *_projection;
247
25.7k
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
248
130
            const auto& input_row_desc =
249
130
                    i == 0 ? operator_row_desc_before_projection()
250
130
                           : projection.intermediate_output_row_descriptors[i - 1];
251
130
            RETURN_IF_ERROR(
252
130
                    VExpr::prepare(projection.intermediate_projections[i], state, input_row_desc));
253
130
        }
254
25.6k
        const auto& final_projection_input_row_desc =
255
25.6k
                projection.intermediate_output_row_descriptors.empty()
256
25.6k
                        ? operator_row_desc_before_projection()
257
25.6k
                        : projection.intermediate_output_row_descriptors.back();
258
25.6k
        RETURN_IF_ERROR(
259
25.6k
                VExpr::prepare(projection.projections, state, final_projection_input_row_desc));
260
25.6k
        RETURN_IF_ERROR(VExpr::check_expr_output_type(projection.projections,
261
25.6k
                                                      projection.output_row_descriptor));
262
25.6k
    }
263
264
51.7k
    for (auto& conjunct : _conjuncts) {
265
1.26k
        RETURN_IF_ERROR(conjunct->open(state));
266
1.26k
    }
267
51.7k
    if (has_projection()) {
268
25.6k
        RETURN_IF_ERROR(VExpr::open(_projection->projections, state));
269
25.6k
        for (auto& projections : _projection->intermediate_projections) {
270
130
            RETURN_IF_ERROR(VExpr::open(projections, state));
271
130
        }
272
25.6k
    }
273
51.7k
    if (_child && !is_source()) {
274
24.4k
        RETURN_IF_ERROR(_child->prepare(state));
275
24.4k
    }
276
277
51.7k
    if (VExpr::contains_blockable_function(_conjuncts) ||
278
51.7k
        (has_projection() && VExpr::contains_blockable_function(_projection->projections))) {
279
0
        _blockable = true;
280
0
    }
281
282
51.7k
    return Status::OK();
283
51.7k
}
284
285
152
Status OperatorXBase::terminate(RuntimeState* state) {
286
152
    if (_child && !is_source()) {
287
72
        RETURN_IF_ERROR(_child->terminate(state));
288
72
    }
289
152
    auto result = state->get_local_state_result(operator_id());
290
152
    if (!result) {
291
0
        return result.error();
292
0
    }
293
152
    return result.value()->terminate(state);
294
152
}
295
296
32.2k
Status OperatorXBase::close(RuntimeState* state) {
297
32.2k
    if (_child && !is_source()) {
298
24.7k
        RETURN_IF_ERROR(_child->close(state));
299
24.7k
    }
300
32.2k
    auto result = state->get_local_state_result(operator_id());
301
32.2k
    if (!result) {
302
0
        return result.error();
303
0
    }
304
32.2k
    return result.value()->close(state);
305
32.2k
}
306
307
1.07k
void PipelineXLocalStateBase::clear_origin_block() {
308
1.07k
    _origin_block.clear_column_data(
309
1.07k
            _parent->operator_row_desc_before_projection().num_materialized_slots());
310
1.07k
}
311
312
5.30k
Status PipelineXLocalStateBase::filter_block(const VExprContextSPtrs& expr_contexts, Block* block) {
313
5.30k
    RETURN_IF_ERROR(VExprContext::filter_block(expr_contexts, block, block->columns()));
314
315
5.30k
    _estimate_memory_usage += VExprContext::get_memory_usage(expr_contexts);
316
5.30k
    return Status::OK();
317
5.30k
}
318
319
0
bool PipelineXLocalStateBase::is_blockable() const {
320
0
    return std::any_of(_projections.begin(), _projections.end(),
321
0
                       [&](VExprContextSPtr expr) -> bool { return expr->is_blockable(); });
322
0
}
323
324
Status OperatorXBase::do_projections(RuntimeState* state, Block* origin_block,
325
1.07k
                                     Block* output_block) const {
326
1.07k
    auto* local_state = state->get_local_state(operator_id());
327
1.07k
    SCOPED_TIMER(local_state->exec_time_counter());
328
1.07k
    SCOPED_TIMER(local_state->_projection_timer);
329
1.07k
    const size_t rows = origin_block->rows();
330
1.07k
    if (rows == 0) {
331
273
        return Status::OK();
332
273
    }
333
800
    SCOPED_PEAK_MEM(&local_state->_estimate_memory_usage);
334
335
800
    {
336
800
        Block input_block = *origin_block;
337
338
800
        ColumnsWithTypeAndName new_columns;
339
800
        for (const auto& projections : local_state->_intermediate_projections) {
340
0
            if (projections.empty()) {
341
0
                return Status::InternalError("meet empty intermediate projection, node id: {}",
342
0
                                             node_id());
343
0
            }
344
0
            new_columns.resize(projections.size());
345
0
            for (int i = 0; i < projections.size(); i++) {
346
0
                RETURN_IF_ERROR(projections[i]->execute(&input_block, new_columns[i]));
347
0
                if (new_columns[i].column->size() != rows) {
348
0
                    return Status::InternalError(
349
0
                            "intermediate projection result column size {} not equal input rows "
350
0
                            "{}, expr: {}",
351
0
                            new_columns[i].column->size(), rows,
352
0
                            projections[i]->root()->debug_string());
353
0
                }
354
0
            }
355
0
            Block tmp_block {new_columns};
356
0
            input_block.swap(tmp_block);
357
0
        }
358
359
800
        if (input_block.rows() != rows) {
360
0
            return Status::InternalError(
361
0
                    "after intermediate projections input block rows {} not equal origin rows {}, "
362
0
                    "input_block: {}",
363
0
                    input_block.rows(), rows, input_block.dump_structure());
364
0
        }
365
366
800
        auto scoped_mutable_block = VectorizedUtils::build_scoped_mutable_mem_reuse_block(
367
800
                output_block, _projection->output_row_descriptor);
368
800
        auto& mutable_columns = scoped_mutable_block.mutable_columns();
369
800
        DCHECK_EQ(mutable_columns.size(), local_state->_projections.size()) << debug_string();
370
800
        Columns shared_columns(mutable_columns.size());
371
372
5.56k
        for (int i = 0; i < mutable_columns.size(); ++i) {
373
4.76k
            ColumnPtr column_ptr;
374
4.76k
            RETURN_IF_ERROR(local_state->_projections[i]->execute(&input_block, column_ptr));
375
4.76k
            if (column_ptr->size() != rows) {
376
0
                return Status::InternalError(
377
0
                        "projection result column size {} not equal input rows {}, expr: {}",
378
0
                        column_ptr->size(), rows,
379
0
                        local_state->_projections[i]->root()->debug_string());
380
0
            }
381
4.76k
            column_ptr = column_ptr->convert_to_full_column_if_const();
382
4.76k
            if (is_column_nullable(*mutable_columns[i]) && !is_column_nullable(*column_ptr)) {
383
0
                column_ptr = make_nullable(column_ptr, false);
384
0
            }
385
4.76k
            if (column_ptr->is_exclusive()) {
386
2.20k
                mutable_columns[i] = IColumn::mutate(std::move(column_ptr));
387
2.55k
            } else {
388
2.55k
                shared_columns[i] = std::move(column_ptr);
389
2.55k
            }
390
4.76k
        }
391
392
800
        scoped_mutable_block.restore();
393
5.56k
        for (int i = 0; i < shared_columns.size(); ++i) {
394
4.76k
            if (shared_columns[i]) {
395
2.55k
                output_block->replace_by_position(i, std::move(shared_columns[i]));
396
2.55k
            }
397
4.76k
        }
398
800
    }
399
400
0
    origin_block->clear_column_data(
401
800
            local_state->_parent->operator_row_desc_before_projection().num_materialized_slots());
402
800
    DCHECK_EQ(output_block->rows(), rows);
403
404
800
    return Status::OK();
405
800
}
406
407
1.48M
Status OperatorXBase::get_block_after_projects(RuntimeState* state, Block* block, bool* eos) {
408
1.48M
    DBUG_EXECUTE_IF("Pipeline::return_empty_block", {
409
1.48M
        if (this->_op_name == "AGGREGATION_OPERATOR" || this->_op_name == "HASH_JOIN_OPERATOR" ||
410
1.48M
            this->_op_name == "PARTITIONED_AGGREGATION_OPERATOR" ||
411
1.48M
            this->_op_name == "PARTITIONED_HASH_JOIN_OPERATOR" ||
412
1.48M
            this->_op_name == "CROSS_JOIN_OPERATOR" || this->_op_name == "SORT_OPERATOR") {
413
1.48M
            if (_debug_point_count++ % 2 == 0) {
414
1.48M
                return Status::OK();
415
1.48M
            }
416
1.48M
        }
417
1.48M
    });
418
419
1.48M
    Status status;
420
1.48M
    auto* local_state = state->get_local_state(operator_id());
421
1.48M
    Defer defer([&]() {
422
1.48M
        if (status.ok()) {
423
1.48M
            local_state->update_output_block_counters(*block);
424
1.48M
        }
425
1.48M
    });
426
1.48M
    if (has_projection()) {
427
1.07k
        local_state->clear_origin_block();
428
1.07k
        status = get_block(state, &local_state->_origin_block, eos);
429
1.07k
        if (UNLIKELY(!status.ok())) {
430
0
            return status;
431
0
        }
432
1.07k
        status = do_projections(state, &local_state->_origin_block, block);
433
1.07k
        return status;
434
1.07k
    }
435
1.48M
    status = get_block(state, block, eos);
436
1.48M
    RETURN_IF_ERROR(block->check_type_and_column());
437
1.48M
    return status;
438
1.48M
}
439
440
25.4k
void PipelineXLocalStateBase::reached_limit(Block* block, bool* eos) {
441
25.4k
    if (_parent->_limit != -1 and _num_rows_returned + block->rows() >= _parent->_limit) {
442
40
        block->set_num_rows(_parent->_limit - _num_rows_returned);
443
40
        *eos = true;
444
40
    }
445
446
25.4k
    DBUG_EXECUTE_IF("Pipeline::reached_limit_early", {
447
25.4k
        auto op_name = to_lower(_parent->_op_name);
448
25.4k
        auto arg_op_name = dp->param<std::string>("op_name");
449
25.4k
        arg_op_name = to_lower(arg_op_name);
450
451
25.4k
        if (op_name == arg_op_name) {
452
25.4k
            *eos = true;
453
25.4k
        }
454
25.4k
    });
455
456
25.4k
    if (auto rows = block->rows()) {
457
7.44k
        _num_rows_returned += rows;
458
7.44k
        _state->get_query_ctx()->resource_ctx()->io_context()->update_process_rows(rows);
459
7.44k
    }
460
25.4k
}
461
462
24.0k
Status DataSinkOperatorXBase::terminate(RuntimeState* state) {
463
24.0k
    auto result = state->get_sink_local_state_result();
464
24.0k
    if (!result) {
465
0
        return result.error();
466
0
    }
467
24.0k
    return result.value()->terminate(state);
468
24.0k
}
469
470
20.1k
std::string DataSinkOperatorXBase::debug_string(int indentation_level) const {
471
20.1k
    fmt::memory_buffer debug_string_buffer;
472
473
20.1k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, _is_serial_operator={}",
474
20.1k
                   std::string(indentation_level * 2, ' '), _name, node_id(), _is_serial_operator);
475
20.1k
    return fmt::to_string(debug_string_buffer);
476
20.1k
}
477
478
20.1k
std::string DataSinkOperatorXBase::debug_string(RuntimeState* state, int indentation_level) const {
479
20.1k
    return state->get_sink_local_state()->debug_string(indentation_level);
480
20.1k
}
481
482
1.90k
Status DataSinkOperatorXBase::init(const TDataSink& tsink) {
483
1.90k
    std::string op_name = "UNKNOWN_SINK";
484
1.90k
    auto it = _TDataSinkType_VALUES_TO_NAMES.find(tsink.type);
485
486
1.90k
    if (it != _TDataSinkType_VALUES_TO_NAMES.end()) {
487
1.89k
        op_name = it->second;
488
1.89k
    }
489
1.90k
    _name = op_name + "_OPERATOR";
490
1.90k
    return Status::OK();
491
1.90k
}
492
493
73.3k
Status DataSinkOperatorXBase::init(const TPlanNode& tnode, RuntimeState* state) {
494
73.3k
    std::string op_name = print_plan_node_type(tnode.node_type);
495
73.3k
    _nereids_id = tnode.nereids_id;
496
73.3k
    auto substr = op_name.substr(0, op_name.find("_NODE"));
497
73.3k
    _name = substr + "_SINK_OPERATOR";
498
73.3k
    return Status::OK();
499
73.3k
}
500
501
template <typename LocalStateType>
502
Status DataSinkOperatorX<LocalStateType>::setup_local_state(RuntimeState* state,
503
75.4k
                                                            LocalSinkStateInfo& info) {
504
75.4k
    auto local_state = LocalStateType::create_unique(this, state);
505
75.4k
    RETURN_IF_ERROR(local_state->init(state, info));
506
75.4k
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
75.4k
    return Status::OK();
508
75.4k
}
_ZN5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
72.0k
                                                            LocalSinkStateInfo& info) {
504
72.0k
    auto local_state = LocalStateType::create_unique(this, state);
505
72.0k
    RETURN_IF_ERROR(local_state->init(state, info));
506
72.0k
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
72.0k
    return Status::OK();
508
72.0k
}
_ZN5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
652
                                                            LocalSinkStateInfo& info) {
504
652
    auto local_state = LocalStateType::create_unique(this, state);
505
652
    RETURN_IF_ERROR(local_state->init(state, info));
506
652
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
652
    return Status::OK();
508
652
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
16
                                                            LocalSinkStateInfo& info) {
504
16
    auto local_state = LocalStateType::create_unique(this, state);
505
16
    RETURN_IF_ERROR(local_state->init(state, info));
506
16
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
16
    return Status::OK();
508
16
}
_ZN5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
18
                                                            LocalSinkStateInfo& info) {
504
18
    auto local_state = LocalStateType::create_unique(this, state);
505
18
    RETURN_IF_ERROR(local_state->init(state, info));
506
18
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
18
    return Status::OK();
508
18
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_18SortSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
160
                                                            LocalSinkStateInfo& info) {
504
160
    auto local_state = LocalStateType::create_unique(this, state);
505
160
    RETURN_IF_ERROR(local_state->init(state, info));
506
160
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
160
    return Status::OK();
508
160
}
_ZN5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
20
                                                            LocalSinkStateInfo& info) {
504
20
    auto local_state = LocalStateType::create_unique(this, state);
505
20
    RETURN_IF_ERROR(local_state->init(state, info));
506
20
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
20
    return Status::OK();
508
20
}
_ZN5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
10
                                                            LocalSinkStateInfo& info) {
504
10
    auto local_state = LocalStateType::create_unique(this, state);
505
10
    RETURN_IF_ERROR(local_state->init(state, info));
506
10
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
10
    return Status::OK();
508
10
}
_ZN5doris17DataSinkOperatorXINS_17AggSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
720
                                                            LocalSinkStateInfo& info) {
504
720
    auto local_state = LocalStateType::create_unique(this, state);
505
720
    RETURN_IF_ERROR(local_state->init(state, info));
506
720
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
720
    return Status::OK();
508
720
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
128
                                                            LocalSinkStateInfo& info) {
504
128
    auto local_state = LocalStateType::create_unique(this, state);
505
128
    RETURN_IF_ERROR(local_state->init(state, info));
506
128
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
128
    return Status::OK();
508
128
}
_ZN5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
1.27k
                                                            LocalSinkStateInfo& info) {
504
1.27k
    auto local_state = LocalStateType::create_unique(this, state);
505
1.27k
    RETURN_IF_ERROR(local_state->init(state, info));
506
1.27k
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
1.27k
    return Status::OK();
508
1.27k
}
_ZN5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
249
                                                            LocalSinkStateInfo& info) {
504
249
    auto local_state = LocalStateType::create_unique(this, state);
505
249
    RETURN_IF_ERROR(local_state->init(state, info));
506
249
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
249
    return Status::OK();
508
249
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
124
                                                            LocalSinkStateInfo& info) {
504
124
    auto local_state = LocalStateType::create_unique(this, state);
505
124
    RETURN_IF_ERROR(local_state->init(state, info));
506
124
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
124
    return Status::OK();
508
124
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
1
                                                            LocalSinkStateInfo& info) {
504
1
    auto local_state = LocalStateType::create_unique(this, state);
505
1
    RETURN_IF_ERROR(local_state->init(state, info));
506
1
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
1
    return Status::OK();
508
1
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris17DataSinkOperatorXINS_18DictSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
503
54
                                                            LocalSinkStateInfo& info) {
504
54
    auto local_state = LocalStateType::create_unique(this, state);
505
54
    RETURN_IF_ERROR(local_state->init(state, info));
506
54
    state->emplace_sink_local_state(operator_id(), std::move(local_state));
507
54
    return Status::OK();
508
54
}
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
509
510
template <typename LocalStateType>
511
75.5k
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
0
                                 LocalExchangeSharedState>) {
514
0
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
0
                                        MultiCastSharedState>) {
517
0
        throw Exception(Status::FatalError("should not reach here!"));
518
75.5k
    } else {
519
75.5k
        auto ss = LocalStateType::SharedStateType::create_shared();
520
75.5k
        ss->id = operator_id();
521
75.5k
        for (auto& dest : dests_id()) {
522
75.5k
            ss->related_op_ids.insert(dest);
523
75.5k
        }
524
75.5k
        return ss;
525
75.5k
    }
526
75.5k
}
_ZNK5doris17DataSinkOperatorXINS_27HashJoinBuildSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
72.0k
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
72.0k
    } else {
519
72.0k
        auto ss = LocalStateType::SharedStateType::create_shared();
520
72.0k
        ss->id = operator_id();
521
72.0k
        for (auto& dest : dests_id()) {
522
72.0k
            ss->related_op_ids.insert(dest);
523
72.0k
        }
524
72.0k
        return ss;
525
72.0k
    }
526
72.0k
}
_ZNK5doris17DataSinkOperatorXINS_20ResultSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
654
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
654
    } else {
519
654
        auto ss = LocalStateType::SharedStateType::create_shared();
520
654
        ss->id = operator_id();
521
656
        for (auto& dest : dests_id()) {
522
656
            ss->related_op_ids.insert(dest);
523
656
        }
524
654
        return ss;
525
654
    }
526
654
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_23JdbcTableSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_27MemoryScratchSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_24ResultFileSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_23OlapTableSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
16
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
16
    } else {
519
16
        auto ss = LocalStateType::SharedStateType::create_shared();
520
16
        ss->id = operator_id();
521
16
        for (auto& dest : dests_id()) {
522
16
            ss->related_op_ids.insert(dest);
523
16
        }
524
16
        return ss;
525
16
    }
526
16
}
_ZNK5doris17DataSinkOperatorXINS_25OlapTableSinkV2LocalStateEE19create_shared_stateEv
Line
Count
Source
511
18
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
18
    } else {
519
18
        auto ss = LocalStateType::SharedStateType::create_shared();
520
18
        ss->id = operator_id();
521
18
        for (auto& dest : dests_id()) {
522
18
            ss->related_op_ids.insert(dest);
523
18
        }
524
18
        return ss;
525
18
    }
526
18
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_23HiveTableSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_22TVFTableSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_26IcebergTableSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_31SpillIcebergTableSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_27IcebergDeleteSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_26IcebergMergeSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_21MCTableSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_22AnalyticSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
11
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
11
    } else {
519
11
        auto ss = LocalStateType::SharedStateType::create_shared();
520
11
        ss->id = operator_id();
521
11
        for (auto& dest : dests_id()) {
522
11
            ss->related_op_ids.insert(dest);
523
11
        }
524
11
        return ss;
525
11
    }
526
11
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_23BlackholeSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_18SortSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
169
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
169
    } else {
519
169
        auto ss = LocalStateType::SharedStateType::create_shared();
520
169
        ss->id = operator_id();
521
169
        for (auto& dest : dests_id()) {
522
169
            ss->related_op_ids.insert(dest);
523
169
        }
524
169
        return ss;
525
169
    }
526
169
}
_ZNK5doris17DataSinkOperatorXINS_23SpillSortSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
22
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
22
    } else {
519
22
        auto ss = LocalStateType::SharedStateType::create_shared();
520
22
        ss->id = operator_id();
521
22
        for (auto& dest : dests_id()) {
522
22
            ss->related_op_ids.insert(dest);
523
22
        }
524
22
        return ss;
525
22
    }
526
22
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_27LocalExchangeSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_17AggSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
753
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
753
    } else {
519
753
        auto ss = LocalStateType::SharedStateType::create_shared();
520
753
        ss->id = operator_id();
521
753
        for (auto& dest : dests_id()) {
522
753
            ss->related_op_ids.insert(dest);
523
753
        }
524
753
        return ss;
525
753
    }
526
753
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_25BucketedAggSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_28PartitionedAggSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
127
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
127
    } else {
519
127
        auto ss = LocalStateType::SharedStateType::create_shared();
520
127
        ss->id = operator_id();
521
127
        for (auto& dest : dests_id()) {
522
127
            ss->related_op_ids.insert(dest);
523
127
        }
524
127
        return ss;
525
127
    }
526
127
}
_ZNK5doris17DataSinkOperatorXINS_22ExchangeSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
1.27k
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
1.27k
    } else {
519
1.27k
        auto ss = LocalStateType::SharedStateType::create_shared();
520
1.27k
        ss->id = operator_id();
521
1.27k
        for (auto& dest : dests_id()) {
522
1.27k
            ss->related_op_ids.insert(dest);
523
1.27k
        }
524
1.27k
        return ss;
525
1.27k
    }
526
1.27k
}
_ZNK5doris17DataSinkOperatorXINS_33NestedLoopJoinBuildSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
249
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
249
    } else {
519
249
        auto ss = LocalStateType::SharedStateType::create_shared();
520
249
        ss->id = operator_id();
521
249
        for (auto& dest : dests_id()) {
522
249
            ss->related_op_ids.insert(dest);
523
249
        }
524
249
        return ss;
525
249
    }
526
249
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_19UnionSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_33MultiCastDataStreamSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_27PartitionSortSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
102
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
102
    } else {
519
102
        auto ss = LocalStateType::SharedStateType::create_shared();
520
102
        ss->id = operator_id();
521
102
        for (auto& dest : dests_id()) {
522
102
            ss->related_op_ids.insert(dest);
523
102
        }
524
102
        return ss;
525
102
    }
526
102
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb1EEEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_22SetProbeSinkLocalStateILb0EEEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb1EEEE19create_shared_stateEv
Line
Count
Source
511
7
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
7
    } else {
519
7
        auto ss = LocalStateType::SharedStateType::create_shared();
520
7
        ss->id = operator_id();
521
7
        for (auto& dest : dests_id()) {
522
7
            ss->related_op_ids.insert(dest);
523
7
        }
524
7
        return ss;
525
7
    }
526
7
}
_ZNK5doris17DataSinkOperatorXINS_17SetSinkLocalStateILb0EEEE19create_shared_stateEv
Line
Count
Source
511
6
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
6
    } else {
519
6
        auto ss = LocalStateType::SharedStateType::create_shared();
520
6
        ss->id = operator_id();
521
6
        for (auto& dest : dests_id()) {
522
6
            ss->related_op_ids.insert(dest);
523
6
        }
524
6
        return ss;
525
6
    }
526
6
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_33PartitionedHashJoinSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_30GroupCommitBlockSinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_19CacheSinkLocalStateEE19create_shared_stateEv
_ZNK5doris17DataSinkOperatorXINS_18DictSinkLocalStateEE19create_shared_stateEv
Line
Count
Source
511
54
std::shared_ptr<BasicSharedState> DataSinkOperatorX<LocalStateType>::create_shared_state() const {
512
    if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
513
                                 LocalExchangeSharedState>) {
514
        return nullptr;
515
    } else if constexpr (std::is_same_v<typename LocalStateType::SharedStateType,
516
                                        MultiCastSharedState>) {
517
        throw Exception(Status::FatalError("should not reach here!"));
518
54
    } else {
519
54
        auto ss = LocalStateType::SharedStateType::create_shared();
520
54
        ss->id = operator_id();
521
54
        for (auto& dest : dests_id()) {
522
54
            ss->related_op_ids.insert(dest);
523
54
        }
524
54
        return ss;
525
54
    }
526
54
}
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_20RecCTESinkLocalStateEE19create_shared_stateEv
Unexecuted instantiation: _ZNK5doris17DataSinkOperatorXINS_26RecCTEAnchorSinkLocalStateEE19create_shared_stateEv
527
528
template <typename LocalStateType>
529
27.8k
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
27.8k
    auto local_state = LocalStateType::create_unique(state, this);
531
27.8k
    RETURN_IF_ERROR(local_state->init(state, info));
532
27.8k
    state->emplace_local_state(operator_id(), std::move(local_state));
533
27.8k
    return Status::OK();
534
27.8k
}
_ZN5doris9OperatorXINS_23HashJoinProbeLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
24.0k
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
24.0k
    auto local_state = LocalStateType::create_unique(state, this);
531
24.0k
    RETURN_IF_ERROR(local_state->init(state, info));
532
24.0k
    state->emplace_local_state(operator_id(), std::move(local_state));
533
24.0k
    return Status::OK();
534
24.0k
}
_ZN5doris9OperatorXINS_18OlapScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
812
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
812
    auto local_state = LocalStateType::create_unique(state, this);
531
812
    RETURN_IF_ERROR(local_state->init(state, info));
532
812
    state->emplace_local_state(operator_id(), std::move(local_state));
533
812
    return Status::OK();
534
812
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_21GroupCommitLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_18JDBCScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_18FileScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
6
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
6
    auto local_state = LocalStateType::create_unique(state, this);
531
6
    RETURN_IF_ERROR(local_state->init(state, info));
532
6
    state->emplace_local_state(operator_id(), std::move(local_state));
533
6
    return Status::OK();
534
6
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_18AnalyticLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_14SortLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
13
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
13
    auto local_state = LocalStateType::create_unique(state, this);
531
13
    RETURN_IF_ERROR(local_state->init(state, info));
532
13
    state->emplace_local_state(operator_id(), std::move(local_state));
533
13
    return Status::OK();
534
13
}
_ZN5doris9OperatorXINS_19SpillSortLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
13
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
13
    auto local_state = LocalStateType::create_unique(state, this);
531
13
    RETURN_IF_ERROR(local_state->init(state, info));
532
13
    state->emplace_local_state(operator_id(), std::move(local_state));
533
13
    return Status::OK();
534
13
}
_ZN5doris9OperatorXINS_24LocalMergeSortLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
140
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
140
    auto local_state = LocalStateType::create_unique(state, this);
531
140
    RETURN_IF_ERROR(local_state->init(state, info));
532
140
    state->emplace_local_state(operator_id(), std::move(local_state));
533
140
    return Status::OK();
534
140
}
_ZN5doris9OperatorXINS_13AggLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
710
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
710
    auto local_state = LocalStateType::create_unique(state, this);
531
710
    RETURN_IF_ERROR(local_state->init(state, info));
532
710
    state->emplace_local_state(operator_id(), std::move(local_state));
533
710
    return Status::OK();
534
710
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_21BucketedAggLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_24PartitionedAggLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
118
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
118
    auto local_state = LocalStateType::create_unique(state, this);
531
118
    RETURN_IF_ERROR(local_state->init(state, info));
532
118
    state->emplace_local_state(operator_id(), std::move(local_state));
533
118
    return Status::OK();
534
118
}
_ZN5doris9OperatorXINS_23TableFunctionLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
5
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
5
    auto local_state = LocalStateType::create_unique(state, this);
531
5
    RETURN_IF_ERROR(local_state->init(state, info));
532
5
    state->emplace_local_state(operator_id(), std::move(local_state));
533
5
    return Status::OK();
534
5
}
_ZN5doris9OperatorXINS_18ExchangeLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
1.03k
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
1.03k
    auto local_state = LocalStateType::create_unique(state, this);
531
1.03k
    RETURN_IF_ERROR(local_state->init(state, info));
532
1.03k
    state->emplace_local_state(operator_id(), std::move(local_state));
533
1.03k
    return Status::OK();
534
1.03k
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_16RepeatLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_29NestedLoopJoinProbeLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
248
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
248
    auto local_state = LocalStateType::create_unique(state, this);
531
248
    RETURN_IF_ERROR(local_state->init(state, info));
532
248
    state->emplace_local_state(operator_id(), std::move(local_state));
533
248
    return Status::OK();
534
248
}
_ZN5doris9OperatorXINS_23AssertNumRowsLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
3
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
3
    auto local_state = LocalStateType::create_unique(state, this);
531
3
    RETURN_IF_ERROR(local_state->init(state, info));
532
3
    state->emplace_local_state(operator_id(), std::move(local_state));
533
3
    return Status::OK();
534
3
}
_ZN5doris9OperatorXINS_18EmptySetLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
3
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
3
    auto local_state = LocalStateType::create_unique(state, this);
531
3
    RETURN_IF_ERROR(local_state->init(state, info));
532
3
    state->emplace_local_state(operator_id(), std::move(local_state));
533
3
    return Status::OK();
534
3
}
_ZN5doris9OperatorXINS_21UnionSourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
18
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
18
    auto local_state = LocalStateType::create_unique(state, this);
531
18
    RETURN_IF_ERROR(local_state->init(state, info));
532
18
    state->emplace_local_state(operator_id(), std::move(local_state));
533
18
    return Status::OK();
534
18
}
_ZN5doris9OperatorXINS_35MultiCastDataStreamSourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
372
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
372
    auto local_state = LocalStateType::create_unique(state, this);
531
372
    RETURN_IF_ERROR(local_state->init(state, info));
532
372
    state->emplace_local_state(operator_id(), std::move(local_state));
533
372
    return Status::OK();
534
372
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_29PartitionSortSourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_19SetSourceLocalStateILb1EEEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_19SetSourceLocalStateILb0EEEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_17DataGenLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
4
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
4
    auto local_state = LocalStateType::create_unique(state, this);
531
4
    RETURN_IF_ERROR(local_state->init(state, info));
532
4
    state->emplace_local_state(operator_id(), std::move(local_state));
533
4
    return Status::OK();
534
4
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_20SchemaScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_18MetaScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_29LocalExchangeSourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
158
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
158
    auto local_state = LocalStateType::create_unique(state, this);
531
158
    RETURN_IF_ERROR(local_state->init(state, info));
532
158
    state->emplace_local_state(operator_id(), std::move(local_state));
533
158
    return Status::OK();
534
158
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_34PartitionedHashJoinProbeLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_21CacheSourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_22RecCTESourceLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_20RecCTEScanLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_25MaterializationLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris9OperatorXINS_16SelectLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
529
130
Status OperatorX<LocalStateType>::setup_local_state(RuntimeState* state, LocalStateInfo& info) {
530
130
    auto local_state = LocalStateType::create_unique(state, this);
531
130
    RETURN_IF_ERROR(local_state->init(state, info));
532
130
    state->emplace_local_state(operator_id(), std::move(local_state));
533
130
    return Status::OK();
534
130
}
Unexecuted instantiation: _ZN5doris9OperatorXINS_22StreamingAggLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris9OperatorXINS_30DistinctStreamingAggLocalStateEE17setup_local_stateEPNS_12RuntimeStateERNS_14LocalStateInfoE
535
536
PipelineXSinkLocalStateBase::PipelineXSinkLocalStateBase(DataSinkOperatorXBase* parent,
537
                                                         RuntimeState* state)
538
75.7k
        : _parent(parent), _state(state) {}
539
540
PipelineXLocalStateBase::PipelineXLocalStateBase(RuntimeState* state, OperatorXBase* parent)
541
28.2k
        : _num_rows_returned(0),
542
28.2k
          _rows_returned_counter(nullptr),
543
28.2k
          _parent(parent),
544
28.2k
          _state(state),
545
28.2k
          _budget(state->batch_size(), state->preferred_block_size_bytes()) {}
546
547
template <typename SharedStateArg>
548
28.0k
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
28.0k
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
28.0k
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
28.0k
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
28.0k
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
28.0k
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
28.0k
    _operator_profile->add_child(_common_profile.get(), true);
557
28.0k
    _operator_profile->add_child(_custom_profile.get(), true);
558
28.0k
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
28.0k
    if constexpr (!is_fake_shared) {
560
26.0k
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
160
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
160
                                    .first.get()
563
160
                                    ->template cast<SharedStateArg>();
564
565
160
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
160
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
160
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
25.8k
        } else if (info.shared_state) {
569
25.8k
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
0
                DCHECK(false);
571
0
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
25.8k
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
25.8k
            _dependency = _shared_state->create_source_dependency(
576
25.8k
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
25.8k
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
25.8k
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
25.8k
        } else {
580
18.4E
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
18.4E
                DCHECK(false);
582
18.4E
            }
583
17
        }
584
26.0k
    }
585
586
28.0k
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
28.0k
    _rows_returned_counter =
591
28.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
28.0k
    _blocks_returned_counter =
593
28.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
28.0k
    _output_block_bytes_counter =
595
28.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
28.0k
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
28.0k
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
28.0k
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
28.0k
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
28.0k
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
28.0k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
28.0k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
28.0k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
28.0k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
28.0k
    _memory_used_counter =
606
28.0k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
28.0k
    _common_profile->add_info_string("IsColocate",
608
28.0k
                                     std::to_string(_parent->is_colocated_operator()));
609
28.0k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
28.0k
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
28.0k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
28.0k
    return Status::OK();
613
28.0k
}
_ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
24.0k
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
24.0k
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
24.0k
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
24.0k
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
24.0k
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
24.0k
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
24.0k
    _operator_profile->add_child(_common_profile.get(), true);
557
24.0k
    _operator_profile->add_child(_custom_profile.get(), true);
558
24.0k
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
24.0k
    if constexpr (!is_fake_shared) {
560
24.0k
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
24.0k
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
24.0k
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
24.0k
            _dependency = _shared_state->create_source_dependency(
576
24.0k
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
24.0k
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
24.0k
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
24.0k
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
24.0k
    }
585
586
24.0k
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
24.0k
    _rows_returned_counter =
591
24.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
24.0k
    _blocks_returned_counter =
593
24.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
24.0k
    _output_block_bytes_counter =
595
24.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
24.0k
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
24.0k
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
24.0k
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
24.0k
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
24.0k
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
24.0k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
24.0k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
24.0k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
24.0k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
24.0k
    _memory_used_counter =
606
24.0k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
24.0k
    _common_profile->add_info_string("IsColocate",
608
24.0k
                                     std::to_string(_parent->is_colocated_operator()));
609
24.0k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
24.0k
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
24.0k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
24.0k
    return Status::OK();
613
24.0k
}
_ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
1
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
1
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
1
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
1
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
1
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
1
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
1
    _operator_profile->add_child(_common_profile.get(), true);
557
1
    _operator_profile->add_child(_custom_profile.get(), true);
558
1
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
1
    if constexpr (!is_fake_shared) {
560
1
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
1
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
1
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
1
            _dependency = _shared_state->create_source_dependency(
576
1
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
1
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
1
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
1
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
1
    }
585
586
1
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
1
    _rows_returned_counter =
591
1
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
1
    _blocks_returned_counter =
593
1
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
1
    _output_block_bytes_counter =
595
1
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
1
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
1
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
1
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
1
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
1
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
1
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
1
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
1
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
1
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
1
    _memory_used_counter =
606
1
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
1
    _common_profile->add_info_string("IsColocate",
608
1
                                     std::to_string(_parent->is_colocated_operator()));
609
1
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
1
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
1
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
1
    return Status::OK();
613
1
}
_ZN5doris19PipelineXLocalStateINS_15SortSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
165
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
165
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
165
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
165
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
165
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
165
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
165
    _operator_profile->add_child(_common_profile.get(), true);
557
165
    _operator_profile->add_child(_custom_profile.get(), true);
558
165
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
165
    if constexpr (!is_fake_shared) {
560
165
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
165
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
165
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
165
            _dependency = _shared_state->create_source_dependency(
576
165
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
165
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
165
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
165
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
165
    }
585
586
165
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
165
    _rows_returned_counter =
591
165
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
165
    _blocks_returned_counter =
593
165
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
165
    _output_block_bytes_counter =
595
165
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
165
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
165
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
165
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
165
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
165
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
165
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
165
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
165
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
165
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
165
    _memory_used_counter =
606
165
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
165
    _common_profile->add_info_string("IsColocate",
608
165
                                     std::to_string(_parent->is_colocated_operator()));
609
165
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
165
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
165
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
165
    return Status::OK();
613
165
}
_ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
13
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
13
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
13
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
13
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
13
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
13
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
13
    _operator_profile->add_child(_common_profile.get(), true);
557
13
    _operator_profile->add_child(_custom_profile.get(), true);
558
13
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
13
    if constexpr (!is_fake_shared) {
560
13
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
13
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
13
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
13
            _dependency = _shared_state->create_source_dependency(
576
13
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
13
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
13
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
13
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
13
    }
585
586
13
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
13
    _rows_returned_counter =
591
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
13
    _blocks_returned_counter =
593
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
13
    _output_block_bytes_counter =
595
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
13
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
13
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
13
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
13
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
13
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
13
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
13
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
13
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
13
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
13
    _memory_used_counter =
606
13
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
13
    _common_profile->add_info_string("IsColocate",
608
13
                                     std::to_string(_parent->is_colocated_operator()));
609
13
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
13
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
13
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
13
    return Status::OK();
613
13
}
_ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
248
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
248
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
248
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
248
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
248
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
248
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
248
    _operator_profile->add_child(_common_profile.get(), true);
557
248
    _operator_profile->add_child(_custom_profile.get(), true);
558
248
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
248
    if constexpr (!is_fake_shared) {
560
248
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
248
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
248
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
248
            _dependency = _shared_state->create_source_dependency(
576
248
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
248
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
248
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
248
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
248
    }
585
586
248
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
248
    _rows_returned_counter =
591
248
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
248
    _blocks_returned_counter =
593
248
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
248
    _output_block_bytes_counter =
595
248
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
248
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
248
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
248
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
248
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
248
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
248
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
248
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
248
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
248
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
248
    _memory_used_counter =
606
248
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
248
    _common_profile->add_info_string("IsColocate",
608
248
                                     std::to_string(_parent->is_colocated_operator()));
609
248
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
248
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
248
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
248
    return Status::OK();
613
248
}
_ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
11
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
11
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
11
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
11
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
11
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
11
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
11
    _operator_profile->add_child(_common_profile.get(), true);
557
11
    _operator_profile->add_child(_custom_profile.get(), true);
558
11
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
11
    if constexpr (!is_fake_shared) {
560
11
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
11
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
11
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
11
            _dependency = _shared_state->create_source_dependency(
576
11
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
11
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
11
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
11
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
11
    }
585
586
11
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
11
    _rows_returned_counter =
591
11
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
11
    _blocks_returned_counter =
593
11
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
11
    _output_block_bytes_counter =
595
11
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
11
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
11
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
11
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
11
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
11
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
11
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
11
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
11
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
11
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
11
    _memory_used_counter =
606
11
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
11
    _common_profile->add_info_string("IsColocate",
608
11
                                     std::to_string(_parent->is_colocated_operator()));
609
11
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
11
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
11
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
11
    return Status::OK();
613
11
}
_ZN5doris19PipelineXLocalStateINS_14AggSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
743
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
743
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
743
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
743
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
743
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
743
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
743
    _operator_profile->add_child(_common_profile.get(), true);
557
743
    _operator_profile->add_child(_custom_profile.get(), true);
558
743
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
743
    if constexpr (!is_fake_shared) {
560
743
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
743
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
743
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
743
            _dependency = _shared_state->create_source_dependency(
576
743
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
743
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
743
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
743
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
743
    }
585
586
743
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
743
    _rows_returned_counter =
591
743
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
743
    _blocks_returned_counter =
593
743
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
743
    _output_block_bytes_counter =
595
743
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
743
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
743
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
743
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
743
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
743
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
743
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
743
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
743
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
743
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
743
    _memory_used_counter =
606
743
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
743
    _common_profile->add_info_string("IsColocate",
608
743
                                     std::to_string(_parent->is_colocated_operator()));
609
743
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
743
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
743
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
743
    return Status::OK();
613
743
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
_ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
118
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
118
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
118
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
118
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
118
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
118
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
118
    _operator_profile->add_child(_common_profile.get(), true);
557
118
    _operator_profile->add_child(_custom_profile.get(), true);
558
118
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
118
    if constexpr (!is_fake_shared) {
560
118
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
118
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
118
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
118
            _dependency = _shared_state->create_source_dependency(
576
118
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
118
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
118
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
118
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
118
    }
585
586
118
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
118
    _rows_returned_counter =
591
118
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
118
    _blocks_returned_counter =
593
118
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
118
    _output_block_bytes_counter =
595
118
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
118
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
118
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
118
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
118
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
118
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
118
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
118
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
118
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
118
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
118
    _memory_used_counter =
606
118
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
118
    _common_profile->add_info_string("IsColocate",
608
118
                                     std::to_string(_parent->is_colocated_operator()));
609
118
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
118
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
118
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
118
    return Status::OK();
613
118
}
_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
2.05k
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
2.05k
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
2.05k
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
2.05k
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
2.05k
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
2.05k
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
2.05k
    _operator_profile->add_child(_common_profile.get(), true);
557
2.05k
    _operator_profile->add_child(_custom_profile.get(), true);
558
2.05k
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
    if constexpr (!is_fake_shared) {
560
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
                                    .first.get()
563
                                    ->template cast<SharedStateArg>();
564
565
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
            _dependency = _shared_state->create_source_dependency(
576
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
        }
584
    }
585
586
2.05k
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
2.05k
    _rows_returned_counter =
591
2.05k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
2.05k
    _blocks_returned_counter =
593
2.05k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
2.05k
    _output_block_bytes_counter =
595
2.05k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
2.05k
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
2.05k
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
2.05k
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
2.05k
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
2.05k
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
2.05k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
2.05k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
2.05k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
2.05k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
2.05k
    _memory_used_counter =
606
2.05k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
2.05k
    _common_profile->add_info_string("IsColocate",
608
2.05k
                                     std::to_string(_parent->is_colocated_operator()));
609
2.05k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
2.05k
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
2.05k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
2.05k
    return Status::OK();
613
2.05k
}
_ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
20
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
20
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
20
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
20
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
20
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
20
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
20
    _operator_profile->add_child(_common_profile.get(), true);
557
20
    _operator_profile->add_child(_custom_profile.get(), true);
558
20
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
20
    if constexpr (!is_fake_shared) {
560
20
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
20
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
1
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
1
            _dependency = _shared_state->create_source_dependency(
576
1
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
1
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
1
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
19
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
19
        }
584
20
    }
585
586
20
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
20
    _rows_returned_counter =
591
20
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
20
    _blocks_returned_counter =
593
20
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
20
    _output_block_bytes_counter =
595
20
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
20
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
20
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
20
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
20
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
20
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
20
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
20
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
20
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
20
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
20
    _memory_used_counter =
606
20
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
20
    _common_profile->add_info_string("IsColocate",
608
20
                                     std::to_string(_parent->is_colocated_operator()));
609
20
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
20
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
20
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
20
    return Status::OK();
613
20
}
_ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
12
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
12
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
12
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
12
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
12
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
12
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
12
    _operator_profile->add_child(_common_profile.get(), true);
557
12
    _operator_profile->add_child(_custom_profile.get(), true);
558
12
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
12
    if constexpr (!is_fake_shared) {
560
12
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
12
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
12
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
12
            _dependency = _shared_state->create_source_dependency(
576
12
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
12
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
12
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
12
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
12
    }
585
586
12
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
12
    _rows_returned_counter =
591
12
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
12
    _blocks_returned_counter =
593
12
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
12
    _output_block_bytes_counter =
595
12
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
12
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
12
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
12
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
12
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
12
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
12
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
12
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
12
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
12
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
12
    _memory_used_counter =
606
12
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
12
    _common_profile->add_info_string("IsColocate",
608
12
                                     std::to_string(_parent->is_colocated_operator()));
609
12
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
12
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
12
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
12
    return Status::OK();
613
12
}
_ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
372
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
372
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
372
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
372
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
372
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
372
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
372
    _operator_profile->add_child(_common_profile.get(), true);
557
372
    _operator_profile->add_child(_custom_profile.get(), true);
558
372
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
372
    if constexpr (!is_fake_shared) {
560
372
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
372
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
372
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
372
            _dependency = _shared_state->create_source_dependency(
576
372
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
372
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
372
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
372
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
372
    }
585
586
372
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
372
    _rows_returned_counter =
591
372
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
372
    _blocks_returned_counter =
593
372
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
372
    _output_block_bytes_counter =
595
372
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
372
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
372
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
372
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
372
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
372
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
372
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
372
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
372
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
372
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
372
    _memory_used_counter =
606
372
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
372
    _common_profile->add_info_string("IsColocate",
608
372
                                     std::to_string(_parent->is_colocated_operator()));
609
372
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
372
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
372
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
372
    return Status::OK();
613
372
}
_ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
102
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
102
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
102
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
102
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
102
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
102
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
102
    _operator_profile->add_child(_common_profile.get(), true);
557
102
    _operator_profile->add_child(_custom_profile.get(), true);
558
102
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
102
    if constexpr (!is_fake_shared) {
560
102
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
102
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
102
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
102
            _dependency = _shared_state->create_source_dependency(
576
102
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
102
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
102
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
102
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
102
    }
585
586
102
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
102
    _rows_returned_counter =
591
102
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
102
    _blocks_returned_counter =
593
102
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
102
    _output_block_bytes_counter =
595
102
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
102
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
102
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
102
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
102
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
102
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
102
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
102
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
102
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
102
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
102
    _memory_used_counter =
606
102
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
102
    _common_profile->add_info_string("IsColocate",
608
102
                                     std::to_string(_parent->is_colocated_operator()));
609
102
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
102
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
102
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
102
    return Status::OK();
613
102
}
_ZN5doris19PipelineXLocalStateINS_14SetSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
13
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
13
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
13
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
13
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
13
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
13
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
13
    _operator_profile->add_child(_common_profile.get(), true);
557
13
    _operator_profile->add_child(_custom_profile.get(), true);
558
13
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
13
    if constexpr (!is_fake_shared) {
560
13
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
0
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
0
                                    .first.get()
563
0
                                    ->template cast<SharedStateArg>();
564
565
0
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
13
        } else if (info.shared_state) {
569
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
                DCHECK(false);
571
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
13
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
13
            _dependency = _shared_state->create_source_dependency(
576
13
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
13
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
13
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
13
        } else {
580
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
                DCHECK(false);
582
            }
583
0
        }
584
13
    }
585
586
13
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
13
    _rows_returned_counter =
591
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
13
    _blocks_returned_counter =
593
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
13
    _output_block_bytes_counter =
595
13
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
13
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
13
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
13
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
13
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
13
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
13
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
13
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
13
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
13
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
13
    _memory_used_counter =
606
13
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
13
    _common_profile->add_info_string("IsColocate",
608
13
                                     std::to_string(_parent->is_colocated_operator()));
609
13
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
13
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
13
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
13
    return Status::OK();
613
13
}
_ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Line
Count
Source
548
158
Status PipelineXLocalState<SharedStateArg>::init(RuntimeState* state, LocalStateInfo& info) {
549
158
    _operator_profile.reset(new RuntimeProfile(_parent->get_name() + name_suffix()));
550
158
    _common_profile.reset(new RuntimeProfile(profile::COMMON_COUNTERS));
551
158
    _custom_profile.reset(new RuntimeProfile(profile::CUSTOM_COUNTERS));
552
158
    _operator_profile->set_metadata(_parent->node_id());
553
    // indent is false so that source operator will have same
554
    // indentation_level with its parent operator.
555
158
    info.parent_profile->add_child(_operator_profile.get(), /*indent=*/false);
556
158
    _operator_profile->add_child(_common_profile.get(), true);
557
158
    _operator_profile->add_child(_custom_profile.get(), true);
558
158
    constexpr auto is_fake_shared = std::is_same_v<SharedStateArg, FakeSharedState>;
559
158
    if constexpr (!is_fake_shared) {
560
160
        if (info.shared_state_map.find(_parent->operator_id()) != info.shared_state_map.end()) {
561
160
            _shared_state = info.shared_state_map.at(_parent->operator_id())
562
160
                                    .first.get()
563
160
                                    ->template cast<SharedStateArg>();
564
565
160
            _dependency = _shared_state->get_dep_by_channel_id(info.task_idx).front().get();
566
160
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
567
160
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
568
18.4E
        } else if (info.shared_state) {
569
0
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
570
0
                DCHECK(false);
571
0
            }
572
            // For UnionSourceOperator without children, there is no shared state.
573
0
            _shared_state = info.shared_state->template cast<SharedStateArg>();
574
575
0
            _dependency = _shared_state->create_source_dependency(
576
0
                    _parent->operator_id(), _parent->node_id(), _parent->get_name());
577
0
            _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
578
0
                    _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
579
18.4E
        } else {
580
18.4E
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedStateArg>) {
581
18.4E
                DCHECK(false);
582
18.4E
            }
583
18.4E
        }
584
158
    }
585
586
160
    if (must_set_shared_state() && _shared_state == nullptr) {
587
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
588
0
    }
589
590
158
    _rows_returned_counter =
591
158
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::ROWS_PRODUCED, TUnit::UNIT, 1);
592
158
    _blocks_returned_counter =
593
158
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::BLOCKS_PRODUCED, TUnit::UNIT, 1);
594
158
    _output_block_bytes_counter =
595
158
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
596
158
    _max_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
597
158
            _common_profile, profile::MAX_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
598
158
    _min_output_block_bytes_counter = ADD_COUNTER_WITH_LEVEL(
599
158
            _common_profile, profile::MIN_OUTPUT_BLOCK_BYTES, TUnit::BYTES, 1);
600
158
    _projection_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::PROJECTION_TIME, 2);
601
158
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
602
158
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
603
158
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
604
158
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
605
158
    _memory_used_counter =
606
158
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
607
158
    _common_profile->add_info_string("IsColocate",
608
158
                                     std::to_string(_parent->is_colocated_operator()));
609
158
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
610
158
    _common_profile->add_info_string("FollowedByShuffledOperator",
611
158
                                     std::to_string(_parent->followed_by_shuffled_operator()));
612
158
    return Status::OK();
613
158
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEE4initEPNS_12RuntimeStateERNS_14LocalStateInfoE
614
615
template <typename SharedStateArg>
616
28.0k
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
28.0k
    _conjuncts.resize(_parent->_conjuncts.size());
618
29.4k
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
1.42k
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
1.42k
    }
621
28.0k
    if (_parent->has_projection()) {
622
25.7k
        const auto& projection = *_parent->_projection;
623
25.7k
        _projections.resize(projection.projections.size());
624
102k
        for (size_t i = 0; i < _projections.size(); i++) {
625
76.5k
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
76.5k
        }
627
25.7k
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
25.8k
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
130
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
780
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
650
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
650
                        state, _intermediate_projections[i][j]));
633
650
            }
634
130
        }
635
25.7k
    }
636
28.0k
    return Status::OK();
637
28.0k
}
_ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
24.0k
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
24.0k
    _conjuncts.resize(_parent->_conjuncts.size());
618
24.0k
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
24.0k
    if (_parent->has_projection()) {
622
24.0k
        const auto& projection = *_parent->_projection;
623
24.0k
        _projections.resize(projection.projections.size());
624
89.9k
        for (size_t i = 0; i < _projections.size(); i++) {
625
65.9k
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
65.9k
        }
627
24.0k
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
24.0k
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
24.0k
    }
636
24.0k
    return Status::OK();
637
24.0k
}
_ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
3
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
3
    _conjuncts.resize(_parent->_conjuncts.size());
618
3
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
3
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
3
    return Status::OK();
637
3
}
_ZN5doris19PipelineXLocalStateINS_15SortSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
162
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
162
    _conjuncts.resize(_parent->_conjuncts.size());
618
162
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
162
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
162
    return Status::OK();
637
162
}
_ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
13
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
13
    _conjuncts.resize(_parent->_conjuncts.size());
618
13
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
13
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
13
    return Status::OK();
637
13
}
_ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
248
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
248
    _conjuncts.resize(_parent->_conjuncts.size());
618
248
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
248
    if (_parent->has_projection()) {
622
248
        const auto& projection = *_parent->_projection;
623
248
        _projections.resize(projection.projections.size());
624
2.23k
        for (size_t i = 0; i < _projections.size(); i++) {
625
1.98k
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
1.98k
        }
627
248
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
248
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
248
    }
636
248
    return Status::OK();
637
248
}
_ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
11
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
11
    _conjuncts.resize(_parent->_conjuncts.size());
618
11
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
11
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
11
    return Status::OK();
637
11
}
_ZN5doris19PipelineXLocalStateINS_14AggSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
743
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
743
    _conjuncts.resize(_parent->_conjuncts.size());
618
743
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
743
    if (_parent->has_projection()) {
622
496
        const auto& projection = *_parent->_projection;
623
496
        _projections.resize(projection.projections.size());
624
2.85k
        for (size_t i = 0; i < _projections.size(); i++) {
625
2.35k
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
2.35k
        }
627
496
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
496
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
496
    }
636
743
    return Status::OK();
637
743
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE4openEPNS_12RuntimeStateE
_ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
122
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
122
    _conjuncts.resize(_parent->_conjuncts.size());
618
122
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
122
    if (_parent->has_projection()) {
622
108
        const auto& projection = *_parent->_projection;
623
108
        _projections.resize(projection.projections.size());
624
324
        for (size_t i = 0; i < _projections.size(); i++) {
625
216
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
216
        }
627
108
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
108
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
108
    }
636
122
    return Status::OK();
637
122
}
_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
2.02k
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
2.02k
    _conjuncts.resize(_parent->_conjuncts.size());
618
3.29k
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
1.26k
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
1.26k
    }
621
2.02k
    if (_parent->has_projection()) {
622
826
        const auto& projection = *_parent->_projection;
623
826
        _projections.resize(projection.projections.size());
624
6.61k
        for (size_t i = 0; i < _projections.size(); i++) {
625
5.78k
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
5.78k
        }
627
826
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
956
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
130
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
780
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
650
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
650
                        state, _intermediate_projections[i][j]));
633
650
            }
634
130
        }
635
826
    }
636
2.02k
    return Status::OK();
637
2.02k
}
_ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
20
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
20
    _conjuncts.resize(_parent->_conjuncts.size());
618
20
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
20
    if (_parent->has_projection()) {
622
16
        const auto& projection = *_parent->_projection;
623
16
        _projections.resize(projection.projections.size());
624
288
        for (size_t i = 0; i < _projections.size(); i++) {
625
272
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
272
        }
627
16
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
16
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
16
    }
636
20
    return Status::OK();
637
20
}
_ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
11
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
11
    _conjuncts.resize(_parent->_conjuncts.size());
618
11
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
11
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
11
    return Status::OK();
637
11
}
_ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
366
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
366
    _conjuncts.resize(_parent->_conjuncts.size());
618
522
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
156
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
156
    }
621
366
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
366
    return Status::OK();
637
366
}
_ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
102
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
102
    _conjuncts.resize(_parent->_conjuncts.size());
618
102
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
102
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
102
    return Status::OK();
637
102
}
_ZN5doris19PipelineXLocalStateINS_14SetSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
13
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
13
    _conjuncts.resize(_parent->_conjuncts.size());
618
13
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
13
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
13
    return Status::OK();
637
13
}
_ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE4openEPNS_12RuntimeStateE
Line
Count
Source
616
160
Status PipelineXLocalState<SharedStateArg>::open(RuntimeState* state) {
617
160
    _conjuncts.resize(_parent->_conjuncts.size());
618
160
    for (size_t i = 0; i < _conjuncts.size(); i++) {
619
0
        RETURN_IF_ERROR(_parent->_conjuncts[i]->clone(state, _conjuncts[i]));
620
0
    }
621
160
    if (_parent->has_projection()) {
622
0
        const auto& projection = *_parent->_projection;
623
0
        _projections.resize(projection.projections.size());
624
0
        for (size_t i = 0; i < _projections.size(); i++) {
625
0
            RETURN_IF_ERROR(projection.projections[i]->clone(state, _projections[i]));
626
0
        }
627
0
        _intermediate_projections.resize(projection.intermediate_projections.size());
628
0
        for (int i = 0; i < projection.intermediate_projections.size(); i++) {
629
0
            _intermediate_projections[i].resize(projection.intermediate_projections[i].size());
630
0
            for (int j = 0; j < projection.intermediate_projections[i].size(); j++) {
631
0
                RETURN_IF_ERROR(projection.intermediate_projections[i][j]->clone(
632
0
                        state, _intermediate_projections[i][j]));
633
0
            }
634
0
        }
635
0
    }
636
160
    return Status::OK();
637
160
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEE4openEPNS_12RuntimeStateE
638
639
template <typename SharedStateArg>
640
152
Status PipelineXLocalState<SharedStateArg>::terminate(RuntimeState* state) {
641
152
    if (_terminated) {
642
0
        return Status::OK();
643
0
    }
644
152
    _terminated = true;
645
152
    return Status::OK();
646
152
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_15SortSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_14AggSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE9terminateEPNS_12RuntimeStateE
_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEE9terminateEPNS_12RuntimeStateE
Line
Count
Source
640
152
Status PipelineXLocalState<SharedStateArg>::terminate(RuntimeState* state) {
641
152
    if (_terminated) {
642
0
        return Status::OK();
643
0
    }
644
152
    _terminated = true;
645
152
    return Status::OK();
646
152
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_14SetSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEE9terminateEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEE9terminateEPNS_12RuntimeStateE
647
648
template <typename SharedStateArg>
649
27.9k
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
27.9k
    if (_closed) {
651
273
        return Status::OK();
652
273
    }
653
27.6k
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
25.6k
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
25.6k
    }
656
27.6k
    _closed = true;
657
27.6k
    return Status::OK();
658
27.9k
}
_ZN5doris19PipelineXLocalStateINS_19HashJoinSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
24.0k
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
24.0k
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
24.0k
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
24.0k
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
24.0k
    }
656
24.0k
    _closed = true;
657
24.0k
    return Status::OK();
658
24.0k
}
_ZN5doris19PipelineXLocalStateINS_30PartitionedHashJoinSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
4
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
4
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
4
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
4
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
4
    }
656
4
    _closed = true;
657
4
    return Status::OK();
658
4
}
_ZN5doris19PipelineXLocalStateINS_15SortSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
280
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
280
    if (_closed) {
651
140
        return Status::OK();
652
140
    }
653
140
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
140
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
140
    }
656
140
    _closed = true;
657
140
    return Status::OK();
658
280
}
_ZN5doris19PipelineXLocalStateINS_20SpillSortSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
13
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
13
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
13
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
13
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
13
    }
656
13
    _closed = true;
657
13
    return Status::OK();
658
13
}
_ZN5doris19PipelineXLocalStateINS_25NestedLoopJoinSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
248
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
248
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
248
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
248
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
248
    }
656
248
    _closed = true;
657
248
    return Status::OK();
658
248
}
_ZN5doris19PipelineXLocalStateINS_19AnalyticSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
1
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
1
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
1
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
1
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
1
    }
656
1
    _closed = true;
657
1
    return Status::OK();
658
1
}
_ZN5doris19PipelineXLocalStateINS_14AggSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
596
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
596
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
596
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
596
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
596
    }
656
596
    _closed = true;
657
596
    return Status::OK();
658
596
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_22BucketedAggSharedStateEE5closeEPNS_12RuntimeStateE
_ZN5doris19PipelineXLocalStateINS_25PartitionedAggSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
117
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
117
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
117
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
117
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
117
    }
656
117
    _closed = true;
657
117
    return Status::OK();
658
117
}
_ZN5doris19PipelineXLocalStateINS_15FakeSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
2.14k
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
2.14k
    if (_closed) {
651
133
        return Status::OK();
652
133
    }
653
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
    }
656
2.00k
    _closed = true;
657
2.00k
    return Status::OK();
658
2.14k
}
_ZN5doris19PipelineXLocalStateINS_16UnionSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
18
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
18
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
18
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
18
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
18
    }
656
18
    _closed = true;
657
18
    return Status::OK();
658
18
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_20DataQueueSharedStateEE5closeEPNS_12RuntimeStateE
_ZN5doris19PipelineXLocalStateINS_20MultiCastSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
370
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
370
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
370
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
370
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
370
    }
656
370
    _closed = true;
657
370
    return Status::OK();
658
370
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_28PartitionSortNodeSharedStateEE5closeEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_14SetSharedStateEE5closeEPNS_12RuntimeStateE
_ZN5doris19PipelineXLocalStateINS_24LocalExchangeSharedStateEE5closeEPNS_12RuntimeStateE
Line
Count
Source
649
160
Status PipelineXLocalState<SharedStateArg>::close(RuntimeState* state) {
650
160
    if (_closed) {
651
0
        return Status::OK();
652
0
    }
653
160
    if constexpr (!std::is_same_v<SharedStateArg, FakeSharedState>) {
654
160
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
655
160
    }
656
160
    _closed = true;
657
160
    return Status::OK();
658
160
}
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_16BasicSharedStateEE5closeEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris19PipelineXLocalStateINS_17RecCTESharedStateEE5closeEPNS_12RuntimeStateE
659
660
template <typename SharedState>
661
75.7k
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
75.7k
    _operator_profile =
664
75.7k
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
75.7k
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
75.7k
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
75.7k
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
75.7k
    _operator_profile->add_child(_common_profile, true);
673
75.7k
    _operator_profile->add_child(_custom_profile, true);
674
675
75.7k
    _operator_profile->set_metadata(_parent->node_id());
676
75.7k
    _wait_for_finish_dependency_timer =
677
75.7k
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
75.7k
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
75.7k
    if constexpr (!is_fake_shared) {
680
74.4k
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
74.4k
            info.shared_state_map.end()) {
682
10
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
10
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
10
            }
685
10
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
10
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
10
                                                  ? 0
688
10
                                                  : info.task_idx]
689
10
                                  .get();
690
10
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
74.4k
        } else {
692
74.4k
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
0
                DCHECK(false);
694
0
            }
695
74.4k
            _shared_state = info.shared_state->template cast<SharedState>();
696
74.4k
            _dependency = _shared_state->create_sink_dependency(
697
74.4k
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
74.4k
        }
699
74.4k
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
74.4k
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
74.4k
    }
702
703
75.7k
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
75.7k
    _rows_input_counter =
708
75.7k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
75.7k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
75.7k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
75.7k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
75.7k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
75.7k
    _memory_used_counter =
714
75.7k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
75.7k
    _common_profile->add_info_string("IsColocate",
716
75.7k
                                     std::to_string(_parent->is_colocated_operator()));
717
75.7k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
75.7k
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
75.7k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
75.7k
    return Status::OK();
721
75.7k
}
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
72.0k
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
72.0k
    _operator_profile =
664
72.0k
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
72.0k
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
72.0k
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
72.0k
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
72.0k
    _operator_profile->add_child(_common_profile, true);
673
72.0k
    _operator_profile->add_child(_custom_profile, true);
674
675
72.0k
    _operator_profile->set_metadata(_parent->node_id());
676
72.0k
    _wait_for_finish_dependency_timer =
677
72.0k
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
72.0k
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
72.0k
    if constexpr (!is_fake_shared) {
680
72.0k
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
72.0k
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
72.0k
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
72.0k
            _shared_state = info.shared_state->template cast<SharedState>();
696
72.0k
            _dependency = _shared_state->create_sink_dependency(
697
72.0k
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
72.0k
        }
699
72.0k
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
72.0k
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
72.0k
    }
702
703
72.0k
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
72.0k
    _rows_input_counter =
708
72.0k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
72.0k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
72.0k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
72.0k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
72.0k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
72.0k
    _memory_used_counter =
714
72.0k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
72.0k
    _common_profile->add_info_string("IsColocate",
716
72.0k
                                     std::to_string(_parent->is_colocated_operator()));
717
72.0k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
72.0k
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
72.0k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
72.0k
    return Status::OK();
721
72.0k
}
_ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
2
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
2
    _operator_profile =
664
2
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
2
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
2
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
2
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
2
    _operator_profile->add_child(_common_profile, true);
673
2
    _operator_profile->add_child(_custom_profile, true);
674
675
2
    _operator_profile->set_metadata(_parent->node_id());
676
2
    _wait_for_finish_dependency_timer =
677
2
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
2
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
2
    if constexpr (!is_fake_shared) {
680
2
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
2
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
2
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
2
            _shared_state = info.shared_state->template cast<SharedState>();
696
2
            _dependency = _shared_state->create_sink_dependency(
697
2
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
2
        }
699
2
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
2
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
2
    }
702
703
2
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
2
    _rows_input_counter =
708
2
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
2
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
2
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
2
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
2
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
2
    _memory_used_counter =
714
2
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
2
    _common_profile->add_info_string("IsColocate",
716
2
                                     std::to_string(_parent->is_colocated_operator()));
717
2
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
2
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
2
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
2
    return Status::OK();
721
2
}
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
169
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
169
    _operator_profile =
664
169
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
169
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
169
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
169
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
169
    _operator_profile->add_child(_common_profile, true);
673
169
    _operator_profile->add_child(_custom_profile, true);
674
675
169
    _operator_profile->set_metadata(_parent->node_id());
676
169
    _wait_for_finish_dependency_timer =
677
169
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
169
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
169
    if constexpr (!is_fake_shared) {
680
169
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
169
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
169
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
169
            _shared_state = info.shared_state->template cast<SharedState>();
696
169
            _dependency = _shared_state->create_sink_dependency(
697
169
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
169
        }
699
169
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
169
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
169
    }
702
703
169
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
169
    _rows_input_counter =
708
169
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
169
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
169
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
169
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
169
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
169
    _memory_used_counter =
714
169
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
169
    _common_profile->add_info_string("IsColocate",
716
169
                                     std::to_string(_parent->is_colocated_operator()));
717
169
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
169
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
169
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
169
    return Status::OK();
721
169
}
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
20
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
20
    _operator_profile =
664
20
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
20
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
20
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
20
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
20
    _operator_profile->add_child(_common_profile, true);
673
20
    _operator_profile->add_child(_custom_profile, true);
674
675
20
    _operator_profile->set_metadata(_parent->node_id());
676
20
    _wait_for_finish_dependency_timer =
677
20
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
20
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
20
    if constexpr (!is_fake_shared) {
680
20
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
20
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
20
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
20
            _shared_state = info.shared_state->template cast<SharedState>();
696
20
            _dependency = _shared_state->create_sink_dependency(
697
20
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
20
        }
699
20
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
20
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
20
    }
702
703
20
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
20
    _rows_input_counter =
708
20
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
20
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
20
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
20
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
20
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
20
    _memory_used_counter =
714
20
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
20
    _common_profile->add_info_string("IsColocate",
716
20
                                     std::to_string(_parent->is_colocated_operator()));
717
20
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
20
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
20
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
20
    return Status::OK();
721
20
}
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
249
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
249
    _operator_profile =
664
249
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
249
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
249
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
249
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
249
    _operator_profile->add_child(_common_profile, true);
673
249
    _operator_profile->add_child(_custom_profile, true);
674
675
249
    _operator_profile->set_metadata(_parent->node_id());
676
249
    _wait_for_finish_dependency_timer =
677
249
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
249
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
249
    if constexpr (!is_fake_shared) {
680
249
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
249
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
249
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
249
            _shared_state = info.shared_state->template cast<SharedState>();
696
249
            _dependency = _shared_state->create_sink_dependency(
697
249
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
249
        }
699
249
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
249
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
249
    }
702
703
249
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
249
    _rows_input_counter =
708
249
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
249
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
249
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
249
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
249
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
249
    _memory_used_counter =
714
249
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
249
    _common_profile->add_info_string("IsColocate",
716
249
                                     std::to_string(_parent->is_colocated_operator()));
717
249
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
249
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
249
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
249
    return Status::OK();
721
249
}
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
11
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
11
    _operator_profile =
664
11
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
11
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
11
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
11
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
11
    _operator_profile->add_child(_common_profile, true);
673
11
    _operator_profile->add_child(_custom_profile, true);
674
675
11
    _operator_profile->set_metadata(_parent->node_id());
676
11
    _wait_for_finish_dependency_timer =
677
11
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
11
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
11
    if constexpr (!is_fake_shared) {
680
11
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
11
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
11
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
11
            _shared_state = info.shared_state->template cast<SharedState>();
696
11
            _dependency = _shared_state->create_sink_dependency(
697
11
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
11
        }
699
11
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
11
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
11
    }
702
703
11
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
11
    _rows_input_counter =
708
11
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
11
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
11
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
11
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
11
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
11
    _memory_used_counter =
714
11
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
11
    _common_profile->add_info_string("IsColocate",
716
11
                                     std::to_string(_parent->is_colocated_operator()));
717
11
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
11
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
11
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
11
    return Status::OK();
721
11
}
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
753
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
753
    _operator_profile =
664
753
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
753
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
753
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
753
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
753
    _operator_profile->add_child(_common_profile, true);
673
753
    _operator_profile->add_child(_custom_profile, true);
674
675
753
    _operator_profile->set_metadata(_parent->node_id());
676
753
    _wait_for_finish_dependency_timer =
677
753
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
753
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
753
    if constexpr (!is_fake_shared) {
680
753
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
753
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
753
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
753
            _shared_state = info.shared_state->template cast<SharedState>();
696
753
            _dependency = _shared_state->create_sink_dependency(
697
753
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
753
        }
699
753
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
753
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
753
    }
702
703
753
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
753
    _rows_input_counter =
708
753
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
753
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
753
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
753
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
753
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
753
    _memory_used_counter =
714
753
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
753
    _common_profile->add_info_string("IsColocate",
716
753
                                     std::to_string(_parent->is_colocated_operator()));
717
753
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
753
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
753
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
753
    return Status::OK();
721
753
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
128
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
128
    _operator_profile =
664
128
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
128
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
128
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
128
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
128
    _operator_profile->add_child(_common_profile, true);
673
128
    _operator_profile->add_child(_custom_profile, true);
674
675
128
    _operator_profile->set_metadata(_parent->node_id());
676
128
    _wait_for_finish_dependency_timer =
677
128
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
128
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
128
    if constexpr (!is_fake_shared) {
680
128
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
128
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
128
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
128
            _shared_state = info.shared_state->template cast<SharedState>();
696
128
            _dependency = _shared_state->create_sink_dependency(
697
128
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
128
        }
699
128
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
128
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
128
    }
702
703
128
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
128
    _rows_input_counter =
708
128
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
128
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
128
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
128
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
128
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
128
    _memory_used_counter =
714
128
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
128
    _common_profile->add_info_string("IsColocate",
716
128
                                     std::to_string(_parent->is_colocated_operator()));
717
128
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
128
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
128
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
128
    return Status::OK();
721
128
}
_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
1.28k
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
1.28k
    _operator_profile =
664
1.28k
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
1.28k
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
1.28k
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
1.28k
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
1.28k
    _operator_profile->add_child(_common_profile, true);
673
1.28k
    _operator_profile->add_child(_custom_profile, true);
674
675
1.28k
    _operator_profile->set_metadata(_parent->node_id());
676
1.28k
    _wait_for_finish_dependency_timer =
677
1.28k
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
1.28k
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
    if constexpr (!is_fake_shared) {
680
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
                                                  ? 0
688
                                                  : info.task_idx]
689
                                  .get();
690
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
            _shared_state = info.shared_state->template cast<SharedState>();
696
            _dependency = _shared_state->create_sink_dependency(
697
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
        }
699
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
    }
702
703
1.28k
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
1.28k
    _rows_input_counter =
708
1.28k
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
1.28k
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
1.28k
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
1.28k
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
1.28k
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
1.28k
    _memory_used_counter =
714
1.28k
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
1.28k
    _common_profile->add_info_string("IsColocate",
716
1.28k
                                     std::to_string(_parent->is_colocated_operator()));
717
1.28k
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
1.28k
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
1.28k
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
1.28k
    return Status::OK();
721
1.28k
}
_ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
3
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
3
    _operator_profile =
664
3
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
3
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
3
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
3
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
3
    _operator_profile->add_child(_common_profile, true);
673
3
    _operator_profile->add_child(_custom_profile, true);
674
675
3
    _operator_profile->set_metadata(_parent->node_id());
676
3
    _wait_for_finish_dependency_timer =
677
3
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
3
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
3
    if constexpr (!is_fake_shared) {
680
3
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
3
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
3
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
3
            _shared_state = info.shared_state->template cast<SharedState>();
696
3
            _dependency = _shared_state->create_sink_dependency(
697
3
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
3
        }
699
3
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
3
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
3
    }
702
703
3
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
3
    _rows_input_counter =
708
3
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
3
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
3
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
3
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
3
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
3
    _memory_used_counter =
714
3
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
3
    _common_profile->add_info_string("IsColocate",
716
3
                                     std::to_string(_parent->is_colocated_operator()));
717
3
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
3
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
3
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
3
    return Status::OK();
721
3
}
_ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
102
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
102
    _operator_profile =
664
102
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
102
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
102
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
102
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
102
    _operator_profile->add_child(_common_profile, true);
673
102
    _operator_profile->add_child(_custom_profile, true);
674
675
102
    _operator_profile->set_metadata(_parent->node_id());
676
102
    _wait_for_finish_dependency_timer =
677
102
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
102
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
102
    if constexpr (!is_fake_shared) {
680
102
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
102
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
102
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
102
            _shared_state = info.shared_state->template cast<SharedState>();
696
102
            _dependency = _shared_state->create_sink_dependency(
697
102
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
102
        }
699
102
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
102
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
102
    }
702
703
102
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
102
    _rows_input_counter =
708
102
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
102
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
102
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
102
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
102
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
102
    _memory_used_counter =
714
102
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
102
    _common_profile->add_info_string("IsColocate",
716
102
                                     std::to_string(_parent->is_colocated_operator()));
717
102
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
102
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
102
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
102
    return Status::OK();
721
102
}
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
124
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
124
    _operator_profile =
664
124
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
124
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
124
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
124
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
124
    _operator_profile->add_child(_common_profile, true);
673
124
    _operator_profile->add_child(_custom_profile, true);
674
675
124
    _operator_profile->set_metadata(_parent->node_id());
676
124
    _wait_for_finish_dependency_timer =
677
124
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
124
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
124
    if constexpr (!is_fake_shared) {
680
124
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
124
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
124
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
124
            _shared_state = info.shared_state->template cast<SharedState>();
696
124
            _dependency = _shared_state->create_sink_dependency(
697
124
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
124
        }
699
124
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
124
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
124
    }
702
703
124
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
124
    _rows_input_counter =
708
124
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
124
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
124
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
124
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
124
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
124
    _memory_used_counter =
714
124
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
124
    _common_profile->add_info_string("IsColocate",
716
124
                                     std::to_string(_parent->is_colocated_operator()));
717
124
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
124
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
124
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
124
    return Status::OK();
721
124
}
_ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
29
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
29
    _operator_profile =
664
29
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
29
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
29
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
29
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
29
    _operator_profile->add_child(_common_profile, true);
673
29
    _operator_profile->add_child(_custom_profile, true);
674
675
29
    _operator_profile->set_metadata(_parent->node_id());
676
29
    _wait_for_finish_dependency_timer =
677
29
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
29
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
29
    if constexpr (!is_fake_shared) {
680
29
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
29
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
29
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
29
            _shared_state = info.shared_state->template cast<SharedState>();
696
29
            _dependency = _shared_state->create_sink_dependency(
697
29
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
29
        }
699
29
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
29
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
29
    }
702
703
29
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
29
    _rows_input_counter =
708
29
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
29
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
29
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
29
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
29
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
29
    _memory_used_counter =
714
29
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
29
    _common_profile->add_info_string("IsColocate",
716
29
                                     std::to_string(_parent->is_colocated_operator()));
717
29
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
29
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
29
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
29
    return Status::OK();
721
29
}
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
10
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
10
    _operator_profile =
664
10
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
10
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
10
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
10
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
10
    _operator_profile->add_child(_common_profile, true);
673
10
    _operator_profile->add_child(_custom_profile, true);
674
675
10
    _operator_profile->set_metadata(_parent->node_id());
676
10
    _wait_for_finish_dependency_timer =
677
10
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
10
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
10
    if constexpr (!is_fake_shared) {
680
10
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
10
            info.shared_state_map.end()) {
682
10
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
10
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
10
            }
685
10
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
10
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
10
                                                  ? 0
688
10
                                                  : info.task_idx]
689
10
                                  .get();
690
10
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
10
        } else {
692
0
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
0
                DCHECK(false);
694
0
            }
695
0
            _shared_state = info.shared_state->template cast<SharedState>();
696
0
            _dependency = _shared_state->create_sink_dependency(
697
0
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
0
        }
699
10
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
10
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
10
    }
702
703
10
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
10
    _rows_input_counter =
708
10
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
10
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
10
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
10
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
10
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
10
    _memory_used_counter =
714
10
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
10
    _common_profile->add_info_string("IsColocate",
716
10
                                     std::to_string(_parent->is_colocated_operator()));
717
10
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
10
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
10
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
10
    return Status::OK();
721
10
}
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
764
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
764
    _operator_profile =
664
764
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
764
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
764
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
764
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
764
    _operator_profile->add_child(_common_profile, true);
673
764
    _operator_profile->add_child(_custom_profile, true);
674
675
764
    _operator_profile->set_metadata(_parent->node_id());
676
764
    _wait_for_finish_dependency_timer =
677
764
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
764
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
764
    if constexpr (!is_fake_shared) {
680
764
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
764
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
764
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
764
            _shared_state = info.shared_state->template cast<SharedState>();
696
764
            _dependency = _shared_state->create_sink_dependency(
697
764
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
764
        }
699
764
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
764
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
764
    }
702
703
764
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
764
    _rows_input_counter =
708
764
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
764
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
764
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
764
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
764
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
764
    _memory_used_counter =
714
764
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
764
    _common_profile->add_info_string("IsColocate",
716
764
                                     std::to_string(_parent->is_colocated_operator()));
717
764
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
764
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
764
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
764
    return Status::OK();
721
764
}
_ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
661
11
Status PipelineXSinkLocalState<SharedState>::init(RuntimeState* state, LocalSinkStateInfo& info) {
662
    // create profile
663
11
    _operator_profile =
664
11
            state->obj_pool()->add(new RuntimeProfile(_parent->get_name() + name_suffix()));
665
11
    _common_profile = state->obj_pool()->add(new RuntimeProfile(profile::COMMON_COUNTERS));
666
11
    _custom_profile = state->obj_pool()->add(new RuntimeProfile(profile::CUSTOM_COUNTERS));
667
668
    // indentation is true
669
    // The parent profile of sink operator is usually a RuntimeProfile called PipelineTask.
670
    // So we should set the indentation to true.
671
11
    info.parent_profile->add_child(_operator_profile, /*indent=*/true);
672
11
    _operator_profile->add_child(_common_profile, true);
673
11
    _operator_profile->add_child(_custom_profile, true);
674
675
11
    _operator_profile->set_metadata(_parent->node_id());
676
11
    _wait_for_finish_dependency_timer =
677
11
            ADD_TIMER(_common_profile, profile::PENDING_FINISH_DEPENDENCY);
678
11
    constexpr auto is_fake_shared = std::is_same_v<SharedState, FakeSharedState>;
679
11
    if constexpr (!is_fake_shared) {
680
11
        if (info.shared_state_map.find(_parent->dests_id().front()) !=
681
11
            info.shared_state_map.end()) {
682
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
683
                DCHECK(info.shared_state_map.at(_parent->dests_id().front()).second.size() == 1);
684
            }
685
0
            _dependency = info.shared_state_map.at(_parent->dests_id().front())
686
0
                                  .second[std::is_same_v<LocalExchangeSharedState, SharedState>
687
0
                                                  ? 0
688
0
                                                  : info.task_idx]
689
0
                                  .get();
690
0
            _shared_state = _dependency->shared_state()->template cast<SharedState>();
691
11
        } else {
692
            if constexpr (std::is_same_v<LocalExchangeSharedState, SharedState>) {
693
                DCHECK(false);
694
            }
695
11
            _shared_state = info.shared_state->template cast<SharedState>();
696
11
            _dependency = _shared_state->create_sink_dependency(
697
11
                    _parent->dests_id().front(), _parent->node_id(), _parent->get_name());
698
11
        }
699
11
        _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
700
11
                _common_profile, "WaitForDependency[" + _dependency->name() + "]Time", 1);
701
11
    }
702
703
11
    if (must_set_shared_state() && _shared_state == nullptr) {
704
0
        return Status::InternalError("must set shared state, in {}", _parent->get_name());
705
0
    }
706
707
11
    _rows_input_counter =
708
11
            ADD_COUNTER_WITH_LEVEL(_common_profile, profile::INPUT_ROWS, TUnit::UNIT, 1);
709
11
    _init_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::INIT_TIME, 2);
710
11
    _open_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::OPEN_TIME, 2);
711
11
    _close_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::CLOSE_TIME, 2);
712
11
    _exec_timer = ADD_TIMER_WITH_LEVEL(_common_profile, profile::EXEC_TIME, 1);
713
11
    _memory_used_counter =
714
11
            _common_profile->AddHighWaterMarkCounter(profile::MEMORY_USAGE, TUnit::BYTES, "", 1);
715
11
    _common_profile->add_info_string("IsColocate",
716
11
                                     std::to_string(_parent->is_colocated_operator()));
717
11
    _common_profile->add_info_string("IsShuffled", std::to_string(_parent->is_shuffled_operator()));
718
11
    _common_profile->add_info_string("FollowedByShuffledOperator",
719
11
                                     std::to_string(_parent->followed_by_shuffled_operator()));
720
11
    return Status::OK();
721
11
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
722
723
template <typename SharedState>
724
75.3k
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
75.3k
    if (_closed) {
726
2
        return Status::OK();
727
2
    }
728
75.3k
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
74.0k
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
74.0k
    }
731
75.3k
    _closed = true;
732
75.3k
    return Status::OK();
733
75.3k
}
_ZN5doris23PipelineXSinkLocalStateINS_19HashJoinSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
72.0k
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
72.0k
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
72.0k
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
72.0k
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
72.0k
    }
731
72.0k
    _closed = true;
732
72.0k
    return Status::OK();
733
72.0k
}
_ZN5doris23PipelineXSinkLocalStateINS_30PartitionedHashJoinSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
1
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
1
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
1
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
1
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
1
    }
731
1
    _closed = true;
732
1
    return Status::OK();
733
1
}
_ZN5doris23PipelineXSinkLocalStateINS_15SortSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
140
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
140
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
140
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
140
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
140
    }
731
140
    _closed = true;
732
140
    return Status::OK();
733
140
}
_ZN5doris23PipelineXSinkLocalStateINS_20SpillSortSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
11
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
11
    if (_closed) {
726
2
        return Status::OK();
727
2
    }
728
9
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
9
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
9
    }
731
9
    _closed = true;
732
9
    return Status::OK();
733
11
}
_ZN5doris23PipelineXSinkLocalStateINS_25NestedLoopJoinSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
249
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
249
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
249
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
249
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
249
    }
731
249
    _closed = true;
732
249
    return Status::OK();
733
249
}
_ZN5doris23PipelineXSinkLocalStateINS_19AnalyticSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
1
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
1
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
1
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
1
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
1
    }
731
1
    _closed = true;
732
1
    return Status::OK();
733
1
}
_ZN5doris23PipelineXSinkLocalStateINS_14AggSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
596
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
596
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
596
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
596
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
596
    }
731
596
    _closed = true;
732
596
    return Status::OK();
733
596
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_22BucketedAggSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
_ZN5doris23PipelineXSinkLocalStateINS_25PartitionedAggSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
117
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
117
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
117
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
117
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
117
    }
731
117
    _closed = true;
732
117
    return Status::OK();
733
117
}
_ZN5doris23PipelineXSinkLocalStateINS_15FakeSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
1.27k
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
1.27k
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
    }
731
1.27k
    _closed = true;
732
1.27k
    return Status::OK();
733
1.27k
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_16UnionSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_28PartitionSortNodeSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
_ZN5doris23PipelineXSinkLocalStateINS_20MultiCastSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
124
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
124
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
124
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
124
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
124
    }
731
124
    _closed = true;
732
124
    return Status::OK();
733
124
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_14SetSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
_ZN5doris23PipelineXSinkLocalStateINS_24LocalExchangeSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
10
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
10
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
10
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
10
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
10
    }
731
10
    _closed = true;
732
10
    return Status::OK();
733
10
}
_ZN5doris23PipelineXSinkLocalStateINS_16BasicSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
724
748
Status PipelineXSinkLocalState<SharedState>::close(RuntimeState* state, Status exec_status) {
725
748
    if (_closed) {
726
0
        return Status::OK();
727
0
    }
728
748
    if constexpr (!std::is_same_v<SharedState, FakeSharedState>) {
729
748
        COUNTER_SET(_wait_for_dependency_timer, _dependency->watcher_elapse_time());
730
748
    }
731
748
    _closed = true;
732
748
    return Status::OK();
733
748
}
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_20DataQueueSharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris23PipelineXSinkLocalStateINS_17RecCTESharedStateEE5closeEPNS_12RuntimeStateENS_6StatusE
734
735
template <typename LocalStateType>
736
Status StreamingOperatorX<LocalStateType>::get_block_impl(RuntimeState* state, Block* block,
737
4.13k
                                                          bool* eos) {
738
4.13k
    RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(state, block, eos));
739
4.13k
    return pull(state, block, eos);
740
4.13k
}
_ZN5doris18StreamingOperatorXINS_23AssertNumRowsLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Line
Count
Source
737
4
                                                          bool* eos) {
738
4
    RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(state, block, eos));
739
4
    return pull(state, block, eos);
740
4
}
_ZN5doris18StreamingOperatorXINS_16SelectLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Line
Count
Source
737
4.13k
                                                          bool* eos) {
738
4.13k
    RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(state, block, eos));
739
4.13k
    return pull(state, block, eos);
740
4.13k
}
741
742
template <typename LocalStateType>
743
Status StatefulOperatorX<LocalStateType>::get_block_impl(RuntimeState* state, Block* block,
744
516
                                                         bool* eos) {
745
516
    auto& local_state = get_local_state(state);
746
516
    if (need_more_input_data(state)) {
747
510
        local_state._child_block->clear_column_data(
748
510
                OperatorX<LocalStateType>::_child->operator_row_desc_after_projection()
749
510
                        .num_materialized_slots());
750
510
        RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(
751
510
                state, local_state._child_block.get(), &local_state._child_eos));
752
510
        *eos = local_state._child_eos;
753
510
        if (local_state._child_block->rows() == 0 && !local_state._child_eos) {
754
126
            return Status::OK();
755
126
        }
756
384
        {
757
384
            SCOPED_TIMER(local_state.exec_time_counter());
758
384
            RETURN_IF_ERROR(push(state, local_state._child_block.get(), local_state._child_eos));
759
384
        }
760
384
    }
761
762
390
    if (!need_more_input_data(state)) {
763
390
        SCOPED_TIMER(local_state.exec_time_counter());
764
390
        bool new_eos = false;
765
390
        RETURN_IF_ERROR(pull(state, block, &new_eos));
766
390
        if (new_eos) {
767
283
            *eos = true;
768
283
        } else if (!need_more_input_data(state)) {
769
0
            *eos = false;
770
0
        }
771
390
    }
772
390
    return Status::OK();
773
390
}
_ZN5doris17StatefulOperatorXINS_23HashJoinProbeLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Line
Count
Source
744
60
                                                         bool* eos) {
745
60
    auto& local_state = get_local_state(state);
746
60
    if (need_more_input_data(state)) {
747
54
        local_state._child_block->clear_column_data(
748
54
                OperatorX<LocalStateType>::_child->operator_row_desc_after_projection()
749
54
                        .num_materialized_slots());
750
54
        RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(
751
54
                state, local_state._child_block.get(), &local_state._child_eos));
752
54
        *eos = local_state._child_eos;
753
54
        if (local_state._child_block->rows() == 0 && !local_state._child_eos) {
754
2
            return Status::OK();
755
2
        }
756
52
        {
757
52
            SCOPED_TIMER(local_state.exec_time_counter());
758
52
            RETURN_IF_ERROR(push(state, local_state._child_block.get(), local_state._child_eos));
759
52
        }
760
52
    }
761
762
58
    if (!need_more_input_data(state)) {
763
58
        SCOPED_TIMER(local_state.exec_time_counter());
764
58
        bool new_eos = false;
765
58
        RETURN_IF_ERROR(pull(state, block, &new_eos));
766
58
        if (new_eos) {
767
33
            *eos = true;
768
33
        } else if (!need_more_input_data(state)) {
769
0
            *eos = false;
770
0
        }
771
58
    }
772
58
    return Status::OK();
773
58
}
Unexecuted instantiation: _ZN5doris17StatefulOperatorXINS_34PartitionedHashJoinProbeLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Unexecuted instantiation: _ZN5doris17StatefulOperatorXINS_16RepeatLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Unexecuted instantiation: _ZN5doris17StatefulOperatorXINS_25MaterializationLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Unexecuted instantiation: _ZN5doris17StatefulOperatorXINS_22StreamingAggLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
_ZN5doris17StatefulOperatorXINS_30DistinctStreamingAggLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Line
Count
Source
744
2
                                                         bool* eos) {
745
2
    auto& local_state = get_local_state(state);
746
2
    if (need_more_input_data(state)) {
747
2
        local_state._child_block->clear_column_data(
748
2
                OperatorX<LocalStateType>::_child->operator_row_desc_after_projection()
749
2
                        .num_materialized_slots());
750
2
        RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(
751
2
                state, local_state._child_block.get(), &local_state._child_eos));
752
2
        *eos = local_state._child_eos;
753
2
        if (local_state._child_block->rows() == 0 && !local_state._child_eos) {
754
0
            return Status::OK();
755
0
        }
756
2
        {
757
2
            SCOPED_TIMER(local_state.exec_time_counter());
758
2
            RETURN_IF_ERROR(push(state, local_state._child_block.get(), local_state._child_eos));
759
2
        }
760
2
    }
761
762
2
    if (!need_more_input_data(state)) {
763
2
        SCOPED_TIMER(local_state.exec_time_counter());
764
2
        bool new_eos = false;
765
2
        RETURN_IF_ERROR(pull(state, block, &new_eos));
766
2
        if (new_eos) {
767
2
            *eos = true;
768
2
        } else if (!need_more_input_data(state)) {
769
0
            *eos = false;
770
0
        }
771
2
    }
772
2
    return Status::OK();
773
2
}
_ZN5doris17StatefulOperatorXINS_29NestedLoopJoinProbeLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
Line
Count
Source
744
454
                                                         bool* eos) {
745
454
    auto& local_state = get_local_state(state);
746
454
    if (need_more_input_data(state)) {
747
454
        local_state._child_block->clear_column_data(
748
454
                OperatorX<LocalStateType>::_child->operator_row_desc_after_projection()
749
454
                        .num_materialized_slots());
750
454
        RETURN_IF_ERROR(OperatorX<LocalStateType>::_child->get_block_after_projects(
751
454
                state, local_state._child_block.get(), &local_state._child_eos));
752
454
        *eos = local_state._child_eos;
753
454
        if (local_state._child_block->rows() == 0 && !local_state._child_eos) {
754
124
            return Status::OK();
755
124
        }
756
330
        {
757
330
            SCOPED_TIMER(local_state.exec_time_counter());
758
330
            RETURN_IF_ERROR(push(state, local_state._child_block.get(), local_state._child_eos));
759
330
        }
760
330
    }
761
762
330
    if (!need_more_input_data(state)) {
763
330
        SCOPED_TIMER(local_state.exec_time_counter());
764
330
        bool new_eos = false;
765
330
        RETURN_IF_ERROR(pull(state, block, &new_eos));
766
330
        if (new_eos) {
767
248
            *eos = true;
768
248
        } else if (!need_more_input_data(state)) {
769
0
            *eos = false;
770
0
        }
771
330
    }
772
330
    return Status::OK();
773
330
}
Unexecuted instantiation: _ZN5doris17StatefulOperatorXINS_23TableFunctionLocalStateEE14get_block_implEPNS_12RuntimeStateEPNS_5BlockEPb
774
775
template <typename Writer, typename Parent>
776
    requires(std::is_base_of_v<AsyncResultWriter, Writer>)
777
34
Status AsyncWriterSink<Writer, Parent>::init(RuntimeState* state, LocalSinkStateInfo& info) {
778
34
    RETURN_IF_ERROR(Base::init(state, info));
779
34
    _async_writer_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(),
780
34
                                                         "AsyncWriterDependency", true);
781
34
    _writer.reset(new Writer(info.tsink, _output_vexpr_ctxs, _async_writer_dependency,
782
34
                             _finish_dependency));
783
784
34
    _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
785
34
            common_profile(), "WaitForDependency[" + _async_writer_dependency->name() + "]Time", 1);
786
34
    return Status::OK();
787
34
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
777
16
Status AsyncWriterSink<Writer, Parent>::init(RuntimeState* state, LocalSinkStateInfo& info) {
778
16
    RETURN_IF_ERROR(Base::init(state, info));
779
16
    _async_writer_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(),
780
16
                                                         "AsyncWriterDependency", true);
781
16
    _writer.reset(new Writer(info.tsink, _output_vexpr_ctxs, _async_writer_dependency,
782
16
                             _finish_dependency));
783
784
16
    _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
785
16
            common_profile(), "WaitForDependency[" + _async_writer_dependency->name() + "]Time", 1);
786
16
    return Status::OK();
787
16
}
_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Line
Count
Source
777
18
Status AsyncWriterSink<Writer, Parent>::init(RuntimeState* state, LocalSinkStateInfo& info) {
778
18
    RETURN_IF_ERROR(Base::init(state, info));
779
18
    _async_writer_dependency = Dependency::create_shared(_parent->operator_id(), _parent->node_id(),
780
18
                                                         "AsyncWriterDependency", true);
781
18
    _writer.reset(new Writer(info.tsink, _output_vexpr_ctxs, _async_writer_dependency,
782
18
                             _finish_dependency));
783
784
18
    _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(
785
18
            common_profile(), "WaitForDependency[" + _async_writer_dependency->name() + "]Time", 1);
786
18
    return Status::OK();
787
18
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE4initEPNS_12RuntimeStateERNS_18LocalSinkStateInfoE
788
789
template <typename Writer, typename Parent>
790
    requires(std::is_base_of_v<AsyncResultWriter, Writer>)
791
34
Status AsyncWriterSink<Writer, Parent>::open(RuntimeState* state) {
792
34
    RETURN_IF_ERROR(Base::open(state));
793
34
    _output_vexpr_ctxs.resize(_parent->cast<Parent>()._output_vexpr_ctxs.size());
794
420
    for (size_t i = 0; i < _output_vexpr_ctxs.size(); i++) {
795
386
        RETURN_IF_ERROR(
796
386
                _parent->cast<Parent>()._output_vexpr_ctxs[i]->clone(state, _output_vexpr_ctxs[i]));
797
386
    }
798
34
    RETURN_IF_ERROR(_writer->start_writer(state, operator_profile()));
799
34
    return Status::OK();
800
34
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE4openEPNS_12RuntimeStateE
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE4openEPNS_12RuntimeStateE
Line
Count
Source
791
16
Status AsyncWriterSink<Writer, Parent>::open(RuntimeState* state) {
792
16
    RETURN_IF_ERROR(Base::open(state));
793
16
    _output_vexpr_ctxs.resize(_parent->cast<Parent>()._output_vexpr_ctxs.size());
794
96
    for (size_t i = 0; i < _output_vexpr_ctxs.size(); i++) {
795
80
        RETURN_IF_ERROR(
796
80
                _parent->cast<Parent>()._output_vexpr_ctxs[i]->clone(state, _output_vexpr_ctxs[i]));
797
80
    }
798
16
    RETURN_IF_ERROR(_writer->start_writer(state, operator_profile()));
799
16
    return Status::OK();
800
16
}
_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE4openEPNS_12RuntimeStateE
Line
Count
Source
791
18
Status AsyncWriterSink<Writer, Parent>::open(RuntimeState* state) {
792
18
    RETURN_IF_ERROR(Base::open(state));
793
18
    _output_vexpr_ctxs.resize(_parent->cast<Parent>()._output_vexpr_ctxs.size());
794
324
    for (size_t i = 0; i < _output_vexpr_ctxs.size(); i++) {
795
306
        RETURN_IF_ERROR(
796
306
                _parent->cast<Parent>()._output_vexpr_ctxs[i]->clone(state, _output_vexpr_ctxs[i]));
797
306
    }
798
18
    RETURN_IF_ERROR(_writer->start_writer(state, operator_profile()));
799
18
    return Status::OK();
800
18
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE4openEPNS_12RuntimeStateE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE4openEPNS_12RuntimeStateE
801
802
template <typename Writer, typename Parent>
803
    requires(std::is_base_of_v<AsyncResultWriter, Writer>)
804
92
Status AsyncWriterSink<Writer, Parent>::sink(RuntimeState* state, Block* block, bool eos) {
805
92
    return _writer->sink(block, eos);
806
92
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Line
Count
Source
804
74
Status AsyncWriterSink<Writer, Parent>::sink(RuntimeState* state, Block* block, bool eos) {
805
74
    return _writer->sink(block, eos);
806
74
}
_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Line
Count
Source
804
18
Status AsyncWriterSink<Writer, Parent>::sink(RuntimeState* state, Block* block, bool eos) {
805
18
    return _writer->sink(block, eos);
806
18
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE4sinkEPNS_12RuntimeStateEPNS_5BlockEb
807
808
template <typename Writer, typename Parent>
809
    requires(std::is_base_of_v<AsyncResultWriter, Writer>)
810
34
Status AsyncWriterSink<Writer, Parent>::close(RuntimeState* state, Status exec_status) {
811
34
    if (_closed) {
812
0
        return Status::OK();
813
0
    }
814
34
    COUNTER_SET(_wait_for_dependency_timer, _async_writer_dependency->watcher_elapse_time());
815
34
    COUNTER_SET(_wait_for_finish_dependency_timer, _finish_dependency->watcher_elapse_time());
816
    // if the init failed, the _writer may be nullptr. so here need check
817
34
    if (_writer) {
818
34
        Status st = _writer->get_writer_status();
819
34
        if (exec_status.ok()) {
820
34
            _writer->force_close(state->is_cancelled() ? state->cancel_reason()
821
34
                                                       : Status::Cancelled("force close"));
822
34
        } else {
823
0
            _writer->force_close(exec_status);
824
0
        }
825
        // If there is an error in process_block thread, then we should get the writer
826
        // status before call force_close. For example, the thread may failed in commit
827
        // transaction.
828
34
        RETURN_IF_ERROR(st);
829
34
    }
830
34
    return Base::close(state, exec_status);
831
34
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VFileResultWriterENS_23ResultFileSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VJdbcTableWriterENS_22JdbcTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
_ZN5doris15AsyncWriterSinkINS_13VTabletWriterENS_22OlapTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
810
16
Status AsyncWriterSink<Writer, Parent>::close(RuntimeState* state, Status exec_status) {
811
16
    if (_closed) {
812
0
        return Status::OK();
813
0
    }
814
16
    COUNTER_SET(_wait_for_dependency_timer, _async_writer_dependency->watcher_elapse_time());
815
16
    COUNTER_SET(_wait_for_finish_dependency_timer, _finish_dependency->watcher_elapse_time());
816
    // if the init failed, the _writer may be nullptr. so here need check
817
16
    if (_writer) {
818
16
        Status st = _writer->get_writer_status();
819
16
        if (exec_status.ok()) {
820
16
            _writer->force_close(state->is_cancelled() ? state->cancel_reason()
821
16
                                                       : Status::Cancelled("force close"));
822
16
        } else {
823
0
            _writer->force_close(exec_status);
824
0
        }
825
        // If there is an error in process_block thread, then we should get the writer
826
        // status before call force_close. For example, the thread may failed in commit
827
        // transaction.
828
16
        RETURN_IF_ERROR(st);
829
16
    }
830
16
    return Base::close(state, exec_status);
831
16
}
_ZN5doris15AsyncWriterSinkINS_15VTabletWriterV2ENS_24OlapTableSinkV2OperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Line
Count
Source
810
18
Status AsyncWriterSink<Writer, Parent>::close(RuntimeState* state, Status exec_status) {
811
18
    if (_closed) {
812
0
        return Status::OK();
813
0
    }
814
18
    COUNTER_SET(_wait_for_dependency_timer, _async_writer_dependency->watcher_elapse_time());
815
18
    COUNTER_SET(_wait_for_finish_dependency_timer, _finish_dependency->watcher_elapse_time());
816
    // if the init failed, the _writer may be nullptr. so here need check
817
18
    if (_writer) {
818
18
        Status st = _writer->get_writer_status();
819
18
        if (exec_status.ok()) {
820
18
            _writer->force_close(state->is_cancelled() ? state->cancel_reason()
821
18
                                                       : Status::Cancelled("force close"));
822
18
        } else {
823
0
            _writer->force_close(exec_status);
824
0
        }
825
        // If there is an error in process_block thread, then we should get the writer
826
        // status before call force_close. For example, the thread may failed in commit
827
        // transaction.
828
18
        RETURN_IF_ERROR(st);
829
18
    }
830
18
    return Base::close(state, exec_status);
831
18
}
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_16VHiveTableWriterENS_22HiveTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_25IcebergTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_19VIcebergTableWriterENS_30SpillIcebergTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_18VIcebergDeleteSinkENS_26IcebergDeleteSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_17VIcebergMergeSinkENS_25IcebergMergeSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_14VMCTableWriterENS_20MCTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
Unexecuted instantiation: _ZN5doris15AsyncWriterSinkINS_15VTVFTableWriterENS_21TVFTableSinkOperatorXEE5closeEPNS_12RuntimeStateENS_6StatusE
832
833
// An instantiation added outside the macros below needs the matching
834
// 'extern template' declaration in the operator's header (enforced by
835
// build-support/check-extern-template-pairing.py). Instantiations expanded
836
// through DECLARE_OPERATOR are invisible to that check -- macro bodies are
837
// skipped -- so their extern pairing has to be kept in sync by hand.
838
#define DECLARE_OPERATOR(LOCAL_STATE) template class DataSinkOperatorX<LOCAL_STATE>;
839
DECLARE_OPERATOR(HashJoinBuildSinkLocalState)
840
DECLARE_OPERATOR(ResultSinkLocalState)
841
DECLARE_OPERATOR(JdbcTableSinkLocalState)
842
DECLARE_OPERATOR(MemoryScratchSinkLocalState)
843
DECLARE_OPERATOR(ResultFileSinkLocalState)
844
DECLARE_OPERATOR(OlapTableSinkLocalState)
845
DECLARE_OPERATOR(OlapTableSinkV2LocalState)
846
DECLARE_OPERATOR(HiveTableSinkLocalState)
847
DECLARE_OPERATOR(TVFTableSinkLocalState)
848
DECLARE_OPERATOR(IcebergTableSinkLocalState)
849
DECLARE_OPERATOR(SpillIcebergTableSinkLocalState)
850
DECLARE_OPERATOR(IcebergDeleteSinkLocalState)
851
DECLARE_OPERATOR(IcebergMergeSinkLocalState)
852
DECLARE_OPERATOR(MCTableSinkLocalState)
853
DECLARE_OPERATOR(AnalyticSinkLocalState)
854
DECLARE_OPERATOR(BlackholeSinkLocalState)
855
DECLARE_OPERATOR(SortSinkLocalState)
856
DECLARE_OPERATOR(SpillSortSinkLocalState)
857
DECLARE_OPERATOR(LocalExchangeSinkLocalState)
858
DECLARE_OPERATOR(AggSinkLocalState)
859
DECLARE_OPERATOR(BucketedAggSinkLocalState)
860
DECLARE_OPERATOR(PartitionedAggSinkLocalState)
861
DECLARE_OPERATOR(ExchangeSinkLocalState)
862
DECLARE_OPERATOR(NestedLoopJoinBuildSinkLocalState)
863
DECLARE_OPERATOR(UnionSinkLocalState)
864
DECLARE_OPERATOR(MultiCastDataStreamSinkLocalState)
865
DECLARE_OPERATOR(PartitionSortSinkLocalState)
866
DECLARE_OPERATOR(SetProbeSinkLocalState<true>)
867
DECLARE_OPERATOR(SetProbeSinkLocalState<false>)
868
DECLARE_OPERATOR(SetSinkLocalState<true>)
869
DECLARE_OPERATOR(SetSinkLocalState<false>)
870
DECLARE_OPERATOR(PartitionedHashJoinSinkLocalState)
871
DECLARE_OPERATOR(GroupCommitBlockSinkLocalState)
872
DECLARE_OPERATOR(CacheSinkLocalState)
873
DECLARE_OPERATOR(DictSinkLocalState)
874
DECLARE_OPERATOR(RecCTESinkLocalState)
875
DECLARE_OPERATOR(RecCTEAnchorSinkLocalState)
876
877
#undef DECLARE_OPERATOR
878
879
#define DECLARE_OPERATOR(LOCAL_STATE) template class OperatorX<LOCAL_STATE>;
880
DECLARE_OPERATOR(HashJoinProbeLocalState)
881
DECLARE_OPERATOR(OlapScanLocalState)
882
DECLARE_OPERATOR(GroupCommitLocalState)
883
DECLARE_OPERATOR(JDBCScanLocalState)
884
DECLARE_OPERATOR(FileScanLocalState)
885
DECLARE_OPERATOR(AnalyticLocalState)
886
DECLARE_OPERATOR(SortLocalState)
887
DECLARE_OPERATOR(SpillSortLocalState)
888
DECLARE_OPERATOR(LocalMergeSortLocalState)
889
DECLARE_OPERATOR(AggLocalState)
890
DECLARE_OPERATOR(BucketedAggLocalState)
891
DECLARE_OPERATOR(PartitionedAggLocalState)
892
DECLARE_OPERATOR(TableFunctionLocalState)
893
DECLARE_OPERATOR(ExchangeLocalState)
894
DECLARE_OPERATOR(RepeatLocalState)
895
DECLARE_OPERATOR(NestedLoopJoinProbeLocalState)
896
DECLARE_OPERATOR(AssertNumRowsLocalState)
897
DECLARE_OPERATOR(EmptySetLocalState)
898
DECLARE_OPERATOR(UnionSourceLocalState)
899
DECLARE_OPERATOR(MultiCastDataStreamSourceLocalState)
900
DECLARE_OPERATOR(PartitionSortSourceLocalState)
901
DECLARE_OPERATOR(SetSourceLocalState<true>)
902
DECLARE_OPERATOR(SetSourceLocalState<false>)
903
DECLARE_OPERATOR(DataGenLocalState)
904
DECLARE_OPERATOR(SchemaScanLocalState)
905
DECLARE_OPERATOR(MetaScanLocalState)
906
DECLARE_OPERATOR(LocalExchangeSourceLocalState)
907
DECLARE_OPERATOR(PartitionedHashJoinProbeLocalState)
908
DECLARE_OPERATOR(CacheSourceLocalState)
909
DECLARE_OPERATOR(RecCTESourceLocalState)
910
DECLARE_OPERATOR(RecCTEScanLocalState)
911
912
#ifdef BE_TEST
913
DECLARE_OPERATOR(MockLocalState)
914
DECLARE_OPERATOR(MockScanLocalState)
915
#endif
916
#undef DECLARE_OPERATOR
917
918
template class StreamingOperatorX<AssertNumRowsLocalState>;
919
template class StreamingOperatorX<SelectLocalState>;
920
921
template class StatefulOperatorX<HashJoinProbeLocalState>;
922
template class StatefulOperatorX<PartitionedHashJoinProbeLocalState>;
923
template class StatefulOperatorX<RepeatLocalState>;
924
template class StatefulOperatorX<MaterializationLocalState>;
925
template class StatefulOperatorX<StreamingAggLocalState>;
926
template class StatefulOperatorX<DistinctStreamingAggLocalState>;
927
template class StatefulOperatorX<NestedLoopJoinProbeLocalState>;
928
template class StatefulOperatorX<TableFunctionLocalState>;
929
930
template class PipelineXSinkLocalState<HashJoinSharedState>;
931
template class PipelineXSinkLocalState<PartitionedHashJoinSharedState>;
932
template class PipelineXSinkLocalState<SortSharedState>;
933
template class PipelineXSinkLocalState<SpillSortSharedState>;
934
template class PipelineXSinkLocalState<NestedLoopJoinSharedState>;
935
template class PipelineXSinkLocalState<AnalyticSharedState>;
936
template class PipelineXSinkLocalState<AggSharedState>;
937
template class PipelineXSinkLocalState<BucketedAggSharedState>;
938
template class PipelineXSinkLocalState<PartitionedAggSharedState>;
939
template class PipelineXSinkLocalState<FakeSharedState>;
940
template class PipelineXSinkLocalState<UnionSharedState>;
941
template class PipelineXSinkLocalState<PartitionSortNodeSharedState>;
942
template class PipelineXSinkLocalState<MultiCastSharedState>;
943
template class PipelineXSinkLocalState<SetSharedState>;
944
template class PipelineXSinkLocalState<LocalExchangeSharedState>;
945
template class PipelineXSinkLocalState<BasicSharedState>;
946
template class PipelineXSinkLocalState<DataQueueSharedState>;
947
template class PipelineXSinkLocalState<RecCTESharedState>;
948
949
template class PipelineXLocalState<HashJoinSharedState>;
950
template class PipelineXLocalState<PartitionedHashJoinSharedState>;
951
template class PipelineXLocalState<SortSharedState>;
952
template class PipelineXLocalState<SpillSortSharedState>;
953
template class PipelineXLocalState<NestedLoopJoinSharedState>;
954
template class PipelineXLocalState<AnalyticSharedState>;
955
template class PipelineXLocalState<AggSharedState>;
956
template class PipelineXLocalState<BucketedAggSharedState>;
957
template class PipelineXLocalState<PartitionedAggSharedState>;
958
template class PipelineXLocalState<FakeSharedState>;
959
template class PipelineXLocalState<UnionSharedState>;
960
template class PipelineXLocalState<DataQueueSharedState>;
961
template class PipelineXLocalState<MultiCastSharedState>;
962
template class PipelineXLocalState<PartitionSortNodeSharedState>;
963
template class PipelineXLocalState<SetSharedState>;
964
template class PipelineXLocalState<LocalExchangeSharedState>;
965
template class PipelineXLocalState<BasicSharedState>;
966
template class PipelineXLocalState<RecCTESharedState>;
967
968
template class AsyncWriterSink<doris::VFileResultWriter, ResultFileSinkOperatorX>;
969
template class AsyncWriterSink<doris::VJdbcTableWriter, JdbcTableSinkOperatorX>;
970
template class AsyncWriterSink<doris::VTabletWriter, OlapTableSinkOperatorX>;
971
template class AsyncWriterSink<doris::VTabletWriterV2, OlapTableSinkV2OperatorX>;
972
template class AsyncWriterSink<doris::VHiveTableWriter, HiveTableSinkOperatorX>;
973
template class AsyncWriterSink<doris::VIcebergTableWriter, IcebergTableSinkOperatorX>;
974
template class AsyncWriterSink<doris::VIcebergTableWriter, SpillIcebergTableSinkOperatorX>;
975
template class AsyncWriterSink<doris::VIcebergDeleteSink, IcebergDeleteSinkOperatorX>;
976
template class AsyncWriterSink<doris::VIcebergMergeSink, IcebergMergeSinkOperatorX>;
977
template class AsyncWriterSink<doris::VMCTableWriter, MCTableSinkOperatorX>;
978
template class AsyncWriterSink<doris::VTVFTableWriter, TVFTableSinkOperatorX>;
979
980
#ifdef BE_TEST
981
template class OperatorX<DummyOperatorLocalState>;
982
template class DataSinkOperatorX<DummySinkLocalState>;
983
#endif
984
985
} // namespace doris