/root/doris/cloud/src/recycler/recycler.cpp
Line | Count | Source (jump to first uncovered line) |
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 "recycler/recycler.h" |
19 | | |
20 | | #include <brpc/builtin_service.pb.h> |
21 | | #include <brpc/server.h> |
22 | | #include <butil/endpoint.h> |
23 | | #include <butil/strings/string_split.h> |
24 | | #include <bvar/status.h> |
25 | | #include <gen_cpp/cloud.pb.h> |
26 | | #include <gen_cpp/olap_file.pb.h> |
27 | | |
28 | | #include <algorithm> |
29 | | #include <atomic> |
30 | | #include <chrono> |
31 | | #include <cstddef> |
32 | | #include <cstdint> |
33 | | #include <cstdlib> |
34 | | #include <deque> |
35 | | #include <functional> |
36 | | #include <initializer_list> |
37 | | #include <memory> |
38 | | #include <numeric> |
39 | | #include <random> |
40 | | #include <string> |
41 | | #include <string_view> |
42 | | #include <thread> |
43 | | #include <unordered_map> |
44 | | #include <utility> |
45 | | #include <variant> |
46 | | |
47 | | #include "common/defer.h" |
48 | | #include "common/stopwatch.h" |
49 | | #include "meta-service/meta_service.h" |
50 | | #include "meta-service/meta_service_helper.h" |
51 | | #include "meta-service/meta_service_schema.h" |
52 | | #include "meta-store/blob_message.h" |
53 | | #include "meta-store/meta_reader.h" |
54 | | #include "meta-store/txn_kv.h" |
55 | | #include "meta-store/txn_kv_error.h" |
56 | | #include "meta-store/versioned_value.h" |
57 | | #include "recycler/checker.h" |
58 | | #ifdef ENABLE_HDFS_STORAGE_VAULT |
59 | | #include "recycler/hdfs_accessor.h" |
60 | | #endif |
61 | | #include "recycler/s3_accessor.h" |
62 | | #include "recycler/storage_vault_accessor.h" |
63 | | #ifdef UNIT_TEST |
64 | | #include "../test/mock_accessor.h" |
65 | | #endif |
66 | | #include "common/bvars.h" |
67 | | #include "common/config.h" |
68 | | #include "common/encryption_util.h" |
69 | | #include "common/logging.h" |
70 | | #include "common/simple_thread_pool.h" |
71 | | #include "common/util.h" |
72 | | #include "cpp/sync_point.h" |
73 | | #include "meta-store/codec.h" |
74 | | #include "meta-store/document_message.h" |
75 | | #include "meta-store/keys.h" |
76 | | #include "recycler/recycler_service.h" |
77 | | #include "recycler/sync_executor.h" |
78 | | #include "recycler/util.h" |
79 | | |
80 | | namespace doris::cloud { |
81 | | |
82 | | using namespace std::chrono; |
83 | | |
84 | | namespace { |
85 | | |
86 | 0 | int64_t packed_file_retry_sleep_ms() { |
87 | 0 | const int64_t min_ms = std::max<int64_t>(0, config::packed_file_txn_retry_sleep_min_ms); |
88 | 0 | const int64_t max_ms = std::max<int64_t>(min_ms, config::packed_file_txn_retry_sleep_max_ms); |
89 | 0 | thread_local std::mt19937_64 gen(std::random_device {}()); |
90 | 0 | std::uniform_int_distribution<int64_t> dist(min_ms, max_ms); |
91 | 0 | return dist(gen); |
92 | 0 | } Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12_GLOBAL__N_126packed_file_retry_sleep_msEv Unexecuted instantiation: recycler_test.cpp:_ZN5doris5cloud12_GLOBAL__N_126packed_file_retry_sleep_msEv |
93 | | |
94 | 0 | void sleep_for_packed_file_retry() { |
95 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(packed_file_retry_sleep_ms())); |
96 | 0 | } Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12_GLOBAL__N_127sleep_for_packed_file_retryEv Unexecuted instantiation: recycler_test.cpp:_ZN5doris5cloud12_GLOBAL__N_127sleep_for_packed_file_retryEv |
97 | | |
98 | | } // namespace |
99 | | |
100 | | // return 0 for success get a key, 1 for key not found, negative for error |
101 | 0 | [[maybe_unused]] static int txn_get(TxnKv* txn_kv, std::string_view key, std::string& val) { |
102 | 0 | std::unique_ptr<Transaction> txn; |
103 | 0 | TxnErrorCode err = txn_kv->create_txn(&txn); |
104 | 0 | if (err != TxnErrorCode::TXN_OK) { |
105 | 0 | return -1; |
106 | 0 | } |
107 | 0 | switch (txn->get(key, &val, true)) { |
108 | 0 | case TxnErrorCode::TXN_OK: |
109 | 0 | return 0; |
110 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: |
111 | 0 | return 1; |
112 | 0 | default: |
113 | 0 | return -1; |
114 | 0 | }; |
115 | 0 | } Unexecuted instantiation: recycler.cpp:_ZN5doris5cloudL7txn_getEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS5_SaIcEEE Unexecuted instantiation: recycler_test.cpp:_ZN5doris5cloudL7txn_getEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEERNSt7__cxx1112basic_stringIcS5_SaIcEEE |
116 | | |
117 | | // 0 for success, negative for error |
118 | | static int txn_get(TxnKv* txn_kv, std::string_view begin, std::string_view end, |
119 | 322 | std::unique_ptr<RangeGetIterator>& it) { |
120 | 322 | std::unique_ptr<Transaction> txn; |
121 | 322 | TxnErrorCode err = txn_kv->create_txn(&txn); |
122 | 322 | if (err != TxnErrorCode::TXN_OK) { |
123 | 0 | return -1; |
124 | 0 | } |
125 | 322 | switch (txn->get(begin, end, &it, true)) { |
126 | 322 | case TxnErrorCode::TXN_OK: |
127 | 322 | return 0; |
128 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: |
129 | 0 | return 1; |
130 | 0 | default: |
131 | 0 | return -1; |
132 | 322 | }; |
133 | 0 | } recycler.cpp:_ZN5doris5cloudL7txn_getEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEES6_RSt10unique_ptrINS0_16RangeGetIteratorESt14default_deleteIS8_EE Line | Count | Source | 119 | 31 | std::unique_ptr<RangeGetIterator>& it) { | 120 | 31 | std::unique_ptr<Transaction> txn; | 121 | 31 | TxnErrorCode err = txn_kv->create_txn(&txn); | 122 | 31 | if (err != TxnErrorCode::TXN_OK) { | 123 | 0 | return -1; | 124 | 0 | } | 125 | 31 | switch (txn->get(begin, end, &it, true)) { | 126 | 31 | case TxnErrorCode::TXN_OK: | 127 | 31 | return 0; | 128 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: | 129 | 0 | return 1; | 130 | 0 | default: | 131 | 0 | return -1; | 132 | 31 | }; | 133 | 0 | } |
recycler_test.cpp:_ZN5doris5cloudL7txn_getEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEES6_RSt10unique_ptrINS0_16RangeGetIteratorESt14default_deleteIS8_EE Line | Count | Source | 119 | 291 | std::unique_ptr<RangeGetIterator>& it) { | 120 | 291 | std::unique_ptr<Transaction> txn; | 121 | 291 | TxnErrorCode err = txn_kv->create_txn(&txn); | 122 | 291 | if (err != TxnErrorCode::TXN_OK) { | 123 | 0 | return -1; | 124 | 0 | } | 125 | 291 | switch (txn->get(begin, end, &it, true)) { | 126 | 291 | case TxnErrorCode::TXN_OK: | 127 | 291 | return 0; | 128 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: | 129 | 0 | return 1; | 130 | 0 | default: | 131 | 0 | return -1; | 132 | 291 | }; | 133 | 0 | } |
|
134 | | |
135 | | // return 0 for success otherwise error |
136 | 6 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string_view> keys) { |
137 | 6 | std::unique_ptr<Transaction> txn; |
138 | 6 | TxnErrorCode err = txn_kv->create_txn(&txn); |
139 | 6 | if (err != TxnErrorCode::TXN_OK) { |
140 | 0 | return -1; |
141 | 0 | } |
142 | 10 | for (auto k : keys) { |
143 | 10 | txn->remove(k); |
144 | 10 | } |
145 | 6 | switch (txn->commit()) { |
146 | 6 | case TxnErrorCode::TXN_OK: |
147 | 6 | return 0; |
148 | 0 | case TxnErrorCode::TXN_CONFLICT: |
149 | 0 | return -1; |
150 | 0 | default: |
151 | 0 | return -1; |
152 | 6 | } |
153 | 6 | } recycler.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt6vectorISt17basic_string_viewIcSt11char_traitsIcEESaIS7_EE Line | Count | Source | 136 | 1 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string_view> keys) { | 137 | 1 | std::unique_ptr<Transaction> txn; | 138 | 1 | TxnErrorCode err = txn_kv->create_txn(&txn); | 139 | 1 | if (err != TxnErrorCode::TXN_OK) { | 140 | 0 | return -1; | 141 | 0 | } | 142 | 1 | for (auto k : keys) { | 143 | 1 | txn->remove(k); | 144 | 1 | } | 145 | 1 | switch (txn->commit()) { | 146 | 1 | case TxnErrorCode::TXN_OK: | 147 | 1 | return 0; | 148 | 0 | case TxnErrorCode::TXN_CONFLICT: | 149 | 0 | return -1; | 150 | 0 | default: | 151 | 0 | return -1; | 152 | 1 | } | 153 | 1 | } |
recycler_test.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt6vectorISt17basic_string_viewIcSt11char_traitsIcEESaIS7_EE Line | Count | Source | 136 | 5 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string_view> keys) { | 137 | 5 | std::unique_ptr<Transaction> txn; | 138 | 5 | TxnErrorCode err = txn_kv->create_txn(&txn); | 139 | 5 | if (err != TxnErrorCode::TXN_OK) { | 140 | 0 | return -1; | 141 | 0 | } | 142 | 9 | for (auto k : keys) { | 143 | 9 | txn->remove(k); | 144 | 9 | } | 145 | 5 | switch (txn->commit()) { | 146 | 5 | case TxnErrorCode::TXN_OK: | 147 | 5 | return 0; | 148 | 0 | case TxnErrorCode::TXN_CONFLICT: | 149 | 0 | return -1; | 150 | 0 | default: | 151 | 0 | return -1; | 152 | 5 | } | 153 | 5 | } |
|
154 | | |
155 | | // return 0 for success otherwise error |
156 | 118 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string> keys) { |
157 | 118 | std::unique_ptr<Transaction> txn; |
158 | 118 | TxnErrorCode err = txn_kv->create_txn(&txn); |
159 | 118 | if (err != TxnErrorCode::TXN_OK) { |
160 | 0 | return -1; |
161 | 0 | } |
162 | 105k | for (auto& k : keys) { |
163 | 105k | txn->remove(k); |
164 | 105k | } |
165 | 118 | switch (txn->commit()) { |
166 | 118 | case TxnErrorCode::TXN_OK: |
167 | 118 | return 0; |
168 | 0 | case TxnErrorCode::TXN_CONFLICT: |
169 | 0 | return -1; |
170 | 0 | default: |
171 | 0 | return -1; |
172 | 118 | } |
173 | 118 | } recycler.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS9_EE Line | Count | Source | 156 | 33 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string> keys) { | 157 | 33 | std::unique_ptr<Transaction> txn; | 158 | 33 | TxnErrorCode err = txn_kv->create_txn(&txn); | 159 | 33 | if (err != TxnErrorCode::TXN_OK) { | 160 | 0 | return -1; | 161 | 0 | } | 162 | 33 | for (auto& k : keys) { | 163 | 16 | txn->remove(k); | 164 | 16 | } | 165 | 33 | switch (txn->commit()) { | 166 | 33 | case TxnErrorCode::TXN_OK: | 167 | 33 | return 0; | 168 | 0 | case TxnErrorCode::TXN_CONFLICT: | 169 | 0 | return -1; | 170 | 0 | default: | 171 | 0 | return -1; | 172 | 33 | } | 173 | 33 | } |
recycler_test.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS9_EE Line | Count | Source | 156 | 85 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string> keys) { | 157 | 85 | std::unique_ptr<Transaction> txn; | 158 | 85 | TxnErrorCode err = txn_kv->create_txn(&txn); | 159 | 85 | if (err != TxnErrorCode::TXN_OK) { | 160 | 0 | return -1; | 161 | 0 | } | 162 | 105k | for (auto& k : keys) { | 163 | 105k | txn->remove(k); | 164 | 105k | } | 165 | 85 | switch (txn->commit()) { | 166 | 85 | case TxnErrorCode::TXN_OK: | 167 | 85 | return 0; | 168 | 0 | case TxnErrorCode::TXN_CONFLICT: | 169 | 0 | return -1; | 170 | 0 | default: | 171 | 0 | return -1; | 172 | 85 | } | 173 | 85 | } |
|
174 | | |
175 | | // return 0 for success otherwise error |
176 | | [[maybe_unused]] static int txn_remove(TxnKv* txn_kv, std::string_view begin, |
177 | 106k | std::string_view end) { |
178 | 106k | std::unique_ptr<Transaction> txn; |
179 | 106k | TxnErrorCode err = txn_kv->create_txn(&txn); |
180 | 106k | if (err != TxnErrorCode::TXN_OK) { |
181 | 0 | return -1; |
182 | 0 | } |
183 | 106k | txn->remove(begin, end); |
184 | 106k | switch (txn->commit()) { |
185 | 106k | case TxnErrorCode::TXN_OK: |
186 | 106k | return 0; |
187 | 0 | case TxnErrorCode::TXN_CONFLICT: |
188 | 0 | return -1; |
189 | 0 | default: |
190 | 0 | return -1; |
191 | 106k | } |
192 | 106k | } recycler.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 177 | 16 | std::string_view end) { | 178 | 16 | std::unique_ptr<Transaction> txn; | 179 | 16 | TxnErrorCode err = txn_kv->create_txn(&txn); | 180 | 16 | if (err != TxnErrorCode::TXN_OK) { | 181 | 0 | return -1; | 182 | 0 | } | 183 | 16 | txn->remove(begin, end); | 184 | 16 | switch (txn->commit()) { | 185 | 16 | case TxnErrorCode::TXN_OK: | 186 | 16 | return 0; | 187 | 0 | case TxnErrorCode::TXN_CONFLICT: | 188 | 0 | return -1; | 189 | 0 | default: | 190 | 0 | return -1; | 191 | 16 | } | 192 | 16 | } |
recycler_test.cpp:_ZN5doris5cloudL10txn_removeEPNS0_5TxnKvESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 177 | 106k | std::string_view end) { | 178 | 106k | std::unique_ptr<Transaction> txn; | 179 | 106k | TxnErrorCode err = txn_kv->create_txn(&txn); | 180 | 106k | if (err != TxnErrorCode::TXN_OK) { | 181 | 0 | return -1; | 182 | 0 | } | 183 | 106k | txn->remove(begin, end); | 184 | 106k | switch (txn->commit()) { | 185 | 106k | case TxnErrorCode::TXN_OK: | 186 | 106k | return 0; | 187 | 0 | case TxnErrorCode::TXN_CONFLICT: | 188 | 0 | return -1; | 189 | 0 | default: | 190 | 0 | return -1; | 191 | 106k | } | 192 | 106k | } |
|
193 | | |
194 | | void scan_restore_job_rowset( |
195 | | Transaction* txn, const std::string& instance_id, int64_t tablet_id, MetaServiceCode& code, |
196 | | std::string& msg, |
197 | | std::vector<std::pair<std::string, doris::RowsetMetaCloudPB>>* restore_job_rs_metas); |
198 | | |
199 | | static inline void check_recycle_task(const std::string& instance_id, const std::string& task_name, |
200 | | int64_t num_scanned, int64_t num_recycled, |
201 | 52 | int64_t start_time) { |
202 | 52 | if ((num_scanned % 10000) == 0 && (num_scanned > 0)) [[unlikely]] { |
203 | 0 | int64_t cost = |
204 | 0 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
205 | 0 | if (cost > config::recycle_task_threshold_seconds) { |
206 | 0 | LOG_WARNING("recycle task cost too much time cost={}s", cost) |
207 | 0 | .tag("instance_id", instance_id) |
208 | 0 | .tag("task", task_name) |
209 | 0 | .tag("num_scanned", num_scanned) |
210 | 0 | .tag("num_recycled", num_recycled); |
211 | 0 | } |
212 | 0 | } |
213 | 52 | return; |
214 | 52 | } recycler.cpp:_ZN5doris5cloudL18check_recycle_taskERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_lll Line | Count | Source | 201 | 2 | int64_t start_time) { | 202 | 2 | if ((num_scanned % 10000) == 0 && (num_scanned > 0)) [[unlikely]] { | 203 | 0 | int64_t cost = | 204 | 0 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 205 | 0 | if (cost > config::recycle_task_threshold_seconds) { | 206 | 0 | LOG_WARNING("recycle task cost too much time cost={}s", cost) | 207 | 0 | .tag("instance_id", instance_id) | 208 | 0 | .tag("task", task_name) | 209 | 0 | .tag("num_scanned", num_scanned) | 210 | 0 | .tag("num_recycled", num_recycled); | 211 | 0 | } | 212 | 0 | } | 213 | 2 | return; | 214 | 2 | } |
recycler_test.cpp:_ZN5doris5cloudL18check_recycle_taskERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_lll Line | Count | Source | 201 | 50 | int64_t start_time) { | 202 | 50 | if ((num_scanned % 10000) == 0 && (num_scanned > 0)) [[unlikely]] { | 203 | 0 | int64_t cost = | 204 | 0 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 205 | 0 | if (cost > config::recycle_task_threshold_seconds) { | 206 | 0 | LOG_WARNING("recycle task cost too much time cost={}s", cost) | 207 | 0 | .tag("instance_id", instance_id) | 208 | 0 | .tag("task", task_name) | 209 | 0 | .tag("num_scanned", num_scanned) | 210 | 0 | .tag("num_recycled", num_recycled); | 211 | 0 | } | 212 | 0 | } | 213 | 50 | return; | 214 | 50 | } |
|
215 | | |
216 | 4 | Recycler::Recycler(std::shared_ptr<TxnKv> txn_kv) : txn_kv_(std::move(txn_kv)) { |
217 | 4 | ip_port_ = std::string(butil::my_ip_cstr()) + ":" + std::to_string(config::brpc_listen_port); |
218 | | |
219 | 4 | auto s3_producer_pool = std::make_shared<SimpleThreadPool>(config::recycle_pool_parallelism, |
220 | 4 | "s3_producer_pool"); |
221 | 4 | s3_producer_pool->start(); |
222 | 4 | auto recycle_tablet_pool = std::make_shared<SimpleThreadPool>(config::recycle_pool_parallelism, |
223 | 4 | "recycle_tablet_pool"); |
224 | 4 | recycle_tablet_pool->start(); |
225 | 4 | auto group_recycle_function_pool = std::make_shared<SimpleThreadPool>( |
226 | 4 | config::recycle_pool_parallelism, "group_recycle_function_pool"); |
227 | 4 | group_recycle_function_pool->start(); |
228 | 4 | _thread_pool_group = |
229 | 4 | RecyclerThreadPoolGroup(std::move(s3_producer_pool), std::move(recycle_tablet_pool), |
230 | 4 | std::move(group_recycle_function_pool)); |
231 | | |
232 | 4 | auto resource_mgr = std::make_shared<ResourceManager>(txn_kv_); |
233 | 4 | txn_lazy_committer_ = std::make_shared<TxnLazyCommitter>(txn_kv_, std::move(resource_mgr)); |
234 | 4 | snapshot_manager_ = std::make_shared<SnapshotManager>(txn_kv_); |
235 | 4 | } |
236 | | |
237 | 4 | Recycler::~Recycler() { |
238 | 4 | if (!stopped()) { |
239 | 0 | stop(); |
240 | 0 | } |
241 | 4 | } |
242 | | |
243 | 4 | void Recycler::instance_scanner_callback() { |
244 | | // sleep 60 seconds before scheduling for the launch procedure to complete: |
245 | | // some bad hdfs connection may cause some log to stdout stderr |
246 | | // which may pollute .out file and affect the script to check success |
247 | 4 | std::this_thread::sleep_for( |
248 | 4 | std::chrono::seconds(config::recycler_sleep_before_scheduling_seconds)); |
249 | 8 | while (!stopped()) { |
250 | 4 | std::vector<InstanceInfoPB> instances; |
251 | 4 | get_all_instances(txn_kv_.get(), instances); |
252 | | // TODO(plat1ko): delete job recycle kv of non-existent instances |
253 | 4 | LOG(INFO) << "Recycler get instances: " << [&instances] { |
254 | 4 | std::stringstream ss; |
255 | 30 | for (auto& i : instances) ss << ' ' << i.instance_id(); |
256 | 4 | return ss.str(); |
257 | 4 | }(); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler25instance_scanner_callbackEvENK3$_0clB5cxx11Ev recycler_test.cpp:_ZZN5doris5cloud8Recycler25instance_scanner_callbackEvENK3$_0clB5cxx11Ev Line | Count | Source | 253 | 4 | LOG(INFO) << "Recycler get instances: " << [&instances] { | 254 | 4 | std::stringstream ss; | 255 | 30 | for (auto& i : instances) ss << ' ' << i.instance_id(); | 256 | 4 | return ss.str(); | 257 | 4 | }(); |
|
258 | 4 | if (!instances.empty()) { |
259 | | // enqueue instances |
260 | 3 | std::lock_guard lock(mtx_); |
261 | 30 | for (auto& instance : instances) { |
262 | 30 | if (instance_filter_.filter_out(instance.instance_id())) continue; |
263 | 30 | auto [_, success] = pending_instance_set_.insert(instance.instance_id()); |
264 | | // skip instance already in pending queue |
265 | 30 | if (success) { |
266 | 30 | pending_instance_queue_.push_back(std::move(instance)); |
267 | 30 | } |
268 | 30 | } |
269 | 3 | pending_instance_cond_.notify_all(); |
270 | 3 | } |
271 | 4 | { |
272 | 4 | std::unique_lock lock(mtx_); |
273 | 4 | notifier_.wait_for(lock, std::chrono::seconds(config::recycle_interval_seconds), |
274 | 7 | [&]() { return stopped(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler25instance_scanner_callbackEvENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler25instance_scanner_callbackEvENK3$_1clEv Line | Count | Source | 274 | 7 | [&]() { return stopped(); }); |
|
275 | 4 | } |
276 | 4 | } |
277 | 4 | } |
278 | | |
279 | 8 | void Recycler::recycle_callback() { |
280 | 38 | while (!stopped()) { |
281 | 36 | InstanceInfoPB instance; |
282 | 36 | { |
283 | 36 | std::unique_lock lock(mtx_); |
284 | 36 | pending_instance_cond_.wait( |
285 | 48 | lock, [&]() { return !pending_instance_queue_.empty() || stopped(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler16recycle_callbackEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler16recycle_callbackEvENK3$_0clEv Line | Count | Source | 285 | 48 | lock, [&]() { return !pending_instance_queue_.empty() || stopped(); }); |
|
286 | 36 | if (stopped()) { |
287 | 6 | return; |
288 | 6 | } |
289 | 30 | instance = std::move(pending_instance_queue_.front()); |
290 | 30 | pending_instance_queue_.pop_front(); |
291 | 30 | pending_instance_set_.erase(instance.instance_id()); |
292 | 30 | } |
293 | 0 | auto& instance_id = instance.instance_id(); |
294 | 30 | { |
295 | 30 | std::lock_guard lock(mtx_); |
296 | | // skip instance in recycling |
297 | 30 | if (recycling_instance_map_.count(instance_id)) continue; |
298 | 30 | } |
299 | 30 | auto instance_recycler = std::make_shared<InstanceRecycler>( |
300 | 30 | txn_kv_, instance, _thread_pool_group, txn_lazy_committer_); |
301 | | |
302 | 30 | if (int r = instance_recycler->init(); r != 0) { |
303 | 0 | LOG(WARNING) << "failed to init instance recycler, instance_id=" << instance_id |
304 | 0 | << " ret=" << r; |
305 | 0 | continue; |
306 | 0 | } |
307 | 30 | std::string recycle_job_key; |
308 | 30 | job_recycle_key({instance_id}, &recycle_job_key); |
309 | 30 | int ret = prepare_instance_recycle_job(txn_kv_.get(), recycle_job_key, instance_id, |
310 | 30 | ip_port_, config::recycle_interval_seconds * 1000); |
311 | 30 | if (ret != 0) { // Prepare failed |
312 | 20 | LOG(WARNING) << "failed to prepare recycle_job, instance_id=" << instance_id |
313 | 20 | << " ret=" << ret; |
314 | 20 | continue; |
315 | 20 | } else { |
316 | 10 | std::lock_guard lock(mtx_); |
317 | 10 | recycling_instance_map_.emplace(instance_id, instance_recycler); |
318 | 10 | } |
319 | 10 | if (stopped()) return; |
320 | 10 | LOG_WARNING("begin to recycle instance").tag("instance_id", instance_id); |
321 | 10 | auto ctime_ms = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
322 | 10 | g_bvar_recycler_instance_recycle_start_ts.put({instance_id}, ctime_ms); |
323 | 10 | g_bvar_recycler_instance_recycle_task_status.put({"submitted"}, 1); |
324 | 10 | ret = instance_recycler->do_recycle(); |
325 | | // If instance recycler has been aborted, don't finish this job |
326 | | |
327 | 10 | if (!instance_recycler->stopped()) { |
328 | 10 | finish_instance_recycle_job(txn_kv_.get(), recycle_job_key, instance_id, ip_port_, |
329 | 10 | ret == 0, ctime_ms); |
330 | 10 | } |
331 | 10 | if (instance_recycler->stopped() || ret != 0) { |
332 | 0 | g_bvar_recycler_instance_recycle_task_status.put({"error"}, 1); |
333 | 0 | } |
334 | 10 | { |
335 | 10 | std::lock_guard lock(mtx_); |
336 | 10 | recycling_instance_map_.erase(instance_id); |
337 | 10 | } |
338 | | |
339 | 10 | auto now = duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
340 | 10 | auto elpased_ms = now - ctime_ms; |
341 | 10 | g_bvar_recycler_instance_recycle_end_ts.put({instance_id}, now); |
342 | 10 | g_bvar_recycler_instance_last_round_recycle_duration.put({instance_id}, elpased_ms); |
343 | 10 | g_bvar_recycler_instance_next_ts.put({instance_id}, |
344 | 10 | now + config::recycle_interval_seconds * 1000); |
345 | 10 | g_bvar_recycler_instance_recycle_task_status.put({"completed"}, 1); |
346 | 10 | LOG(INFO) << "recycle instance done, " |
347 | 10 | << "instance_id=" << instance_id << " ret=" << ret << " ctime_ms: " << ctime_ms |
348 | 10 | << " now: " << now; |
349 | | |
350 | 10 | g_bvar_recycler_instance_recycle_last_success_ts.put({instance_id}, now); |
351 | | |
352 | 10 | LOG_WARNING("finish recycle instance") |
353 | 10 | .tag("instance_id", instance_id) |
354 | 10 | .tag("cost_ms", elpased_ms); |
355 | 10 | } |
356 | 8 | } |
357 | | |
358 | 4 | void Recycler::lease_recycle_jobs() { |
359 | 54 | while (!stopped()) { |
360 | 50 | std::vector<std::string> instances; |
361 | 50 | instances.reserve(recycling_instance_map_.size()); |
362 | 50 | { |
363 | 50 | std::lock_guard lock(mtx_); |
364 | 50 | for (auto& [id, _] : recycling_instance_map_) { |
365 | 30 | instances.push_back(id); |
366 | 30 | } |
367 | 50 | } |
368 | 50 | for (auto& i : instances) { |
369 | 30 | std::string recycle_job_key; |
370 | 30 | job_recycle_key({i}, &recycle_job_key); |
371 | 30 | int ret = lease_instance_recycle_job(txn_kv_.get(), recycle_job_key, i, ip_port_); |
372 | 30 | if (ret == 1) { |
373 | 0 | std::lock_guard lock(mtx_); |
374 | 0 | if (auto it = recycling_instance_map_.find(i); |
375 | 0 | it != recycling_instance_map_.end()) { |
376 | 0 | it->second->stop(); |
377 | 0 | } |
378 | 0 | } |
379 | 30 | } |
380 | 50 | { |
381 | 50 | std::unique_lock lock(mtx_); |
382 | 50 | notifier_.wait_for(lock, |
383 | 50 | std::chrono::milliseconds(config::recycle_job_lease_expired_ms / 3), |
384 | 100 | [&]() { return stopped(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler18lease_recycle_jobsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler18lease_recycle_jobsEvENK3$_0clEv Line | Count | Source | 384 | 100 | [&]() { return stopped(); }); |
|
385 | 50 | } |
386 | 50 | } |
387 | 4 | } |
388 | | |
389 | 4 | void Recycler::check_recycle_tasks() { |
390 | 7 | while (!stopped()) { |
391 | 3 | std::unordered_map<std::string, std::shared_ptr<InstanceRecycler>> recycling_instance_map; |
392 | 3 | { |
393 | 3 | std::lock_guard lock(mtx_); |
394 | 3 | recycling_instance_map = recycling_instance_map_; |
395 | 3 | } |
396 | 3 | for (auto& entry : recycling_instance_map) { |
397 | 0 | entry.second->check_recycle_tasks(); |
398 | 0 | } |
399 | | |
400 | 3 | std::unique_lock lock(mtx_); |
401 | 3 | notifier_.wait_for(lock, std::chrono::seconds(config::check_recycle_task_interval_seconds), |
402 | 6 | [&]() { return stopped(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler19check_recycle_tasksEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler19check_recycle_tasksEvENK3$_0clEv Line | Count | Source | 402 | 6 | [&]() { return stopped(); }); |
|
403 | 3 | } |
404 | 4 | } |
405 | | |
406 | 4 | int Recycler::start(brpc::Server* server) { |
407 | 4 | instance_filter_.reset(config::recycle_whitelist, config::recycle_blacklist); |
408 | 4 | g_bvar_recycler_task_max_concurrency.set_value(config::recycle_concurrency); |
409 | 4 | S3Environment::getInstance(); |
410 | | |
411 | 4 | if (config::enable_checker) { |
412 | 0 | checker_ = std::make_unique<Checker>(txn_kv_); |
413 | 0 | int ret = checker_->start(); |
414 | 0 | std::string msg; |
415 | 0 | if (ret != 0) { |
416 | 0 | msg = "failed to start checker"; |
417 | 0 | LOG(ERROR) << msg; |
418 | 0 | std::cerr << msg << std::endl; |
419 | 0 | return ret; |
420 | 0 | } |
421 | 0 | msg = "checker started"; |
422 | 0 | LOG(INFO) << msg; |
423 | 0 | std::cout << msg << std::endl; |
424 | 0 | } |
425 | | |
426 | 4 | if (server) { |
427 | | // Add service |
428 | 1 | auto recycler_service = |
429 | 1 | new RecyclerServiceImpl(txn_kv_, this, checker_.get(), txn_lazy_committer_); |
430 | 1 | server->AddService(recycler_service, brpc::SERVER_OWNS_SERVICE); |
431 | 1 | } |
432 | | |
433 | 4 | workers_.emplace_back([this] { instance_scanner_callback(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler5startEPN4brpc6ServerEENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler5startEPN4brpc6ServerEENK3$_0clEv Line | Count | Source | 433 | 4 | workers_.emplace_back([this] { instance_scanner_callback(); }); |
|
434 | 12 | for (int i = 0; i < config::recycle_concurrency; ++i) { |
435 | 8 | workers_.emplace_back([this] { recycle_callback(); });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud8Recycler5startEPN4brpc6ServerEENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud8Recycler5startEPN4brpc6ServerEENK3$_1clEv Line | Count | Source | 435 | 8 | workers_.emplace_back([this] { recycle_callback(); }); |
|
436 | 8 | } |
437 | | |
438 | 4 | workers_.emplace_back(std::mem_fn(&Recycler::lease_recycle_jobs), this); |
439 | 4 | workers_.emplace_back(std::mem_fn(&Recycler::check_recycle_tasks), this); |
440 | | |
441 | 4 | if (config::enable_snapshot_data_migrator) { |
442 | 0 | snapshot_data_migrator_ = std::make_shared<SnapshotDataMigrator>(txn_kv_); |
443 | 0 | int ret = snapshot_data_migrator_->start(); |
444 | 0 | if (ret != 0) { |
445 | 0 | LOG(ERROR) << "failed to start snapshot data migrator"; |
446 | 0 | return ret; |
447 | 0 | } |
448 | 0 | LOG(INFO) << "snapshot data migrator started"; |
449 | 0 | } |
450 | | |
451 | 4 | if (config::enable_snapshot_chain_compactor) { |
452 | 0 | snapshot_chain_compactor_ = std::make_shared<SnapshotChainCompactor>(txn_kv_); |
453 | 0 | int ret = snapshot_chain_compactor_->start(); |
454 | 0 | if (ret != 0) { |
455 | 0 | LOG(ERROR) << "failed to start snapshot chain compactor"; |
456 | 0 | return ret; |
457 | 0 | } |
458 | 0 | LOG(INFO) << "snapshot chain compactor started"; |
459 | 0 | } |
460 | | |
461 | 4 | return 0; |
462 | 4 | } |
463 | | |
464 | 4 | void Recycler::stop() { |
465 | 4 | stopped_ = true; |
466 | 4 | notifier_.notify_all(); |
467 | 4 | pending_instance_cond_.notify_all(); |
468 | 4 | { |
469 | 4 | std::lock_guard lock(mtx_); |
470 | 4 | for (auto& [_, recycler] : recycling_instance_map_) { |
471 | 0 | recycler->stop(); |
472 | 0 | } |
473 | 4 | } |
474 | 20 | for (auto& w : workers_) { |
475 | 20 | if (w.joinable()) w.join(); |
476 | 20 | } |
477 | 4 | if (checker_) { |
478 | 0 | checker_->stop(); |
479 | 0 | } |
480 | 4 | if (snapshot_data_migrator_) { |
481 | 0 | snapshot_data_migrator_->stop(); |
482 | 0 | } |
483 | 4 | if (snapshot_chain_compactor_) { |
484 | 0 | snapshot_chain_compactor_->stop(); |
485 | 0 | } |
486 | 4 | } |
487 | | |
488 | | class InstanceRecycler::InvertedIndexIdCache { |
489 | | public: |
490 | | InvertedIndexIdCache(std::string instance_id, std::shared_ptr<TxnKv> txn_kv) |
491 | 124 | : instance_id_(std::move(instance_id)), txn_kv_(std::move(txn_kv)) {} |
492 | | |
493 | | // Return 0 if success, 1 if schema kv not found, negative for error |
494 | | // For the same index_id, schema_version, res, since `get` is not completely atomic |
495 | | // one thread has not finished inserting, and another thread has not get the index_id and schema_version, |
496 | | // resulting in repeated addition and inaccuracy. |
497 | | // however, this approach can reduce the lock range and sacrifice a bit of meta repeated get to improve concurrency performance. |
498 | | // repeated addition does not affect correctness. |
499 | 28.0k | int get(int64_t index_id, int32_t schema_version, InvertedIndexInfo& res) { |
500 | 28.0k | { |
501 | 28.0k | std::lock_guard lock(mtx_); |
502 | 28.0k | if (schemas_without_inverted_index_.count({index_id, schema_version})) { |
503 | 3.82k | return 0; |
504 | 3.82k | } |
505 | 24.1k | if (auto it = inverted_index_id_map_.find({index_id, schema_version}); |
506 | 24.1k | it != inverted_index_id_map_.end()) { |
507 | 16.9k | res = it->second; |
508 | 16.9k | return 0; |
509 | 16.9k | } |
510 | 24.1k | } |
511 | | // Get schema from kv |
512 | | // TODO(plat1ko): Single flight |
513 | 7.18k | std::unique_ptr<Transaction> txn; |
514 | 7.18k | TxnErrorCode err = txn_kv_->create_txn(&txn); |
515 | 7.18k | if (err != TxnErrorCode::TXN_OK) { |
516 | 0 | LOG(WARNING) << "failed to create txn, err=" << err; |
517 | 0 | return -1; |
518 | 0 | } |
519 | 7.18k | auto schema_key = meta_schema_key({instance_id_, index_id, schema_version}); |
520 | 7.18k | ValueBuf val_buf; |
521 | 7.18k | err = cloud::blob_get(txn.get(), schema_key, &val_buf); |
522 | 7.18k | if (err != TxnErrorCode::TXN_OK) { |
523 | 504 | LOG(WARNING) << "failed to get schema, err=" << err; |
524 | 504 | return static_cast<int>(err); |
525 | 504 | } |
526 | 6.68k | doris::TabletSchemaCloudPB schema; |
527 | 6.68k | if (!parse_schema_value(val_buf, &schema)) { |
528 | 0 | LOG(WARNING) << "malformed schema value, key=" << hex(schema_key); |
529 | 0 | return -1; |
530 | 0 | } |
531 | 6.68k | if (schema.index_size() > 0) { |
532 | 4.91k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
533 | 4.91k | if (schema.has_inverted_index_storage_format()) { |
534 | 4.90k | index_format = schema.inverted_index_storage_format(); |
535 | 4.90k | } |
536 | 4.91k | res.first = index_format; |
537 | 4.91k | res.second.reserve(schema.index_size()); |
538 | 12.6k | for (auto& i : schema.index()) { |
539 | 12.6k | if (i.has_index_type() && i.index_type() == IndexType::INVERTED) { |
540 | 12.6k | res.second.push_back(std::make_pair(i.index_id(), i.index_suffix_name())); |
541 | 12.6k | } |
542 | 12.6k | } |
543 | 4.91k | } |
544 | 6.68k | insert(index_id, schema_version, res); |
545 | 6.68k | return 0; |
546 | 6.68k | } |
547 | | |
548 | | // Empty `ids` means this schema has no inverted index |
549 | 6.68k | void insert(int64_t index_id, int32_t schema_version, const InvertedIndexInfo& index_info) { |
550 | 6.68k | if (index_info.second.empty()) { |
551 | 1.77k | TEST_SYNC_POINT("InvertedIndexIdCache::insert1"); |
552 | 1.77k | std::lock_guard lock(mtx_); |
553 | 1.77k | schemas_without_inverted_index_.emplace(index_id, schema_version); |
554 | 4.91k | } else { |
555 | 4.91k | TEST_SYNC_POINT("InvertedIndexIdCache::insert2"); |
556 | 4.91k | std::lock_guard lock(mtx_); |
557 | 4.91k | inverted_index_id_map_.try_emplace({index_id, schema_version}, index_info); |
558 | 4.91k | } |
559 | 6.68k | } |
560 | | |
561 | | private: |
562 | | std::string instance_id_; |
563 | | std::shared_ptr<TxnKv> txn_kv_; |
564 | | |
565 | | std::mutex mtx_; |
566 | | using Key = std::pair<int64_t, int32_t>; // <index_id, schema_version> |
567 | | struct HashOfKey { |
568 | 58.8k | size_t operator()(const Key& key) const { |
569 | 58.8k | size_t seed = 0; |
570 | 58.8k | seed = std::hash<int64_t> {}(key.first); |
571 | 58.8k | seed = std::hash<int32_t> {}(key.second); |
572 | 58.8k | return seed; |
573 | 58.8k | } |
574 | | }; |
575 | | // <index_id, schema_version> -> inverted_index_ids |
576 | | std::unordered_map<Key, InvertedIndexInfo, HashOfKey> inverted_index_id_map_; |
577 | | // Store <index_id, schema_version> of schema which doesn't have inverted index |
578 | | std::unordered_set<Key, HashOfKey> schemas_without_inverted_index_; |
579 | | }; |
580 | | |
581 | | InstanceRecycler::InstanceRecycler(std::shared_ptr<TxnKv> txn_kv, const InstanceInfoPB& instance, |
582 | | RecyclerThreadPoolGroup thread_pool_group, |
583 | | std::shared_ptr<TxnLazyCommitter> txn_lazy_committer) |
584 | | : txn_kv_(std::move(txn_kv)), |
585 | | instance_id_(instance.instance_id()), |
586 | | instance_info_(instance), |
587 | | inverted_index_id_cache_(std::make_unique<InvertedIndexIdCache>(instance_id_, txn_kv_)), |
588 | | _thread_pool_group(std::move(thread_pool_group)), |
589 | | txn_lazy_committer_(std::move(txn_lazy_committer)), |
590 | | delete_bitmap_lock_white_list_(std::make_shared<DeleteBitmapLockWhiteList>()), |
591 | 124 | resource_mgr_(std::make_shared<ResourceManager>(txn_kv_)) { |
592 | 124 | delete_bitmap_lock_white_list_->init(); |
593 | 124 | resource_mgr_->init(); |
594 | 124 | snapshot_manager_ = std::make_shared<SnapshotManager>(txn_kv_); |
595 | | |
596 | | // Since the recycler's resource manager could not be notified when instance info changes, |
597 | | // we need to refresh the instance info here to ensure the resource manager has the latest info. |
598 | 124 | txn_lazy_committer_->resource_manager()->refresh_instance(instance_id_, instance); |
599 | 124 | }; |
600 | | |
601 | 124 | InstanceRecycler::~InstanceRecycler() = default; |
602 | | |
603 | 108 | int InstanceRecycler::init_obj_store_accessors() { |
604 | 108 | for (const auto& obj_info : instance_info_.obj_info()) { |
605 | 68 | #ifdef UNIT_TEST |
606 | 68 | auto accessor = std::make_shared<MockAccessor>(); |
607 | | #else |
608 | | auto s3_conf = S3Conf::from_obj_store_info(obj_info); |
609 | | if (!s3_conf) { |
610 | | LOG(WARNING) << "failed to init object accessor, instance_id=" << instance_id_; |
611 | | return -1; |
612 | | } |
613 | | |
614 | | std::shared_ptr<S3Accessor> accessor; |
615 | | int ret = S3Accessor::create(std::move(*s3_conf), &accessor); |
616 | | if (ret != 0) { |
617 | | LOG(WARNING) << "failed to init s3 accessor. instance_id=" << instance_id_ |
618 | | << " resource_id=" << obj_info.id(); |
619 | | return ret; |
620 | | } |
621 | | #endif |
622 | 68 | accessor_map_.emplace(obj_info.id(), std::move(accessor)); |
623 | 68 | } |
624 | | |
625 | 108 | return 0; |
626 | 108 | } |
627 | | |
628 | 108 | int InstanceRecycler::init_storage_vault_accessors() { |
629 | 108 | if (instance_info_.resource_ids().empty()) { |
630 | 101 | return 0; |
631 | 101 | } |
632 | | |
633 | 7 | FullRangeGetOptions opts(txn_kv_); |
634 | 7 | opts.prefetch = true; |
635 | 7 | auto it = txn_kv_->full_range_get(storage_vault_key({instance_id_, ""}), |
636 | 7 | storage_vault_key({instance_id_, "\xff"}), std::move(opts)); |
637 | | |
638 | 25 | for (auto kv = it->next(); kv.has_value(); kv = it->next()) { |
639 | 18 | auto [k, v] = *kv; |
640 | 18 | StorageVaultPB vault; |
641 | 18 | if (!vault.ParseFromArray(v.data(), v.size())) { |
642 | 0 | LOG(WARNING) << "malformed storage vault, unable to deserialize key=" << hex(k); |
643 | 0 | return -1; |
644 | 0 | } |
645 | 18 | std::string recycler_storage_vault_white_list = accumulate( |
646 | 18 | config::recycler_storage_vault_white_list.begin(), |
647 | 18 | config::recycler_storage_vault_white_list.end(), std::string(), |
648 | 24 | [](std::string a, std::string b) { return a + (a.empty() ? "" : ",") + b; });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler28init_storage_vault_accessorsEvENK3$_0clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler28init_storage_vault_accessorsEvENK3$_0clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_ Line | Count | Source | 648 | 24 | [](std::string a, std::string b) { return a + (a.empty() ? "" : ",") + b; }); |
|
649 | 18 | LOG_INFO("config::recycler_storage_vault_white_list") |
650 | 18 | .tag("", recycler_storage_vault_white_list); |
651 | 18 | if (!config::recycler_storage_vault_white_list.empty()) { |
652 | 8 | if (auto it = std::find(config::recycler_storage_vault_white_list.begin(), |
653 | 8 | config::recycler_storage_vault_white_list.end(), vault.name()); |
654 | 8 | it == config::recycler_storage_vault_white_list.end()) { |
655 | 2 | LOG_WARNING( |
656 | 2 | "failed to init accessor for vault because this vault is not in " |
657 | 2 | "config::recycler_storage_vault_white_list. ") |
658 | 2 | .tag(" vault name:", vault.name()) |
659 | 2 | .tag(" config::recycler_storage_vault_white_list:", |
660 | 2 | recycler_storage_vault_white_list); |
661 | 2 | continue; |
662 | 2 | } |
663 | 8 | } |
664 | 16 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::init_storage_vault_accessors.mock_vault", |
665 | 16 | &accessor_map_, &vault); |
666 | 16 | if (vault.has_hdfs_info()) { |
667 | 9 | #ifdef ENABLE_HDFS_STORAGE_VAULT |
668 | 9 | auto accessor = std::make_shared<HdfsAccessor>(vault.hdfs_info()); |
669 | 9 | int ret = accessor->init(); |
670 | 9 | if (ret != 0) { |
671 | 4 | LOG(WARNING) << "failed to init hdfs accessor. instance_id=" << instance_id_ |
672 | 4 | << " resource_id=" << vault.id() << " name=" << vault.name() |
673 | 4 | << " hdfs_vault=" << vault.hdfs_info().ShortDebugString(); |
674 | 4 | continue; |
675 | 4 | } |
676 | 5 | LOG(INFO) << "succeed to init hdfs accessor. instance_id=" << instance_id_ |
677 | 5 | << " resource_id=" << vault.id() << " name=" << vault.name() |
678 | 5 | << " hdfs_vault=" << vault.hdfs_info().ShortDebugString(); |
679 | 5 | accessor_map_.emplace(vault.id(), std::move(accessor)); |
680 | | #else |
681 | | LOG(ERROR) << "HDFS is disabled (via the ENABLE_HDFS_STORAGE_VAULT build option), " |
682 | | << "but HDFS storage vaults were detected"; |
683 | | #endif |
684 | 7 | } else if (vault.has_obj_info()) { |
685 | 7 | auto s3_conf = S3Conf::from_obj_store_info(vault.obj_info()); |
686 | 7 | if (!s3_conf) { |
687 | 1 | LOG(WARNING) << "failed to init object accessor, invalid conf, instance_id=" |
688 | 1 | << instance_id_ << " s3_vault=" << vault.obj_info().ShortDebugString(); |
689 | 1 | continue; |
690 | 1 | } |
691 | | |
692 | 6 | std::shared_ptr<S3Accessor> accessor; |
693 | 6 | int ret = S3Accessor::create(*s3_conf, &accessor); |
694 | 6 | if (ret != 0) { |
695 | 0 | LOG(WARNING) << "failed to init s3 accessor. instance_id=" << instance_id_ |
696 | 0 | << " resource_id=" << vault.id() << " name=" << vault.name() |
697 | 0 | << " ret=" << ret |
698 | 0 | << " s3_vault=" << encryt_sk(vault.obj_info().ShortDebugString()); |
699 | 0 | continue; |
700 | 0 | } |
701 | 6 | LOG(INFO) << "succeed to init s3 accessor. instance_id=" << instance_id_ |
702 | 6 | << " resource_id=" << vault.id() << " name=" << vault.name() << " ret=" << ret |
703 | 6 | << " s3_vault=" << encryt_sk(vault.obj_info().ShortDebugString()); |
704 | 6 | accessor_map_.emplace(vault.id(), std::move(accessor)); |
705 | 6 | } |
706 | 16 | } |
707 | | |
708 | 7 | if (!it->is_valid()) { |
709 | 0 | LOG_WARNING("failed to get storage vault kv"); |
710 | 0 | return -1; |
711 | 0 | } |
712 | | |
713 | 7 | if (accessor_map_.empty()) { |
714 | 1 | LOG(WARNING) << "no accessors for instance=" << instance_id_; |
715 | 1 | return -2; |
716 | 1 | } |
717 | 6 | LOG_INFO("finish init instance recycler number_accessors={} instance=", accessor_map_.size(), |
718 | 6 | instance_id_); |
719 | | |
720 | 6 | return 0; |
721 | 7 | } |
722 | | |
723 | 108 | int InstanceRecycler::init() { |
724 | 108 | int ret = init_obj_store_accessors(); |
725 | 108 | if (ret != 0) { |
726 | 0 | return ret; |
727 | 0 | } |
728 | | |
729 | 108 | return init_storage_vault_accessors(); |
730 | 108 | } |
731 | | |
732 | | template <typename... Func> |
733 | 120 | auto task_wrapper(Func... funcs) -> std::function<int()> { |
734 | 120 | return [funcs...]() { |
735 | 120 | return [](std::initializer_list<int> ret_vals) { |
736 | 120 | int i = 0; |
737 | 140 | for (int ret : ret_vals) { |
738 | 140 | if (ret != 0) { |
739 | 0 | i = ret; |
740 | 0 | } |
741 | 140 | } |
742 | 120 | return i; |
743 | 120 | }({funcs()...});Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESC_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESC_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESC_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 20 | for (int ret : ret_vals) { | 738 | 20 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 20 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESC_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 20 | for (int ret : ret_vals) { | 738 | 20 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 20 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
recycler_test.cpp:_ZZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ENKUlvE_clEvENKUlSt16initializer_listIiEE_clESB_ Line | Count | Source | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 0 | i = ret; | 740 | 0 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); |
|
744 | 120 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ENKUlvE_clEv Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ENKUlvE_clEv recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
recycler_test.cpp:_ZZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ENKUlvE_clEv Line | Count | Source | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; |
|
745 | 120 | } Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ Unexecuted instantiation: recycler.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_2EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_3EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_4ZNS2_10do_recycleEvE3$_5EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_6EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_7EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_8EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE3$_9ZNS2_10do_recycleEvE4$_10EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_11EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_12EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_13EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_14EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
recycler_test.cpp:_ZN5doris5cloud12task_wrapperIJZNS0_16InstanceRecycler10do_recycleEvE4$_15EEESt8functionIFivEEDpT_ Line | Count | Source | 733 | 10 | auto task_wrapper(Func... funcs) -> std::function<int()> { | 734 | 10 | return [funcs...]() { | 735 | 10 | return [](std::initializer_list<int> ret_vals) { | 736 | 10 | int i = 0; | 737 | 10 | for (int ret : ret_vals) { | 738 | 10 | if (ret != 0) { | 739 | 10 | i = ret; | 740 | 10 | } | 741 | 10 | } | 742 | 10 | return i; | 743 | 10 | }({funcs()...}); | 744 | 10 | }; | 745 | 10 | } |
|
746 | | |
747 | 10 | int InstanceRecycler::do_recycle() { |
748 | 10 | TEST_SYNC_POINT("InstanceRecycler.do_recycle"); |
749 | 10 | tablet_metrics_context_.reset(); |
750 | 10 | segment_metrics_context_.reset(); |
751 | 10 | DORIS_CLOUD_DEFER { |
752 | 10 | tablet_metrics_context_.finish_report(); |
753 | 10 | segment_metrics_context_.finish_report(); |
754 | 10 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_0clEv Line | Count | Source | 751 | 10 | DORIS_CLOUD_DEFER { | 752 | 10 | tablet_metrics_context_.finish_report(); | 753 | 10 | segment_metrics_context_.finish_report(); | 754 | 10 | }; |
|
755 | 10 | if (instance_info_.status() == InstanceInfoPB::DELETED) { |
756 | 0 | int res = recycle_cluster_snapshots(); |
757 | 0 | if (res != 0) { |
758 | 0 | return -1; |
759 | 0 | } |
760 | 0 | return recycle_deleted_instance(); |
761 | 10 | } else if (instance_info_.status() == InstanceInfoPB::NORMAL) { |
762 | 10 | SyncExecutor<int> sync_executor(_thread_pool_group.group_recycle_function_pool, |
763 | 10 | fmt::format("instance id {}", instance_id_), |
764 | 120 | [](int r) { return r != 0; });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_1clEi recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_1clEi Line | Count | Source | 764 | 120 | [](int r) { return r != 0; }); |
|
765 | 10 | sync_executor |
766 | 10 | .add(task_wrapper( |
767 | 10 | [this]() { return InstanceRecycler::recycle_cluster_snapshots(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_2clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_2clEv Line | Count | Source | 767 | 10 | [this]() { return InstanceRecycler::recycle_cluster_snapshots(); })) |
|
768 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_operation_logs(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_3clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_3clEv Line | Count | Source | 768 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_operation_logs(); })) |
|
769 | 10 | .add(task_wrapper( // dropped table and dropped partition need to be recycled in series |
770 | | // becase they may both recycle the same set of tablets |
771 | | // recycle dropped table or idexes(mv, rollup) |
772 | 10 | [this]() -> int { return InstanceRecycler::recycle_indexes(); },Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_4clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_4clEv Line | Count | Source | 772 | 10 | [this]() -> int { return InstanceRecycler::recycle_indexes(); }, |
|
773 | | // recycle dropped partitions |
774 | 10 | [this]() -> int { return InstanceRecycler::recycle_partitions(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_5clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_5clEv Line | Count | Source | 774 | 10 | [this]() -> int { return InstanceRecycler::recycle_partitions(); })) |
|
775 | 10 | .add(task_wrapper( |
776 | 10 | [this]() -> int { return InstanceRecycler::recycle_tmp_rowsets(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_6clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_6clEv Line | Count | Source | 776 | 10 | [this]() -> int { return InstanceRecycler::recycle_tmp_rowsets(); })) |
|
777 | 10 | .add(task_wrapper([this]() -> int { return InstanceRecycler::recycle_rowsets(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_7clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_7clEv Line | Count | Source | 777 | 10 | .add(task_wrapper([this]() -> int { return InstanceRecycler::recycle_rowsets(); })) |
|
778 | 10 | .add(task_wrapper( |
779 | 10 | [this]() -> int { return InstanceRecycler::recycle_packed_files(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_8clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_8clEv Line | Count | Source | 779 | 10 | [this]() -> int { return InstanceRecycler::recycle_packed_files(); })) |
|
780 | 10 | .add(task_wrapper( |
781 | 10 | [this]() { return InstanceRecycler::abort_timeout_txn(); },Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_9clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK3$_9clEv Line | Count | Source | 781 | 10 | [this]() { return InstanceRecycler::abort_timeout_txn(); }, |
|
782 | 10 | [this]() { return InstanceRecycler::recycle_expired_txn_label(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_10clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_10clEv Line | Count | Source | 782 | 10 | [this]() { return InstanceRecycler::recycle_expired_txn_label(); })) |
|
783 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_copy_jobs(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_11clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_11clEv Line | Count | Source | 783 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_copy_jobs(); })) |
|
784 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_stage(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_12clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_12clEv Line | Count | Source | 784 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_stage(); })) |
|
785 | 10 | .add(task_wrapper( |
786 | 10 | [this]() { return InstanceRecycler::recycle_expired_stage_objects(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_13clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_13clEv Line | Count | Source | 786 | 10 | [this]() { return InstanceRecycler::recycle_expired_stage_objects(); })) |
|
787 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_versions(); }))Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_14clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_14clEv Line | Count | Source | 787 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_versions(); })) |
|
788 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_restore_jobs(); }));Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_15clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler10do_recycleEvENK4$_15clEv Line | Count | Source | 788 | 10 | .add(task_wrapper([this]() { return InstanceRecycler::recycle_restore_jobs(); })); |
|
789 | 10 | bool finished = true; |
790 | 10 | std::vector<int> rets = sync_executor.when_all(&finished); |
791 | 120 | for (int ret : rets) { |
792 | 120 | if (ret != 0) { |
793 | 0 | return ret; |
794 | 0 | } |
795 | 120 | } |
796 | 10 | return finished ? 0 : -1; |
797 | 10 | } else { |
798 | 0 | LOG(WARNING) << "invalid instance status: " << instance_info_.status() |
799 | 0 | << " instance_id=" << instance_id_; |
800 | 0 | return -1; |
801 | 0 | } |
802 | 10 | } |
803 | | |
804 | | /** |
805 | | * 1. delete all remote data |
806 | | * 2. delete all kv |
807 | | * 3. remove instance kv |
808 | | */ |
809 | 4 | int InstanceRecycler::recycle_deleted_instance() { |
810 | 4 | LOG_WARNING("begin to recycle deleted instance").tag("instance_id", instance_id_); |
811 | | |
812 | 4 | int ret = 0; |
813 | 4 | auto start_time = steady_clock::now(); |
814 | | |
815 | 4 | DORIS_CLOUD_DEFER { |
816 | 4 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
817 | 4 | LOG(WARNING) << (ret == 0 ? "successfully" : "failed to") |
818 | 4 | << " recycle deleted instance, cost=" << cost |
819 | 4 | << "s, instance_id=" << instance_id_; |
820 | 4 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_deleted_instanceEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_deleted_instanceEvENK3$_0clEv Line | Count | Source | 815 | 4 | DORIS_CLOUD_DEFER { | 816 | 4 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 817 | 4 | LOG(WARNING) << (ret == 0 ? "successfully" : "failed to") | 818 | 4 | << " recycle deleted instance, cost=" << cost | 819 | 4 | << "s, instance_id=" << instance_id_; | 820 | 4 | }; |
|
821 | | |
822 | 4 | bool has_snapshots = false; |
823 | 4 | if (has_cluster_snapshots(&has_snapshots) != 0) { |
824 | 0 | LOG(WARNING) << "check instance cluster snapshots failed, instance_id=" << instance_id_; |
825 | 0 | return -1; |
826 | 4 | } else if (has_snapshots) { |
827 | 1 | LOG(INFO) << "instance has cluster snapshots, skip recycling, instance_id=" << instance_id_; |
828 | 1 | return 0; |
829 | 1 | } |
830 | | |
831 | 3 | if (recycle_operation_logs() != 0) { |
832 | 0 | LOG_WARNING("failed to recycle operation logs").tag("instance_id", instance_id_); |
833 | 0 | return -1; |
834 | 0 | } |
835 | | |
836 | 3 | if (recycle_versioned_rowsets() != 0) { |
837 | 0 | LOG_WARNING("failed to recycle versioned rowsets").tag("instance_id", instance_id_); |
838 | 0 | return -1; |
839 | 0 | } |
840 | | |
841 | 3 | bool snapshot_enabled = instance_info().has_snapshot_switch_status() && |
842 | 3 | instance_info().snapshot_switch_status() != |
843 | 0 | SnapshotSwitchStatus::SNAPSHOT_SWITCH_DISABLED; |
844 | 3 | if (snapshot_enabled) { |
845 | 0 | bool has_unrecycled_rowsets = false; |
846 | 0 | if (recycle_ref_rowsets(&has_unrecycled_rowsets) != 0) { |
847 | 0 | LOG_WARNING("failed to recycle ref rowsets").tag("instance_id", instance_id_); |
848 | 0 | return -1; |
849 | 0 | } else if (has_unrecycled_rowsets) { |
850 | 0 | LOG_INFO("instance has referenced rowsets, skip recycling") |
851 | 0 | .tag("instance_id", instance_id_); |
852 | 0 | return ret; |
853 | 0 | } |
854 | 3 | } else { // delete all remote data if snapshot is disabled |
855 | 3 | for (auto& [_, accessor] : accessor_map_) { |
856 | 3 | if (stopped()) { |
857 | 0 | return ret; |
858 | 0 | } |
859 | | |
860 | 3 | LOG(INFO) << "begin to delete all objects in " << accessor->uri(); |
861 | 3 | int del_ret = accessor->delete_all(); |
862 | 3 | if (del_ret == 0) { |
863 | 3 | LOG(INFO) << "successfully delete all objects in " << accessor->uri(); |
864 | 3 | } else if (del_ret != 1) { // no need to log, because S3Accessor has logged this error |
865 | | // If `del_ret == 1`, it can be considered that the object data has been recycled by cloud platform, |
866 | | // so the recycling has been successful. |
867 | 0 | ret = -1; |
868 | 0 | } |
869 | 3 | } |
870 | | |
871 | 3 | if (ret != 0) { |
872 | 0 | LOG(WARNING) << "failed to delete all data of deleted instance=" << instance_id_; |
873 | 0 | return ret; |
874 | 0 | } |
875 | 3 | } |
876 | | |
877 | | // delete all kv |
878 | 3 | std::unique_ptr<Transaction> txn; |
879 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
880 | 3 | if (err != TxnErrorCode::TXN_OK) { |
881 | 0 | LOG(WARNING) << "failed to create txn"; |
882 | 0 | ret = -1; |
883 | 0 | return -1; |
884 | 0 | } |
885 | 3 | LOG(INFO) << "begin to delete all kv, instance_id=" << instance_id_; |
886 | | // delete kv before deleting objects to prevent the checker from misjudging data loss |
887 | 3 | std::string start_txn_key = txn_key_prefix(instance_id_); |
888 | 3 | std::string end_txn_key = txn_key_prefix(instance_id_ + '\x00'); |
889 | 3 | txn->remove(start_txn_key, end_txn_key); |
890 | 3 | std::string start_version_key = version_key_prefix(instance_id_); |
891 | 3 | std::string end_version_key = version_key_prefix(instance_id_ + '\x00'); |
892 | 3 | txn->remove(start_version_key, end_version_key); |
893 | 3 | std::string start_meta_key = meta_key_prefix(instance_id_); |
894 | 3 | std::string end_meta_key = meta_key_prefix(instance_id_ + '\x00'); |
895 | 3 | txn->remove(start_meta_key, end_meta_key); |
896 | 3 | std::string start_recycle_key = recycle_key_prefix(instance_id_); |
897 | 3 | std::string end_recycle_key = recycle_key_prefix(instance_id_ + '\x00'); |
898 | 3 | txn->remove(start_recycle_key, end_recycle_key); |
899 | 3 | std::string start_stats_tablet_key = stats_tablet_key({instance_id_, 0, 0, 0, 0}); |
900 | 3 | std::string end_stats_tablet_key = stats_tablet_key({instance_id_, INT64_MAX, 0, 0, 0}); |
901 | 3 | txn->remove(start_stats_tablet_key, end_stats_tablet_key); |
902 | 3 | std::string start_copy_key = copy_key_prefix(instance_id_); |
903 | 3 | std::string end_copy_key = copy_key_prefix(instance_id_ + '\x00'); |
904 | 3 | txn->remove(start_copy_key, end_copy_key); |
905 | | // should not remove job key range, because we need to reserve job recycle kv |
906 | | // 0:instance_id 1:table_id 2:index_id 3:part_id 4:tablet_id |
907 | 3 | std::string start_job_tablet_key = job_tablet_key({instance_id_, 0, 0, 0, 0}); |
908 | 3 | std::string end_job_tablet_key = job_tablet_key({instance_id_, INT64_MAX, 0, 0, 0}); |
909 | 3 | txn->remove(start_job_tablet_key, end_job_tablet_key); |
910 | 3 | StorageVaultKeyInfo key_info0 {instance_id_, ""}; |
911 | 3 | StorageVaultKeyInfo key_info1 {instance_id_, "\xff"}; |
912 | 3 | std::string start_vault_key = storage_vault_key(key_info0); |
913 | 3 | std::string end_vault_key = storage_vault_key(key_info1); |
914 | 3 | txn->remove(start_vault_key, end_vault_key); |
915 | 3 | std::string versioned_version_key_start = versioned::version_key_prefix(instance_id_); |
916 | 3 | std::string versioned_version_key_end = versioned::version_key_prefix(instance_id_ + '\x00'); |
917 | 3 | txn->remove(versioned_version_key_start, versioned_version_key_end); |
918 | 3 | std::string versioned_index_key_start = versioned::index_key_prefix(instance_id_); |
919 | 3 | std::string versioned_index_key_end = versioned::index_key_prefix(instance_id_ + '\x00'); |
920 | 3 | txn->remove(versioned_index_key_start, versioned_index_key_end); |
921 | 3 | std::string versioned_stats_tablet_key_start = versioned::stats_key_prefix(instance_id_); |
922 | 3 | std::string versioned_stats_tablet_key_end = versioned::stats_key_prefix(instance_id_ + '\x00'); |
923 | 3 | txn->remove(versioned_stats_tablet_key_start, versioned_stats_tablet_key_end); |
924 | 3 | std::string versioned_meta_key_start = versioned::meta_key_prefix(instance_id_); |
925 | 3 | std::string versioned_meta_key_end = versioned::meta_key_prefix(instance_id_ + '\x00'); |
926 | 3 | txn->remove(versioned_meta_key_start, versioned_meta_key_end); |
927 | 3 | std::string versioned_data_key_start = versioned::data_key_prefix(instance_id_); |
928 | 3 | std::string versioned_data_key_end = versioned::data_key_prefix(instance_id_ + '\x00'); |
929 | 3 | txn->remove(versioned_data_key_start, versioned_data_key_end); |
930 | 3 | std::string versioned_log_key_start = versioned::log_key_prefix(instance_id_); |
931 | 3 | std::string versioned_log_key_end = versioned::log_key_prefix(instance_id_ + '\x00'); |
932 | 3 | txn->remove(versioned_log_key_start, versioned_log_key_end); |
933 | 3 | err = txn->commit(); |
934 | 3 | if (err != TxnErrorCode::TXN_OK) { |
935 | 0 | LOG(WARNING) << "failed to delete all kv, instance_id=" << instance_id_ << ", err=" << err; |
936 | 0 | ret = -1; |
937 | 0 | } |
938 | | |
939 | 3 | if (ret == 0) { |
940 | | // remove instance kv |
941 | | // ATTN: MUST ensure that cloud platform won't regenerate the same instance id |
942 | 3 | err = txn_kv_->create_txn(&txn); |
943 | 3 | if (err != TxnErrorCode::TXN_OK) { |
944 | 0 | LOG(WARNING) << "failed to create txn"; |
945 | 0 | ret = -1; |
946 | 0 | return ret; |
947 | 0 | } |
948 | 3 | std::string key; |
949 | 3 | instance_key({instance_id_}, &key); |
950 | 3 | txn->atomic_add(system_meta_service_instance_update_key(), 1); |
951 | 3 | txn->remove(key); |
952 | 3 | err = txn->commit(); |
953 | 3 | if (err != TxnErrorCode::TXN_OK) { |
954 | 0 | LOG(WARNING) << "failed to delete instance kv, instance_id=" << instance_id_ |
955 | 0 | << " err=" << err; |
956 | 0 | ret = -1; |
957 | 0 | } |
958 | 3 | } |
959 | 3 | return ret; |
960 | 3 | } |
961 | | |
962 | | int InstanceRecycler::check_rowset_exists(int64_t tablet_id, const std::string& rowset_id, |
963 | 9 | bool* exists, PackedFileRecycleStats* stats) { |
964 | 9 | if (exists == nullptr) { |
965 | 0 | return -1; |
966 | 0 | } |
967 | 9 | *exists = false; |
968 | | |
969 | 9 | std::string begin = meta_rowset_key({instance_id_, tablet_id, 0}); |
970 | 9 | std::string end = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
971 | 9 | std::string scan_begin = begin; |
972 | | |
973 | 9 | while (true) { |
974 | 9 | std::unique_ptr<RangeGetIterator> it_range; |
975 | 9 | int get_ret = txn_get(txn_kv_.get(), scan_begin, end, it_range); |
976 | 9 | if (get_ret < 0) { |
977 | 0 | LOG_WARNING("failed to scan rowset metas when recycling packed file") |
978 | 0 | .tag("instance_id", instance_id_) |
979 | 0 | .tag("tablet_id", tablet_id) |
980 | 0 | .tag("ret", get_ret); |
981 | 0 | return -1; |
982 | 0 | } |
983 | 9 | if (get_ret == 1 || it_range == nullptr || !it_range->has_next()) { |
984 | 6 | return 0; |
985 | 6 | } |
986 | | |
987 | 3 | std::string last_key; |
988 | 3 | while (it_range->has_next()) { |
989 | 3 | auto [k, v] = it_range->next(); |
990 | 3 | last_key.assign(k.data(), k.size()); |
991 | 3 | doris::RowsetMetaCloudPB rowset_meta; |
992 | 3 | if (!rowset_meta.ParseFromArray(v.data(), v.size())) { |
993 | 0 | LOG_WARNING("malformed rowset meta when checking packed file rowset existence") |
994 | 0 | .tag("instance_id", instance_id_) |
995 | 0 | .tag("tablet_id", tablet_id) |
996 | 0 | .tag("key", hex(k)); |
997 | 0 | continue; |
998 | 0 | } |
999 | 3 | if (stats) { |
1000 | 3 | ++stats->rowset_scan_count; |
1001 | 3 | } |
1002 | 3 | if (rowset_meta.rowset_id_v2() == rowset_id) { |
1003 | 3 | *exists = true; |
1004 | 3 | return 0; |
1005 | 3 | } |
1006 | 3 | } |
1007 | | |
1008 | 0 | if (!it_range->more()) { |
1009 | 0 | return 0; |
1010 | 0 | } |
1011 | | |
1012 | | // Continue scanning from the next key to keep each transaction short. |
1013 | 0 | scan_begin = std::move(last_key); |
1014 | 0 | scan_begin.push_back('\x00'); |
1015 | 0 | } |
1016 | 9 | } |
1017 | | |
1018 | | int InstanceRecycler::check_recycle_and_tmp_rowset_exists(int64_t tablet_id, |
1019 | | const std::string& rowset_id, |
1020 | | int64_t txn_id, bool* recycle_exists, |
1021 | 11 | bool* tmp_exists) { |
1022 | 11 | if (recycle_exists == nullptr || tmp_exists == nullptr) { |
1023 | 0 | return -1; |
1024 | 0 | } |
1025 | 11 | *recycle_exists = false; |
1026 | 11 | *tmp_exists = false; |
1027 | | |
1028 | 11 | if (txn_id <= 0) { |
1029 | 0 | LOG_WARNING("invalid txn id when checking recycle/tmp rowset existence") |
1030 | 0 | .tag("instance_id", instance_id_) |
1031 | 0 | .tag("tablet_id", tablet_id) |
1032 | 0 | .tag("rowset_id", rowset_id) |
1033 | 0 | .tag("txn_id", txn_id); |
1034 | 0 | return -1; |
1035 | 0 | } |
1036 | | |
1037 | 11 | std::unique_ptr<Transaction> txn; |
1038 | 11 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1039 | 11 | if (err != TxnErrorCode::TXN_OK) { |
1040 | 0 | LOG_WARNING("failed to create txn when checking recycle/tmp rowset existence") |
1041 | 0 | .tag("instance_id", instance_id_) |
1042 | 0 | .tag("tablet_id", tablet_id) |
1043 | 0 | .tag("rowset_id", rowset_id) |
1044 | 0 | .tag("txn_id", txn_id) |
1045 | 0 | .tag("err", err); |
1046 | 0 | return -1; |
1047 | 0 | } |
1048 | | |
1049 | 11 | std::string recycle_key = recycle_rowset_key({instance_id_, tablet_id, rowset_id}); |
1050 | 11 | auto ret = key_exists(txn.get(), recycle_key, true); |
1051 | 11 | if (ret == TxnErrorCode::TXN_OK) { |
1052 | 1 | *recycle_exists = true; |
1053 | 10 | } else if (ret != TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1054 | 0 | LOG_WARNING("failed to check recycle rowset existence") |
1055 | 0 | .tag("instance_id", instance_id_) |
1056 | 0 | .tag("tablet_id", tablet_id) |
1057 | 0 | .tag("rowset_id", rowset_id) |
1058 | 0 | .tag("key", hex(recycle_key)) |
1059 | 0 | .tag("err", ret); |
1060 | 0 | return -1; |
1061 | 0 | } |
1062 | | |
1063 | 11 | std::string tmp_key = meta_rowset_tmp_key({instance_id_, txn_id, tablet_id}); |
1064 | 11 | ret = key_exists(txn.get(), tmp_key, true); |
1065 | 11 | if (ret == TxnErrorCode::TXN_OK) { |
1066 | 1 | *tmp_exists = true; |
1067 | 10 | } else if (ret != TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1068 | 0 | LOG_WARNING("failed to check tmp rowset existence") |
1069 | 0 | .tag("instance_id", instance_id_) |
1070 | 0 | .tag("tablet_id", tablet_id) |
1071 | 0 | .tag("txn_id", txn_id) |
1072 | 0 | .tag("key", hex(tmp_key)) |
1073 | 0 | .tag("err", ret); |
1074 | 0 | return -1; |
1075 | 0 | } |
1076 | | |
1077 | 11 | return 0; |
1078 | 11 | } |
1079 | | |
1080 | | std::pair<std::string, std::shared_ptr<StorageVaultAccessor>> |
1081 | 8 | InstanceRecycler::resolve_packed_file_accessor(const std::string& hint) { |
1082 | 8 | if (!hint.empty()) { |
1083 | 8 | if (auto it = accessor_map_.find(hint); it != accessor_map_.end()) { |
1084 | 8 | return {hint, it->second}; |
1085 | 8 | } |
1086 | 8 | } |
1087 | | |
1088 | 0 | return {"", nullptr}; |
1089 | 8 | } |
1090 | | |
1091 | | int InstanceRecycler::correct_packed_file_info(cloud::PackedFileInfoPB* packed_info, bool* changed, |
1092 | | const std::string& packed_file_path, |
1093 | 3 | PackedFileRecycleStats* stats) { |
1094 | 3 | bool local_changed = false; |
1095 | 3 | int64_t left_num = 0; |
1096 | 3 | int64_t left_bytes = 0; |
1097 | 3 | bool all_small_files_confirmed = true; |
1098 | 3 | LOG(INFO) << "begin to correct file: " << packed_file_path; |
1099 | | |
1100 | 14 | auto log_small_file_status = [&](const cloud::PackedSlicePB& file, bool confirmed_this_round) { |
1101 | 14 | int64_t tablet_id = file.has_tablet_id() ? file.tablet_id() : int64_t {-1}; |
1102 | 14 | std::string rowset_id = file.has_rowset_id() ? file.rowset_id() : std::string {}; |
1103 | 14 | int64_t txn_id = file.has_txn_id() ? file.txn_id() : int64_t {0}; |
1104 | 14 | LOG_INFO("packed slice correction status") |
1105 | 14 | .tag("instance_id", instance_id_) |
1106 | 14 | .tag("packed_file_path", packed_file_path) |
1107 | 14 | .tag("small_file_path", file.path()) |
1108 | 14 | .tag("tablet_id", tablet_id) |
1109 | 14 | .tag("rowset_id", rowset_id) |
1110 | 14 | .tag("txn_id", txn_id) |
1111 | 14 | .tag("size", file.size()) |
1112 | 14 | .tag("deleted", file.deleted()) |
1113 | 14 | .tag("corrected", file.corrected()) |
1114 | 14 | .tag("confirmed_this_round", confirmed_this_round); |
1115 | 14 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24correct_packed_file_infoEPNS0_16PackedFileInfoPBEPbRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS1_22PackedFileRecycleStatsEENK3$_0clERKNS0_13PackedSlicePBEb recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24correct_packed_file_infoEPNS0_16PackedFileInfoPBEPbRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPNS1_22PackedFileRecycleStatsEENK3$_0clERKNS0_13PackedSlicePBEb Line | Count | Source | 1100 | 14 | auto log_small_file_status = [&](const cloud::PackedSlicePB& file, bool confirmed_this_round) { | 1101 | 14 | int64_t tablet_id = file.has_tablet_id() ? file.tablet_id() : int64_t {-1}; | 1102 | 14 | std::string rowset_id = file.has_rowset_id() ? file.rowset_id() : std::string {}; | 1103 | 14 | int64_t txn_id = file.has_txn_id() ? file.txn_id() : int64_t {0}; | 1104 | 14 | LOG_INFO("packed slice correction status") | 1105 | 14 | .tag("instance_id", instance_id_) | 1106 | 14 | .tag("packed_file_path", packed_file_path) | 1107 | 14 | .tag("small_file_path", file.path()) | 1108 | 14 | .tag("tablet_id", tablet_id) | 1109 | 14 | .tag("rowset_id", rowset_id) | 1110 | 14 | .tag("txn_id", txn_id) | 1111 | 14 | .tag("size", file.size()) | 1112 | 14 | .tag("deleted", file.deleted()) | 1113 | 14 | .tag("corrected", file.corrected()) | 1114 | 14 | .tag("confirmed_this_round", confirmed_this_round); | 1115 | 14 | }; |
|
1116 | | |
1117 | 17 | for (int i = 0; i < packed_info->slices_size(); ++i) { |
1118 | 14 | auto* small_file = packed_info->mutable_slices(i); |
1119 | 14 | if (small_file->deleted()) { |
1120 | 3 | log_small_file_status(*small_file, small_file->corrected()); |
1121 | 3 | continue; |
1122 | 3 | } |
1123 | | |
1124 | 11 | if (small_file->corrected()) { |
1125 | 0 | left_num++; |
1126 | 0 | left_bytes += small_file->size(); |
1127 | 0 | log_small_file_status(*small_file, true); |
1128 | 0 | continue; |
1129 | 0 | } |
1130 | | |
1131 | 11 | if (!small_file->has_tablet_id() || !small_file->has_rowset_id()) { |
1132 | 0 | LOG_WARNING("packed file small file missing identifiers during correction") |
1133 | 0 | .tag("instance_id", instance_id_) |
1134 | 0 | .tag("small_file_path", small_file->path()) |
1135 | 0 | .tag("index", i); |
1136 | 0 | return -1; |
1137 | 0 | } |
1138 | | |
1139 | 11 | int64_t tablet_id = small_file->tablet_id(); |
1140 | 11 | const std::string& rowset_id = small_file->rowset_id(); |
1141 | 11 | if (!small_file->has_txn_id() || small_file->txn_id() <= 0) { |
1142 | 0 | LOG_WARNING("packed file small file missing valid txn id during correction") |
1143 | 0 | .tag("instance_id", instance_id_) |
1144 | 0 | .tag("small_file_path", small_file->path()) |
1145 | 0 | .tag("index", i) |
1146 | 0 | .tag("tablet_id", tablet_id) |
1147 | 0 | .tag("rowset_id", rowset_id) |
1148 | 0 | .tag("has_txn_id", small_file->has_txn_id()) |
1149 | 0 | .tag("txn_id", small_file->has_txn_id() ? small_file->txn_id() : 0); |
1150 | 0 | return -1; |
1151 | 0 | } |
1152 | 11 | int64_t txn_id = small_file->txn_id(); |
1153 | 11 | bool recycle_exists = false; |
1154 | 11 | bool tmp_exists = false; |
1155 | 11 | if (check_recycle_and_tmp_rowset_exists(tablet_id, rowset_id, txn_id, &recycle_exists, |
1156 | 11 | &tmp_exists) != 0) { |
1157 | 0 | return -1; |
1158 | 0 | } |
1159 | | |
1160 | 11 | bool small_file_confirmed = false; |
1161 | 11 | if (tmp_exists) { |
1162 | 1 | left_num++; |
1163 | 1 | left_bytes += small_file->size(); |
1164 | 1 | small_file_confirmed = true; |
1165 | 10 | } else if (recycle_exists) { |
1166 | 1 | left_num++; |
1167 | 1 | left_bytes += small_file->size(); |
1168 | | // keep small_file_confirmed=false so the packed file remains uncorrected |
1169 | 9 | } else { |
1170 | 9 | bool rowset_exists = false; |
1171 | 9 | if (check_rowset_exists(tablet_id, rowset_id, &rowset_exists, stats) != 0) { |
1172 | 0 | return -1; |
1173 | 0 | } |
1174 | | |
1175 | 9 | if (!rowset_exists) { |
1176 | 6 | if (!small_file->deleted()) { |
1177 | 6 | small_file->set_deleted(true); |
1178 | 6 | local_changed = true; |
1179 | 6 | } |
1180 | 6 | if (!small_file->corrected()) { |
1181 | 6 | small_file->set_corrected(true); |
1182 | 6 | local_changed = true; |
1183 | 6 | } |
1184 | 6 | small_file_confirmed = true; |
1185 | 6 | } else { |
1186 | 3 | left_num++; |
1187 | 3 | left_bytes += small_file->size(); |
1188 | 3 | small_file_confirmed = true; |
1189 | 3 | } |
1190 | 9 | } |
1191 | | |
1192 | 11 | if (!small_file_confirmed) { |
1193 | 1 | all_small_files_confirmed = false; |
1194 | 1 | } |
1195 | | |
1196 | 11 | if (small_file->corrected() != small_file_confirmed) { |
1197 | 4 | small_file->set_corrected(small_file_confirmed); |
1198 | 4 | local_changed = true; |
1199 | 4 | } |
1200 | | |
1201 | 11 | log_small_file_status(*small_file, small_file_confirmed); |
1202 | 11 | } |
1203 | | |
1204 | 3 | if (packed_info->remaining_slice_bytes() != left_bytes) { |
1205 | 3 | packed_info->set_remaining_slice_bytes(left_bytes); |
1206 | 3 | local_changed = true; |
1207 | 3 | } |
1208 | 3 | if (packed_info->ref_cnt() != left_num) { |
1209 | 3 | auto old_ref_cnt = packed_info->ref_cnt(); |
1210 | 3 | packed_info->set_ref_cnt(left_num); |
1211 | 3 | LOG_INFO("corrected packed file ref count") |
1212 | 3 | .tag("instance_id", instance_id_) |
1213 | 3 | .tag("resource_id", packed_info->resource_id()) |
1214 | 3 | .tag("packed_file_path", packed_file_path) |
1215 | 3 | .tag("old_ref_cnt", old_ref_cnt) |
1216 | 3 | .tag("new_ref_cnt", left_num); |
1217 | 3 | local_changed = true; |
1218 | 3 | } |
1219 | 3 | if (packed_info->corrected() != all_small_files_confirmed) { |
1220 | 2 | packed_info->set_corrected(all_small_files_confirmed); |
1221 | 2 | local_changed = true; |
1222 | 2 | } |
1223 | 3 | if (left_num == 0 && packed_info->state() != cloud::PackedFileInfoPB::RECYCLING) { |
1224 | 1 | packed_info->set_state(cloud::PackedFileInfoPB::RECYCLING); |
1225 | 1 | local_changed = true; |
1226 | 1 | } |
1227 | | |
1228 | 3 | if (changed != nullptr) { |
1229 | 3 | *changed = local_changed; |
1230 | 3 | } |
1231 | 3 | return 0; |
1232 | 3 | } |
1233 | | |
1234 | | int InstanceRecycler::process_single_packed_file(const std::string& packed_key, |
1235 | | const std::string& packed_file_path, |
1236 | 4 | PackedFileRecycleStats* stats) { |
1237 | 4 | const int max_retry_times = std::max(1, config::packed_file_txn_retry_times); |
1238 | 4 | bool correction_ok = false; |
1239 | 4 | cloud::PackedFileInfoPB packed_info; |
1240 | | |
1241 | 4 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
1242 | 4 | if (stopped()) { |
1243 | 0 | LOG_WARNING("recycler stopped before processing packed file") |
1244 | 0 | .tag("instance_id", instance_id_) |
1245 | 0 | .tag("packed_file_path", packed_file_path) |
1246 | 0 | .tag("attempt", attempt); |
1247 | 0 | return -1; |
1248 | 0 | } |
1249 | | |
1250 | 4 | std::unique_ptr<Transaction> txn; |
1251 | 4 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1252 | 4 | if (err != TxnErrorCode::TXN_OK) { |
1253 | 0 | LOG_WARNING("failed to create txn when processing packed file") |
1254 | 0 | .tag("instance_id", instance_id_) |
1255 | 0 | .tag("packed_file_path", packed_file_path) |
1256 | 0 | .tag("attempt", attempt) |
1257 | 0 | .tag("err", err); |
1258 | 0 | return -1; |
1259 | 0 | } |
1260 | | |
1261 | 4 | std::string packed_val; |
1262 | 4 | err = txn->get(packed_key, &packed_val); |
1263 | 4 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1264 | 0 | return 0; |
1265 | 0 | } |
1266 | 4 | if (err != TxnErrorCode::TXN_OK) { |
1267 | 0 | LOG_WARNING("failed to get packed file kv") |
1268 | 0 | .tag("instance_id", instance_id_) |
1269 | 0 | .tag("packed_file_path", packed_file_path) |
1270 | 0 | .tag("attempt", attempt) |
1271 | 0 | .tag("err", err); |
1272 | 0 | return -1; |
1273 | 0 | } |
1274 | | |
1275 | 4 | if (!packed_info.ParseFromString(packed_val)) { |
1276 | 0 | LOG_WARNING("failed to parse packed file info") |
1277 | 0 | .tag("instance_id", instance_id_) |
1278 | 0 | .tag("packed_file_path", packed_file_path) |
1279 | 0 | .tag("attempt", attempt); |
1280 | 0 | return -1; |
1281 | 0 | } |
1282 | | |
1283 | 4 | int64_t now_sec = ::time(nullptr); |
1284 | 4 | bool corrected = packed_info.corrected(); |
1285 | 4 | bool due = config::force_immediate_recycle || |
1286 | 4 | now_sec - packed_info.created_at_sec() >= |
1287 | 4 | config::packed_file_correction_delay_seconds; |
1288 | | |
1289 | 4 | if (!corrected && due) { |
1290 | 3 | bool changed = false; |
1291 | 3 | if (correct_packed_file_info(&packed_info, &changed, packed_file_path, stats) != 0) { |
1292 | 0 | LOG_WARNING("correct_packed_file_info failed") |
1293 | 0 | .tag("instance_id", instance_id_) |
1294 | 0 | .tag("packed_file_path", packed_file_path) |
1295 | 0 | .tag("attempt", attempt); |
1296 | 0 | return -1; |
1297 | 0 | } |
1298 | 3 | if (changed) { |
1299 | 3 | std::string updated; |
1300 | 3 | if (!packed_info.SerializeToString(&updated)) { |
1301 | 0 | LOG_WARNING("failed to serialize packed file info after correction") |
1302 | 0 | .tag("instance_id", instance_id_) |
1303 | 0 | .tag("packed_file_path", packed_file_path) |
1304 | 0 | .tag("attempt", attempt); |
1305 | 0 | return -1; |
1306 | 0 | } |
1307 | 3 | txn->put(packed_key, updated); |
1308 | 3 | err = txn->commit(); |
1309 | 3 | if (err == TxnErrorCode::TXN_OK) { |
1310 | 3 | if (stats) { |
1311 | 3 | ++stats->num_corrected; |
1312 | 3 | } |
1313 | 3 | } else { |
1314 | 0 | if (err == TxnErrorCode::TXN_CONFLICT && attempt < max_retry_times) { |
1315 | 0 | LOG_WARNING( |
1316 | 0 | "failed to commit correction for packed file due to conflict, " |
1317 | 0 | "retrying") |
1318 | 0 | .tag("instance_id", instance_id_) |
1319 | 0 | .tag("packed_file_path", packed_file_path) |
1320 | 0 | .tag("attempt", attempt); |
1321 | 0 | sleep_for_packed_file_retry(); |
1322 | 0 | packed_info.Clear(); |
1323 | 0 | continue; |
1324 | 0 | } |
1325 | 0 | LOG_WARNING("failed to commit correction for packed file") |
1326 | 0 | .tag("instance_id", instance_id_) |
1327 | 0 | .tag("packed_file_path", packed_file_path) |
1328 | 0 | .tag("attempt", attempt) |
1329 | 0 | .tag("err", err); |
1330 | 0 | return -1; |
1331 | 0 | } |
1332 | 3 | } |
1333 | 3 | } |
1334 | | |
1335 | 4 | correction_ok = true; |
1336 | 4 | break; |
1337 | 4 | } |
1338 | | |
1339 | 4 | if (!correction_ok) { |
1340 | 0 | return -1; |
1341 | 0 | } |
1342 | | |
1343 | 4 | if (!(packed_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
1344 | 4 | packed_info.ref_cnt() == 0)) { |
1345 | 3 | return 0; |
1346 | 3 | } |
1347 | | |
1348 | 1 | if (!packed_info.has_resource_id() || packed_info.resource_id().empty()) { |
1349 | 0 | LOG_WARNING("packed file missing resource id when recycling") |
1350 | 0 | .tag("instance_id", instance_id_) |
1351 | 0 | .tag("packed_file_path", packed_file_path); |
1352 | 0 | return -1; |
1353 | 0 | } |
1354 | 1 | auto [resource_id, accessor] = resolve_packed_file_accessor(packed_info.resource_id()); |
1355 | 1 | if (!accessor) { |
1356 | 0 | LOG_WARNING("no accessor available to delete packed file") |
1357 | 0 | .tag("instance_id", instance_id_) |
1358 | 0 | .tag("packed_file_path", packed_file_path) |
1359 | 0 | .tag("resource_id", packed_info.resource_id()); |
1360 | 0 | return -1; |
1361 | 0 | } |
1362 | 1 | int del_ret = accessor->delete_file(packed_file_path); |
1363 | 1 | if (del_ret != 0 && del_ret != 1) { |
1364 | 0 | LOG_WARNING("failed to delete packed file") |
1365 | 0 | .tag("instance_id", instance_id_) |
1366 | 0 | .tag("packed_file_path", packed_file_path) |
1367 | 0 | .tag("resource_id", resource_id) |
1368 | 0 | .tag("ret", del_ret); |
1369 | 0 | return -1; |
1370 | 0 | } |
1371 | 1 | if (del_ret == 1) { |
1372 | 0 | LOG_INFO("packed file already removed") |
1373 | 0 | .tag("instance_id", instance_id_) |
1374 | 0 | .tag("packed_file_path", packed_file_path) |
1375 | 0 | .tag("resource_id", resource_id); |
1376 | 1 | } else { |
1377 | 1 | LOG_INFO("deleted packed file") |
1378 | 1 | .tag("instance_id", instance_id_) |
1379 | 1 | .tag("packed_file_path", packed_file_path) |
1380 | 1 | .tag("resource_id", resource_id); |
1381 | 1 | } |
1382 | | |
1383 | 1 | for (int del_attempt = 1; del_attempt <= max_retry_times; ++del_attempt) { |
1384 | 1 | std::unique_ptr<Transaction> del_txn; |
1385 | 1 | TxnErrorCode err = txn_kv_->create_txn(&del_txn); |
1386 | 1 | if (err != TxnErrorCode::TXN_OK) { |
1387 | 0 | LOG_WARNING("failed to create txn when removing packed file kv") |
1388 | 0 | .tag("instance_id", instance_id_) |
1389 | 0 | .tag("packed_file_path", packed_file_path) |
1390 | 0 | .tag("del_attempt", del_attempt) |
1391 | 0 | .tag("err", err); |
1392 | 0 | return -1; |
1393 | 0 | } |
1394 | | |
1395 | 1 | std::string latest_val; |
1396 | 1 | err = del_txn->get(packed_key, &latest_val); |
1397 | 1 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1398 | 0 | return 0; |
1399 | 0 | } |
1400 | 1 | if (err != TxnErrorCode::TXN_OK) { |
1401 | 0 | LOG_WARNING("failed to re-read packed file kv before removal") |
1402 | 0 | .tag("instance_id", instance_id_) |
1403 | 0 | .tag("packed_file_path", packed_file_path) |
1404 | 0 | .tag("del_attempt", del_attempt) |
1405 | 0 | .tag("err", err); |
1406 | 0 | return -1; |
1407 | 0 | } |
1408 | | |
1409 | 1 | cloud::PackedFileInfoPB latest_info; |
1410 | 1 | if (!latest_info.ParseFromString(latest_val)) { |
1411 | 0 | LOG_WARNING("failed to parse packed file info before removal") |
1412 | 0 | .tag("instance_id", instance_id_) |
1413 | 0 | .tag("packed_file_path", packed_file_path) |
1414 | 0 | .tag("del_attempt", del_attempt); |
1415 | 0 | return -1; |
1416 | 0 | } |
1417 | | |
1418 | 1 | if (!(latest_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
1419 | 1 | latest_info.ref_cnt() == 0)) { |
1420 | 0 | LOG_INFO("packed file state changed before removal, skip deleting kv") |
1421 | 0 | .tag("instance_id", instance_id_) |
1422 | 0 | .tag("packed_file_path", packed_file_path) |
1423 | 0 | .tag("del_attempt", del_attempt); |
1424 | 0 | return 0; |
1425 | 0 | } |
1426 | | |
1427 | 1 | del_txn->remove(packed_key); |
1428 | 1 | err = del_txn->commit(); |
1429 | 1 | if (err == TxnErrorCode::TXN_OK) { |
1430 | 1 | if (stats) { |
1431 | 1 | ++stats->num_deleted; |
1432 | 1 | stats->bytes_deleted += static_cast<int64_t>(packed_key.size()) + |
1433 | 1 | static_cast<int64_t>(latest_val.size()); |
1434 | 1 | if (del_ret == 0 || del_ret == 1) { |
1435 | 1 | ++stats->num_object_deleted; |
1436 | 1 | int64_t object_size = latest_info.total_slice_bytes(); |
1437 | 1 | if (object_size <= 0) { |
1438 | 0 | object_size = packed_info.total_slice_bytes(); |
1439 | 0 | } |
1440 | 1 | stats->bytes_object_deleted += object_size; |
1441 | 1 | } |
1442 | 1 | } |
1443 | 1 | LOG_INFO("removed packed file metadata") |
1444 | 1 | .tag("instance_id", instance_id_) |
1445 | 1 | .tag("packed_file_path", packed_file_path); |
1446 | 1 | return 0; |
1447 | 1 | } |
1448 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
1449 | 0 | if (del_attempt >= max_retry_times) { |
1450 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict after max retry") |
1451 | 0 | .tag("instance_id", instance_id_) |
1452 | 0 | .tag("packed_file_path", packed_file_path) |
1453 | 0 | .tag("del_attempt", del_attempt); |
1454 | 0 | return -1; |
1455 | 0 | } |
1456 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict, retrying") |
1457 | 0 | .tag("instance_id", instance_id_) |
1458 | 0 | .tag("packed_file_path", packed_file_path) |
1459 | 0 | .tag("del_attempt", del_attempt); |
1460 | 0 | sleep_for_packed_file_retry(); |
1461 | 0 | continue; |
1462 | 0 | } |
1463 | 0 | LOG_WARNING("failed to remove packed file kv") |
1464 | 0 | .tag("instance_id", instance_id_) |
1465 | 0 | .tag("packed_file_path", packed_file_path) |
1466 | 0 | .tag("del_attempt", del_attempt) |
1467 | 0 | .tag("err", err); |
1468 | 0 | return -1; |
1469 | 0 | } |
1470 | | |
1471 | 0 | return -1; |
1472 | 1 | } |
1473 | | |
1474 | | int InstanceRecycler::handle_packed_file_kv(std::string_view key, std::string_view /*value*/, |
1475 | 4 | PackedFileRecycleStats* stats, int* ret) { |
1476 | 4 | if (stats) { |
1477 | 4 | ++stats->num_scanned; |
1478 | 4 | } |
1479 | 4 | std::string packed_file_path; |
1480 | 4 | if (!decode_packed_file_key(key, &packed_file_path)) { |
1481 | 0 | LOG_WARNING("failed to decode packed file key") |
1482 | 0 | .tag("instance_id", instance_id_) |
1483 | 0 | .tag("key", hex(key)); |
1484 | 0 | if (stats) { |
1485 | 0 | ++stats->num_failed; |
1486 | 0 | } |
1487 | 0 | if (ret) { |
1488 | 0 | *ret = -1; |
1489 | 0 | } |
1490 | 0 | return 0; |
1491 | 0 | } |
1492 | | |
1493 | 4 | std::string packed_key(key); |
1494 | 4 | int process_ret = process_single_packed_file(packed_key, packed_file_path, stats); |
1495 | 4 | if (process_ret != 0) { |
1496 | 0 | if (stats) { |
1497 | 0 | ++stats->num_failed; |
1498 | 0 | } |
1499 | 0 | if (ret) { |
1500 | 0 | *ret = -1; |
1501 | 0 | } |
1502 | 0 | } |
1503 | 4 | return 0; |
1504 | 4 | } |
1505 | | |
1506 | | int64_t calculate_rowset_expired_time(const std::string& instance_id_, const RecycleRowsetPB& rs, |
1507 | 8.77k | int64_t* earlest_ts /* rowset earliest expiration ts */) { |
1508 | 8.77k | if (config::force_immediate_recycle) { |
1509 | 15 | return 0L; |
1510 | 15 | } |
1511 | | // RecycleRowsetPB created by compacted or dropped rowset has no expiration time, and will be recycled when exceed retention time |
1512 | 8.75k | int64_t expiration = rs.expiration() > 0 ? rs.expiration() : rs.creation_time(); |
1513 | 8.75k | int64_t retention_seconds = config::retention_seconds; |
1514 | 8.75k | if (rs.type() == RecycleRowsetPB::COMPACT || rs.type() == RecycleRowsetPB::DROP) { |
1515 | 7.00k | retention_seconds = std::min(config::compacted_rowset_retention_seconds, retention_seconds); |
1516 | 7.00k | } |
1517 | 8.75k | int64_t final_expiration = expiration + retention_seconds; |
1518 | 8.75k | if (*earlest_ts > final_expiration) { |
1519 | 6 | *earlest_ts = final_expiration; |
1520 | 6 | g_bvar_recycler_recycle_rowset_earlest_ts.put(instance_id_, *earlest_ts); |
1521 | 6 | } |
1522 | 8.75k | return final_expiration; |
1523 | 8.77k | } |
1524 | | |
1525 | | int64_t calculate_partition_expired_time( |
1526 | | const std::string& instance_id_, const RecyclePartitionPB& partition_meta_pb, |
1527 | 9 | int64_t* earlest_ts /* partition earliest expiration ts */) { |
1528 | 9 | if (config::force_immediate_recycle) { |
1529 | 3 | return 0L; |
1530 | 3 | } |
1531 | 6 | int64_t expiration = partition_meta_pb.expiration() > 0 ? partition_meta_pb.expiration() |
1532 | 6 | : partition_meta_pb.creation_time(); |
1533 | 6 | int64_t retention_seconds = config::retention_seconds; |
1534 | 6 | if (partition_meta_pb.state() == RecyclePartitionPB::DROPPED) { |
1535 | 6 | retention_seconds = |
1536 | 6 | std::min(config::dropped_partition_retention_seconds, retention_seconds); |
1537 | 6 | } |
1538 | 6 | int64_t final_expiration = expiration + retention_seconds; |
1539 | 6 | if (*earlest_ts > final_expiration) { |
1540 | 2 | *earlest_ts = final_expiration; |
1541 | 2 | g_bvar_recycler_recycle_partition_earlest_ts.put(instance_id_, *earlest_ts); |
1542 | 2 | } |
1543 | 6 | return final_expiration; |
1544 | 9 | } |
1545 | | |
1546 | | int64_t calculate_index_expired_time(const std::string& instance_id_, |
1547 | | const RecycleIndexPB& index_meta_pb, |
1548 | 10 | int64_t* earlest_ts /* index earliest expiration ts */) { |
1549 | 10 | if (config::force_immediate_recycle) { |
1550 | 4 | return 0L; |
1551 | 4 | } |
1552 | 6 | int64_t expiration = index_meta_pb.expiration() > 0 ? index_meta_pb.expiration() |
1553 | 6 | : index_meta_pb.creation_time(); |
1554 | 6 | int64_t retention_seconds = config::retention_seconds; |
1555 | 6 | if (index_meta_pb.state() == RecycleIndexPB::DROPPED) { |
1556 | 6 | retention_seconds = std::min(config::dropped_index_retention_seconds, retention_seconds); |
1557 | 6 | } |
1558 | 6 | int64_t final_expiration = expiration + retention_seconds; |
1559 | 6 | if (*earlest_ts > final_expiration) { |
1560 | 2 | *earlest_ts = final_expiration; |
1561 | 2 | g_bvar_recycler_recycle_index_earlest_ts.put(instance_id_, *earlest_ts); |
1562 | 2 | } |
1563 | 6 | return final_expiration; |
1564 | 10 | } |
1565 | | |
1566 | | int64_t calculate_tmp_rowset_expired_time( |
1567 | | const std::string& instance_id_, const doris::RowsetMetaCloudPB& tmp_rowset_meta_pb, |
1568 | 102k | int64_t* earlest_ts /* tmp_rowset earliest expiration ts */) { |
1569 | | // ATTN: `txn_expiration` should > 0, however we use `creation_time` + a large `retention_time` (> 1 day in production environment) |
1570 | | // when `txn_expiration` <= 0 in some unexpected situation (usually when there are bugs). This is usually safe, coz loading |
1571 | | // duration or timeout always < `retention_time` in practice. |
1572 | 102k | int64_t expiration = tmp_rowset_meta_pb.txn_expiration() > 0 |
1573 | 102k | ? tmp_rowset_meta_pb.txn_expiration() |
1574 | 102k | : tmp_rowset_meta_pb.creation_time(); |
1575 | 102k | expiration = config::force_immediate_recycle ? 0 : expiration; |
1576 | 102k | int64_t final_expiration = expiration + config::retention_seconds; |
1577 | 102k | if (*earlest_ts > final_expiration) { |
1578 | 18 | *earlest_ts = final_expiration; |
1579 | 18 | g_bvar_recycler_recycle_tmp_rowset_earlest_ts.put(instance_id_, *earlest_ts); |
1580 | 18 | } |
1581 | 102k | return final_expiration; |
1582 | 102k | } |
1583 | | |
1584 | | int64_t calculate_txn_expired_time(const std::string& instance_id_, const RecycleTxnPB& txn_meta_pb, |
1585 | 30.0k | int64_t* earlest_ts /* txn earliest expiration ts */) { |
1586 | 30.0k | int64_t final_expiration = txn_meta_pb.creation_time() + config::label_keep_max_second * 1000L; |
1587 | 30.0k | if (*earlest_ts > final_expiration / 1000) { |
1588 | 8 | *earlest_ts = final_expiration / 1000; |
1589 | 8 | g_bvar_recycler_recycle_expired_txn_label_earlest_ts.put(instance_id_, *earlest_ts); |
1590 | 8 | } |
1591 | 30.0k | return final_expiration; |
1592 | 30.0k | } |
1593 | | |
1594 | | int64_t calculate_restore_job_expired_time( |
1595 | | const std::string& instance_id_, const RestoreJobCloudPB& restore_job, |
1596 | 41 | int64_t* earlest_ts /* restore job earliest expiration ts */) { |
1597 | 41 | if (config::force_immediate_recycle || restore_job.state() == RestoreJobCloudPB::DROPPED || |
1598 | 41 | restore_job.state() == RestoreJobCloudPB::COMPLETED || |
1599 | 41 | restore_job.state() == RestoreJobCloudPB::RECYCLING) { |
1600 | | // final state, recycle immediately |
1601 | 41 | return 0L; |
1602 | 41 | } |
1603 | | // not final state, wait much longer than the FE's timeout(1 day) |
1604 | 0 | int64_t last_modified_s = |
1605 | 0 | restore_job.has_mtime_s() ? restore_job.mtime_s() : restore_job.ctime_s(); |
1606 | 0 | int64_t expiration = restore_job.expired_at_s() > 0 |
1607 | 0 | ? last_modified_s + restore_job.expired_at_s() |
1608 | 0 | : last_modified_s; |
1609 | 0 | int64_t final_expiration = expiration + config::retention_seconds; |
1610 | 0 | if (*earlest_ts > final_expiration) { |
1611 | 0 | *earlest_ts = final_expiration; |
1612 | 0 | g_bvar_recycler_recycle_restore_job_earlest_ts.put(instance_id_, *earlest_ts); |
1613 | 0 | } |
1614 | 0 | return final_expiration; |
1615 | 41 | } |
1616 | | |
1617 | | int get_meta_rowset_key(Transaction* txn, const std::string& instance_id, int64_t tablet_id, |
1618 | | const std::string& rowset_id, int64_t start_version, int64_t end_version, |
1619 | 0 | bool load_key, bool* exist) { |
1620 | 0 | std::string key = |
1621 | 0 | load_key ? versioned::meta_rowset_load_key({instance_id, tablet_id, end_version}) |
1622 | 0 | : versioned::meta_rowset_compact_key({instance_id, tablet_id, end_version}); |
1623 | 0 | RowsetMetaCloudPB rowset_meta; |
1624 | 0 | Versionstamp version; |
1625 | 0 | TxnErrorCode err = versioned::document_get(txn, key, &rowset_meta, &version); |
1626 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1627 | 0 | VLOG_DEBUG << "not found load or compact meta_rowset_key." |
1628 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1629 | 0 | << " end_version=" << end_version << " key=" << hex(key); |
1630 | 0 | } else if (err != TxnErrorCode::TXN_OK) { |
1631 | 0 | LOG_INFO("failed to get load or compact meta_rowset_key.") |
1632 | 0 | .tag("rowset_id", rowset_id) |
1633 | 0 | .tag("start_version", start_version) |
1634 | 0 | .tag("end_version", end_version) |
1635 | 0 | .tag("key", hex(key)) |
1636 | 0 | .tag("error_code", err); |
1637 | 0 | return -1; |
1638 | 0 | } else if (rowset_meta.rowset_id_v2() == rowset_id) { |
1639 | 0 | *exist = true; |
1640 | 0 | VLOG_DEBUG << "found load or compact meta_rowset_key." |
1641 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1642 | 0 | << " end_version=" << end_version << " key=" << hex(key); |
1643 | 0 | } else { |
1644 | 0 | VLOG_DEBUG << "rowset_id does not match when find load or compact meta_rowset_key." |
1645 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1646 | 0 | << " end_version=" << end_version << " key=" << hex(key) |
1647 | 0 | << " found_rowset_id=" << rowset_meta.rowset_id_v2(); |
1648 | 0 | } |
1649 | 0 | return 0; |
1650 | 0 | } |
1651 | | |
1652 | 2 | int InstanceRecycler::abort_txn_for_related_rowset(int64_t txn_id) { |
1653 | 2 | AbortTxnRequest req; |
1654 | 2 | TxnInfoPB txn_info; |
1655 | 2 | MetaServiceCode code = MetaServiceCode::OK; |
1656 | 2 | std::string msg; |
1657 | 2 | std::stringstream ss; |
1658 | 2 | std::unique_ptr<Transaction> txn; |
1659 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1660 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1661 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
1662 | 0 | return -1; |
1663 | 0 | } |
1664 | | |
1665 | | // get txn index |
1666 | 2 | TxnIndexPB txn_idx_pb; |
1667 | 2 | auto index_key = txn_index_key({instance_id_, txn_id}); |
1668 | 2 | std::string index_val; |
1669 | 2 | err = txn->get(index_key, &index_val); |
1670 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1671 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1672 | | // maybe recycled |
1673 | 0 | LOG_INFO("txn index not found, txn_id={} instance_id={}", txn_id, instance_id_) |
1674 | 0 | .tag("key", hex(index_key)) |
1675 | 0 | .tag("txn_id", txn_id); |
1676 | 0 | return 0; |
1677 | 0 | } |
1678 | 0 | LOG_WARNING("failed to get txn index") |
1679 | 0 | .tag("err", err) |
1680 | 0 | .tag("key", hex(index_key)) |
1681 | 0 | .tag("txn_id", txn_id); |
1682 | 0 | return -1; |
1683 | 0 | } |
1684 | 2 | if (!txn_idx_pb.ParseFromString(index_val)) { |
1685 | 0 | LOG_WARNING("failed to parse txn index") |
1686 | 0 | .tag("err", err) |
1687 | 0 | .tag("key", hex(index_key)) |
1688 | 0 | .tag("txn_id", txn_id); |
1689 | 0 | return -1; |
1690 | 0 | } |
1691 | | |
1692 | 2 | auto info_key = txn_info_key({instance_id_, txn_idx_pb.tablet_index().db_id(), txn_id}); |
1693 | 2 | std::string info_val; |
1694 | 2 | err = txn->get(info_key, &info_val); |
1695 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1696 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1697 | | // maybe recycled |
1698 | 0 | LOG_INFO("txn info not found, txn_id={} instance_id={}", txn_id, instance_id_) |
1699 | 0 | .tag("key", hex(info_key)) |
1700 | 0 | .tag("txn_id", txn_id); |
1701 | 0 | return 0; |
1702 | 0 | } |
1703 | 0 | LOG_WARNING("failed to get txn info") |
1704 | 0 | .tag("err", err) |
1705 | 0 | .tag("key", hex(info_key)) |
1706 | 0 | .tag("txn_id", txn_id); |
1707 | 0 | return -1; |
1708 | 0 | } |
1709 | 2 | if (!txn_info.ParseFromString(info_val)) { |
1710 | 0 | LOG_WARNING("failed to parse txn info") |
1711 | 0 | .tag("err", err) |
1712 | 0 | .tag("key", hex(info_key)) |
1713 | 0 | .tag("txn_id", txn_id); |
1714 | 0 | return -1; |
1715 | 0 | } |
1716 | | |
1717 | 2 | if (txn_info.status() != TxnStatusPB::TXN_STATUS_PREPARED) { |
1718 | 0 | LOG_INFO("txn is not prepared status, txn_id={} status={}", txn_id, txn_info.status()) |
1719 | 0 | .tag("key", hex(info_key)) |
1720 | 0 | .tag("txn_id", txn_id); |
1721 | 0 | return 0; |
1722 | 0 | } |
1723 | | |
1724 | 2 | req.set_txn_id(txn_id); |
1725 | | |
1726 | 2 | LOG(INFO) << "begin abort txn for related rowset, txn_id=" << txn_id |
1727 | 2 | << " instance_id=" << instance_id_ << " txn_info=" << txn_info.ShortDebugString(); |
1728 | | |
1729 | 2 | _abort_txn(instance_id_, &req, txn.get(), txn_info, ss, code, msg); |
1730 | 2 | err = txn->commit(); |
1731 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1732 | 0 | code = cast_as<ErrCategory::COMMIT>(err); |
1733 | 0 | ss << "failed to commit kv txn, txn_id=" << txn_info.txn_id() << " err=" << err; |
1734 | 0 | msg = ss.str(); |
1735 | 0 | return -1; |
1736 | 0 | } |
1737 | | |
1738 | 2 | LOG(INFO) << "finish abort txn for related rowset, txn_id=" << txn_id |
1739 | 2 | << " instance_id=" << instance_id_ << " txn_info=" << txn_info.ShortDebugString() |
1740 | 2 | << " code=" << code << " msg=" << msg; |
1741 | | |
1742 | 2 | return 0; |
1743 | 2 | } |
1744 | | |
1745 | 3 | int InstanceRecycler::abort_job_for_related_rowset(const RowsetMetaCloudPB& rowset_meta) { |
1746 | 3 | FinishTabletJobRequest req; |
1747 | 3 | FinishTabletJobResponse res; |
1748 | 3 | req.set_action(FinishTabletJobRequest::ABORT); |
1749 | 3 | MetaServiceCode code = MetaServiceCode::OK; |
1750 | 3 | std::string msg; |
1751 | 3 | std::stringstream ss; |
1752 | | |
1753 | 3 | TabletIndexPB tablet_idx; |
1754 | 3 | int ret = get_tablet_idx(txn_kv_.get(), instance_id_, rowset_meta.tablet_id(), tablet_idx); |
1755 | 3 | if (ret != 0) { |
1756 | 0 | LOG(WARNING) << "failed to get tablet index, tablet_id=" << rowset_meta.tablet_id() |
1757 | 0 | << " instance_id=" << instance_id_ << " ret=" << ret; |
1758 | 0 | return ret; |
1759 | 0 | } |
1760 | | |
1761 | 3 | std::unique_ptr<Transaction> txn; |
1762 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1763 | 3 | if (err != TxnErrorCode::TXN_OK) { |
1764 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id_ << " err=" << err; |
1765 | 0 | return -1; |
1766 | 0 | } |
1767 | | |
1768 | 3 | std::string job_key = |
1769 | 3 | job_tablet_key({instance_id_, tablet_idx.table_id(), tablet_idx.index_id(), |
1770 | 3 | tablet_idx.partition_id(), tablet_idx.tablet_id()}); |
1771 | 3 | std::string job_val; |
1772 | 3 | err = txn->get(job_key, &job_val); |
1773 | 3 | if (err != TxnErrorCode::TXN_OK) { |
1774 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1775 | 0 | LOG(INFO) << "job not exists, instance_id=" << instance_id_ |
1776 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " key=" << hex(job_key); |
1777 | 0 | return 0; |
1778 | 0 | } |
1779 | 0 | LOG(WARNING) << "failed to get job, instance_id=" << instance_id_ |
1780 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " err=" << err |
1781 | 0 | << " key=" << hex(job_key); |
1782 | 0 | return -1; |
1783 | 0 | } |
1784 | | |
1785 | 3 | TabletJobInfoPB job_pb; |
1786 | 3 | if (!job_pb.ParseFromString(job_val)) { |
1787 | 0 | LOG(WARNING) << "failed to parse job, instance_id=" << instance_id_ |
1788 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " key=" << hex(job_key); |
1789 | 0 | return -1; |
1790 | 0 | } |
1791 | | |
1792 | 3 | std::string job_id {}; |
1793 | 3 | if (!job_pb.compaction().empty()) { |
1794 | 2 | for (const auto& c : job_pb.compaction()) { |
1795 | 2 | if (c.id() == rowset_meta.job_id()) { |
1796 | 2 | job_id = c.id(); |
1797 | 2 | break; |
1798 | 2 | } |
1799 | 2 | } |
1800 | 2 | } else if (job_pb.has_schema_change()) { |
1801 | 1 | job_id = job_pb.schema_change().id(); |
1802 | 1 | } |
1803 | | |
1804 | 3 | if (!job_id.empty() && rowset_meta.job_id() == job_id) { |
1805 | 3 | LOG(INFO) << "begin to abort job for related rowset, job_id=" << rowset_meta.job_id() |
1806 | 3 | << " instance_id=" << instance_id_ << " tablet_id=" << tablet_idx.tablet_id(); |
1807 | 3 | req.mutable_job()->CopyFrom(job_pb); |
1808 | 3 | req.set_action(FinishTabletJobRequest::ABORT); |
1809 | 3 | _finish_tablet_job(&req, &res, instance_id_, txn, txn_kv_.get(), |
1810 | 3 | delete_bitmap_lock_white_list_.get(), resource_mgr_.get(), code, msg, |
1811 | 3 | ss); |
1812 | 3 | if (code != MetaServiceCode::OK) { |
1813 | 0 | LOG(WARNING) << "failed to abort job, instance_id=" << instance_id_ |
1814 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " code=" << code |
1815 | 0 | << " msg=" << msg; |
1816 | 0 | return -1; |
1817 | 0 | } |
1818 | 3 | LOG(INFO) << "finish abort job for related rowset, job_id=" << rowset_meta.job_id() |
1819 | 3 | << " instance_id=" << instance_id_ << " tablet_id=" << tablet_idx.tablet_id() |
1820 | 3 | << " code=" << code << " msg=" << msg; |
1821 | 3 | } else { |
1822 | | // clang-format off |
1823 | 0 | LOG(INFO) << "there is no job for related rowset, directly recycle rowset data" |
1824 | 0 | << ", instance_id=" << instance_id_ |
1825 | 0 | << ", tablet_id=" << tablet_idx.tablet_id() |
1826 | 0 | << ", job_id=" << job_id |
1827 | 0 | << ", rowset_id=" << rowset_meta.rowset_id_v2(); |
1828 | | // clang-format on |
1829 | 0 | } |
1830 | | |
1831 | 3 | return 0; |
1832 | 3 | } |
1833 | | |
1834 | | template <typename T> |
1835 | 54.7k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { |
1836 | 54.7k | RowsetMetaCloudPB* rs_meta; |
1837 | 54.7k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; |
1838 | | |
1839 | 54.7k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1840 | | // For keys that are not in the RecycleRowsetPB::PREPARE state |
1841 | | // we do not need to check the job or txn state |
1842 | | // because tmp_rowset_key already exists when this key is generated. |
1843 | 3.75k | rowset_type = rowset_meta_pb.type(); |
1844 | 3.75k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); |
1845 | 51.0k | } else { |
1846 | 51.0k | rs_meta = &rowset_meta_pb; |
1847 | 51.0k | } |
1848 | | |
1849 | 54.7k | DCHECK(rs_meta != nullptr); |
1850 | | |
1851 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id |
1852 | | // we need skip them because the related txn has been finished |
1853 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset |
1854 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset |
1855 | 54.7k | if (rowset_type == RecycleRowsetPB::PREPARE) { |
1856 | 51.6k | if (rs_meta->has_load_id()) { |
1857 | | // load |
1858 | 2 | return abort_txn_for_related_rowset(rs_meta->txn_id()); |
1859 | 51.6k | } else if (rs_meta->has_job_id()) { |
1860 | | // compaction / schema change |
1861 | 3 | return abort_job_for_related_rowset(*rs_meta); |
1862 | 3 | } |
1863 | 51.6k | } |
1864 | | |
1865 | 54.7k | return 0; |
1866 | 54.7k | } _ZN5doris5cloud16InstanceRecycler28abort_txn_or_job_for_recycleINS0_15RecycleRowsetPBEEEiRT_ Line | Count | Source | 1835 | 3.75k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { | 1836 | 3.75k | RowsetMetaCloudPB* rs_meta; | 1837 | 3.75k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; | 1838 | | | 1839 | 3.75k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1840 | | // For keys that are not in the RecycleRowsetPB::PREPARE state | 1841 | | // we do not need to check the job or txn state | 1842 | | // because tmp_rowset_key already exists when this key is generated. | 1843 | 3.75k | rowset_type = rowset_meta_pb.type(); | 1844 | 3.75k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1845 | 3.75k | } else { | 1846 | 3.75k | rs_meta = &rowset_meta_pb; | 1847 | 3.75k | } | 1848 | | | 1849 | 3.75k | DCHECK(rs_meta != nullptr); | 1850 | | | 1851 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id | 1852 | | // we need skip them because the related txn has been finished | 1853 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset | 1854 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset | 1855 | 3.75k | if (rowset_type == RecycleRowsetPB::PREPARE) { | 1856 | 652 | if (rs_meta->has_load_id()) { | 1857 | | // load | 1858 | 1 | return abort_txn_for_related_rowset(rs_meta->txn_id()); | 1859 | 651 | } else if (rs_meta->has_job_id()) { | 1860 | | // compaction / schema change | 1861 | 1 | return abort_job_for_related_rowset(*rs_meta); | 1862 | 1 | } | 1863 | 652 | } | 1864 | | | 1865 | 3.75k | return 0; | 1866 | 3.75k | } |
_ZN5doris5cloud16InstanceRecycler28abort_txn_or_job_for_recycleINS_17RowsetMetaCloudPBEEEiRT_ Line | Count | Source | 1835 | 51.0k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { | 1836 | 51.0k | RowsetMetaCloudPB* rs_meta; | 1837 | 51.0k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; | 1838 | | | 1839 | 51.0k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1840 | | // For keys that are not in the RecycleRowsetPB::PREPARE state | 1841 | | // we do not need to check the job or txn state | 1842 | | // because tmp_rowset_key already exists when this key is generated. | 1843 | 51.0k | rowset_type = rowset_meta_pb.type(); | 1844 | 51.0k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1845 | 51.0k | } else { | 1846 | 51.0k | rs_meta = &rowset_meta_pb; | 1847 | 51.0k | } | 1848 | | | 1849 | 51.0k | DCHECK(rs_meta != nullptr); | 1850 | | | 1851 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id | 1852 | | // we need skip them because the related txn has been finished | 1853 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset | 1854 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset | 1855 | 51.0k | if (rowset_type == RecycleRowsetPB::PREPARE) { | 1856 | 51.0k | if (rs_meta->has_load_id()) { | 1857 | | // load | 1858 | 1 | return abort_txn_for_related_rowset(rs_meta->txn_id()); | 1859 | 51.0k | } else if (rs_meta->has_job_id()) { | 1860 | | // compaction / schema change | 1861 | 2 | return abort_job_for_related_rowset(*rs_meta); | 1862 | 2 | } | 1863 | 51.0k | } | 1864 | | | 1865 | 51.0k | return 0; | 1866 | 51.0k | } |
|
1867 | | |
1868 | | template <typename T> |
1869 | | int mark_rowset_as_recycled(TxnKv* txn_kv, const std::string& instance_id, std::string_view key, |
1870 | 109k | T& rowset_meta_pb) { |
1871 | 109k | RowsetMetaCloudPB* rs_meta; |
1872 | | |
1873 | 109k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1874 | 102k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); |
1875 | 102k | } else { |
1876 | 102k | rs_meta = &rowset_meta_pb; |
1877 | 102k | } |
1878 | | |
1879 | 109k | bool need_write_back = false; |
1880 | 109k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { |
1881 | 54.7k | need_write_back = true; |
1882 | 54.7k | rs_meta->set_is_recycled(true); |
1883 | 54.7k | } |
1884 | | |
1885 | 109k | if (need_write_back) { |
1886 | 54.7k | std::unique_ptr<Transaction> txn; |
1887 | 54.7k | TxnErrorCode err = txn_kv->create_txn(&txn); |
1888 | 54.7k | if (err != TxnErrorCode::TXN_OK) { |
1889 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; |
1890 | 0 | return -1; |
1891 | 0 | } |
1892 | | // double check becase of new transaction |
1893 | 54.7k | T rowset_meta; |
1894 | 54.7k | std::string val; |
1895 | 54.7k | err = txn->get(key, &val); |
1896 | 54.7k | if (!rowset_meta.ParseFromString(val)) { |
1897 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; |
1898 | 0 | return -1; |
1899 | 0 | } |
1900 | 54.7k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1901 | 51.0k | rs_meta = rowset_meta.mutable_rowset_meta(); |
1902 | 51.0k | } else { |
1903 | 51.0k | rs_meta = &rowset_meta; |
1904 | 51.0k | } |
1905 | 54.7k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { |
1906 | 0 | return 0; |
1907 | 0 | } |
1908 | 54.7k | rs_meta->set_is_recycled(true); |
1909 | 54.7k | val.clear(); |
1910 | 54.7k | rowset_meta.SerializeToString(&val); |
1911 | 54.7k | txn->put(key, val); |
1912 | 54.7k | err = txn->commit(); |
1913 | 54.7k | if (err != TxnErrorCode::TXN_OK) { |
1914 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; |
1915 | 0 | return -1; |
1916 | 0 | } |
1917 | 54.7k | } |
1918 | 109k | return need_write_back ? 1 : 0; |
1919 | 109k | } _ZN5doris5cloud23mark_rowset_as_recycledINS0_15RecycleRowsetPBEEEiPNS0_5TxnKvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS8_ERT_ Line | Count | Source | 1870 | 7.50k | T& rowset_meta_pb) { | 1871 | 7.50k | RowsetMetaCloudPB* rs_meta; | 1872 | | | 1873 | 7.50k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1874 | 7.50k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1875 | 7.50k | } else { | 1876 | 7.50k | rs_meta = &rowset_meta_pb; | 1877 | 7.50k | } | 1878 | | | 1879 | 7.50k | bool need_write_back = false; | 1880 | 7.50k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { | 1881 | 3.75k | need_write_back = true; | 1882 | 3.75k | rs_meta->set_is_recycled(true); | 1883 | 3.75k | } | 1884 | | | 1885 | 7.50k | if (need_write_back) { | 1886 | 3.75k | std::unique_ptr<Transaction> txn; | 1887 | 3.75k | TxnErrorCode err = txn_kv->create_txn(&txn); | 1888 | 3.75k | if (err != TxnErrorCode::TXN_OK) { | 1889 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; | 1890 | 0 | return -1; | 1891 | 0 | } | 1892 | | // double check becase of new transaction | 1893 | 3.75k | T rowset_meta; | 1894 | 3.75k | std::string val; | 1895 | 3.75k | err = txn->get(key, &val); | 1896 | 3.75k | if (!rowset_meta.ParseFromString(val)) { | 1897 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; | 1898 | 0 | return -1; | 1899 | 0 | } | 1900 | 3.75k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1901 | 3.75k | rs_meta = rowset_meta.mutable_rowset_meta(); | 1902 | 3.75k | } else { | 1903 | 3.75k | rs_meta = &rowset_meta; | 1904 | 3.75k | } | 1905 | 3.75k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { | 1906 | 0 | return 0; | 1907 | 0 | } | 1908 | 3.75k | rs_meta->set_is_recycled(true); | 1909 | 3.75k | val.clear(); | 1910 | 3.75k | rowset_meta.SerializeToString(&val); | 1911 | 3.75k | txn->put(key, val); | 1912 | 3.75k | err = txn->commit(); | 1913 | 3.75k | if (err != TxnErrorCode::TXN_OK) { | 1914 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; | 1915 | 0 | return -1; | 1916 | 0 | } | 1917 | 3.75k | } | 1918 | 7.50k | return need_write_back ? 1 : 0; | 1919 | 7.50k | } |
_ZN5doris5cloud23mark_rowset_as_recycledINS_17RowsetMetaCloudPBEEEiPNS0_5TxnKvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS8_ERT_ Line | Count | Source | 1870 | 102k | T& rowset_meta_pb) { | 1871 | 102k | RowsetMetaCloudPB* rs_meta; | 1872 | | | 1873 | 102k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1874 | 102k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1875 | 102k | } else { | 1876 | 102k | rs_meta = &rowset_meta_pb; | 1877 | 102k | } | 1878 | | | 1879 | 102k | bool need_write_back = false; | 1880 | 102k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { | 1881 | 51.0k | need_write_back = true; | 1882 | 51.0k | rs_meta->set_is_recycled(true); | 1883 | 51.0k | } | 1884 | | | 1885 | 102k | if (need_write_back) { | 1886 | 51.0k | std::unique_ptr<Transaction> txn; | 1887 | 51.0k | TxnErrorCode err = txn_kv->create_txn(&txn); | 1888 | 51.0k | if (err != TxnErrorCode::TXN_OK) { | 1889 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; | 1890 | 0 | return -1; | 1891 | 0 | } | 1892 | | // double check becase of new transaction | 1893 | 51.0k | T rowset_meta; | 1894 | 51.0k | std::string val; | 1895 | 51.0k | err = txn->get(key, &val); | 1896 | 51.0k | if (!rowset_meta.ParseFromString(val)) { | 1897 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; | 1898 | 0 | return -1; | 1899 | 0 | } | 1900 | 51.0k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1901 | 51.0k | rs_meta = rowset_meta.mutable_rowset_meta(); | 1902 | 51.0k | } else { | 1903 | 51.0k | rs_meta = &rowset_meta; | 1904 | 51.0k | } | 1905 | 51.0k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { | 1906 | 0 | return 0; | 1907 | 0 | } | 1908 | 51.0k | rs_meta->set_is_recycled(true); | 1909 | 51.0k | val.clear(); | 1910 | 51.0k | rowset_meta.SerializeToString(&val); | 1911 | 51.0k | txn->put(key, val); | 1912 | 51.0k | err = txn->commit(); | 1913 | 51.0k | if (err != TxnErrorCode::TXN_OK) { | 1914 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; | 1915 | 0 | return -1; | 1916 | 0 | } | 1917 | 51.0k | } | 1918 | 102k | return need_write_back ? 1 : 0; | 1919 | 102k | } |
|
1920 | | |
1921 | 0 | int InstanceRecycler::recycle_ref_rowsets(bool* has_unrecycled_rowsets) { |
1922 | 0 | const std::string task_name = "recycle_ref_rowsets"; |
1923 | 0 | int64_t num_scanned = 0; |
1924 | 0 | int64_t num_recycled = 0; |
1925 | 0 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
1926 | |
|
1927 | 0 | std::string data_rowset_ref_count_key_start = |
1928 | 0 | versioned::data_rowset_ref_count_key({instance_id_, 0, ""}); |
1929 | 0 | std::string data_rowset_ref_count_key_end = |
1930 | 0 | versioned::data_rowset_ref_count_key({instance_id_, INT64_MAX, ""}); |
1931 | |
|
1932 | 0 | LOG_WARNING("begin to recycle ref rowsets").tag("instance_id", instance_id_); |
1933 | |
|
1934 | 0 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
1935 | 0 | register_recycle_task(task_name, start_time); |
1936 | |
|
1937 | 0 | DORIS_CLOUD_DEFER { |
1938 | 0 | unregister_recycle_task(task_name); |
1939 | 0 | int64_t cost = |
1940 | 0 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
1941 | 0 | metrics_context.finish_report(); |
1942 | 0 | LOG_WARNING("recycle ref rowsets finished, cost={}s", cost) |
1943 | 0 | .tag("instance_id", instance_id_) |
1944 | 0 | .tag("num_scanned", num_scanned) |
1945 | 0 | .tag("num_recycled", num_recycled); |
1946 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_0clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_0clEv |
1947 | |
|
1948 | 0 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
1949 | 0 | ++num_scanned; |
1950 | |
|
1951 | 0 | int64_t tablet_id; |
1952 | 0 | std::string rowset_id; |
1953 | 0 | std::string_view key(k); |
1954 | 0 | if (!versioned::decode_data_rowset_ref_count_key(&key, &tablet_id, &rowset_id)) { |
1955 | 0 | LOG_WARNING("failed to decode data rowset ref count key").tag("key", hex(k)); |
1956 | 0 | return -1; |
1957 | 0 | } |
1958 | | |
1959 | 0 | std::unique_ptr<Transaction> txn; |
1960 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1961 | 0 | if (err != TxnErrorCode::TXN_OK) { |
1962 | 0 | return -1; |
1963 | 0 | } |
1964 | | |
1965 | 0 | int64_t ref_count; |
1966 | 0 | if (!txn->decode_atomic_int(v, &ref_count)) { |
1967 | 0 | LOG_WARNING("failed to decode rowset data ref count").tag("value", hex(v)); |
1968 | 0 | return -1; |
1969 | 0 | } |
1970 | 0 | if (ref_count > 1) { |
1971 | 0 | *has_unrecycled_rowsets = true; |
1972 | 0 | LOG_INFO("skip recycle ref_count > 1 rowset") |
1973 | 0 | .tag("instance_id", instance_id_) |
1974 | 0 | .tag("tablet_id", tablet_id) |
1975 | 0 | .tag("rowset_id", rowset_id) |
1976 | 0 | .tag("ref_count", ref_count); |
1977 | 0 | return 0; |
1978 | 0 | } |
1979 | | |
1980 | 0 | std::string meta_rowset_key = |
1981 | 0 | versioned::meta_rowset_key({instance_id_, tablet_id, rowset_id}); |
1982 | 0 | ValueBuf val_buf; |
1983 | 0 | err = blob_get(txn.get(), meta_rowset_key, &val_buf); |
1984 | 0 | if (err != TxnErrorCode::TXN_OK) { |
1985 | 0 | LOG_WARNING("failed to get meta_rowset_key") |
1986 | 0 | .tag("instance_id", instance_id_) |
1987 | 0 | .tag("tablet_id", tablet_id) |
1988 | 0 | .tag("rowset_id", rowset_id) |
1989 | 0 | .tag("key", hex(meta_rowset_key)) |
1990 | 0 | .tag("err", err); |
1991 | 0 | return -1; |
1992 | 0 | } |
1993 | 0 | doris::RowsetMetaCloudPB rowset_meta; |
1994 | 0 | if (!val_buf.to_pb(&rowset_meta)) { |
1995 | 0 | LOG_WARNING("failed to parse RowsetMetaCloudPB") |
1996 | 0 | .tag("instance_id", instance_id_) |
1997 | 0 | .tag("tablet_id", tablet_id) |
1998 | 0 | .tag("rowset_id", rowset_id) |
1999 | 0 | .tag("key", hex(meta_rowset_key)); |
2000 | 0 | return -1; |
2001 | 0 | } |
2002 | 0 | int64_t start_version = rowset_meta.start_version(); |
2003 | 0 | int64_t end_version = rowset_meta.end_version(); |
2004 | | |
2005 | | // Check if the meta_rowset_compact_key or meta_rowset_load_key exists: |
2006 | | // exists: means it's referenced by current instance, can recycle rowset; |
2007 | | // not exists: means it's referenced by other instances, cannot recycle; |
2008 | | // |
2009 | | // end_version = 1: the first rowset; |
2010 | | // end_version = 0: the rowset is committed by load, but not commit_txn; |
2011 | | // can recycle in these 2 situations |
2012 | 0 | bool exist = false; |
2013 | 0 | if (end_version > 1) { |
2014 | 0 | if (start_version != end_version) { |
2015 | 0 | if (get_meta_rowset_key(txn.get(), instance_id_, tablet_id, rowset_id, |
2016 | 0 | start_version, end_version, false, &exist) != 0) { |
2017 | 0 | return -1; |
2018 | 0 | } |
2019 | 0 | } else { |
2020 | 0 | if (get_meta_rowset_key(txn.get(), instance_id_, tablet_id, rowset_id, |
2021 | 0 | start_version, end_version, true, &exist) != 0) { |
2022 | 0 | return -1; |
2023 | 0 | } |
2024 | 0 | if (!exist && get_meta_rowset_key(txn.get(), instance_id_, tablet_id, rowset_id, |
2025 | 0 | start_version, end_version, false, &exist) != 0) { |
2026 | 0 | return -1; |
2027 | 0 | } |
2028 | 0 | } |
2029 | 0 | } |
2030 | | |
2031 | 0 | if (end_version > 1 && !exist) { |
2032 | 0 | *has_unrecycled_rowsets = true; |
2033 | 0 | LOG_INFO("skip recycle ref_count = 1 rowset") |
2034 | 0 | .tag("instance_id", instance_id_) |
2035 | 0 | .tag("tablet_id", tablet_id) |
2036 | 0 | .tag("rowset_id", rowset_id) |
2037 | 0 | .tag("start_version", start_version) |
2038 | 0 | .tag("end_version", end_version) |
2039 | 0 | .tag("ref_count", ref_count); |
2040 | 0 | return 0; |
2041 | 0 | } |
2042 | | |
2043 | 0 | if (recycle_rowset_meta_and_data("", rowset_meta) != 0) { |
2044 | 0 | LOG_WARNING("failed to recycle_rowset_meta_and_data") |
2045 | 0 | .tag("instance_id", instance_id_) |
2046 | 0 | .tag("tablet_id", tablet_id) |
2047 | 0 | .tag("rowset_id", rowset_id); |
2048 | 0 | return -1; |
2049 | 0 | } |
2050 | | |
2051 | 0 | ++num_recycled; |
2052 | 0 | return 0; |
2053 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES7_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES7_ |
2054 | | |
2055 | | // recycle_func and loop_done for scan and recycle |
2056 | 0 | return scan_and_recycle(data_rowset_ref_count_key_start, data_rowset_ref_count_key_end, |
2057 | 0 | std::move(recycle_func)); |
2058 | 0 | } |
2059 | | |
2060 | 17 | int InstanceRecycler::recycle_indexes() { |
2061 | 17 | const std::string task_name = "recycle_indexes"; |
2062 | 17 | int64_t num_scanned = 0; |
2063 | 17 | int64_t num_expired = 0; |
2064 | 17 | int64_t num_recycled = 0; |
2065 | 17 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
2066 | | |
2067 | 17 | RecycleIndexKeyInfo index_key_info0 {instance_id_, 0}; |
2068 | 17 | RecycleIndexKeyInfo index_key_info1 {instance_id_, INT64_MAX}; |
2069 | 17 | std::string index_key0; |
2070 | 17 | std::string index_key1; |
2071 | 17 | recycle_index_key(index_key_info0, &index_key0); |
2072 | 17 | recycle_index_key(index_key_info1, &index_key1); |
2073 | | |
2074 | 17 | LOG_WARNING("begin to recycle indexes").tag("instance_id", instance_id_); |
2075 | | |
2076 | 17 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
2077 | 17 | register_recycle_task(task_name, start_time); |
2078 | | |
2079 | 17 | DORIS_CLOUD_DEFER { |
2080 | 17 | unregister_recycle_task(task_name); |
2081 | 17 | int64_t cost = |
2082 | 17 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
2083 | 17 | metrics_context.finish_report(); |
2084 | 17 | LOG_WARNING("recycle indexes finished, cost={}s", cost) |
2085 | 17 | .tag("instance_id", instance_id_) |
2086 | 17 | .tag("num_scanned", num_scanned) |
2087 | 17 | .tag("num_expired", num_expired) |
2088 | 17 | .tag("num_recycled", num_recycled); |
2089 | 17 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_0clEv Line | Count | Source | 2079 | 2 | DORIS_CLOUD_DEFER { | 2080 | 2 | unregister_recycle_task(task_name); | 2081 | 2 | int64_t cost = | 2082 | 2 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2083 | 2 | metrics_context.finish_report(); | 2084 | 2 | LOG_WARNING("recycle indexes finished, cost={}s", cost) | 2085 | 2 | .tag("instance_id", instance_id_) | 2086 | 2 | .tag("num_scanned", num_scanned) | 2087 | 2 | .tag("num_expired", num_expired) | 2088 | 2 | .tag("num_recycled", num_recycled); | 2089 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_0clEv Line | Count | Source | 2079 | 15 | DORIS_CLOUD_DEFER { | 2080 | 15 | unregister_recycle_task(task_name); | 2081 | 15 | int64_t cost = | 2082 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2083 | 15 | metrics_context.finish_report(); | 2084 | 15 | LOG_WARNING("recycle indexes finished, cost={}s", cost) | 2085 | 15 | .tag("instance_id", instance_id_) | 2086 | 15 | .tag("num_scanned", num_scanned) | 2087 | 15 | .tag("num_expired", num_expired) | 2088 | 15 | .tag("num_recycled", num_recycled); | 2089 | 15 | }; |
|
2090 | | |
2091 | 17 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
2092 | | |
2093 | | // Elements in `index_keys` has the same lifetime as `it` in `scan_and_recycle` |
2094 | 17 | std::vector<std::string_view> index_keys; |
2095 | 17 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2096 | 10 | ++num_scanned; |
2097 | 10 | RecycleIndexPB index_pb; |
2098 | 10 | if (!index_pb.ParseFromArray(v.data(), v.size())) { |
2099 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); |
2100 | 0 | return -1; |
2101 | 0 | } |
2102 | 10 | int64_t current_time = ::time(nullptr); |
2103 | 10 | if (current_time < |
2104 | 10 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired |
2105 | 0 | return 0; |
2106 | 0 | } |
2107 | 10 | ++num_expired; |
2108 | | // decode index_id |
2109 | 10 | auto k1 = k; |
2110 | 10 | k1.remove_prefix(1); |
2111 | 10 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2112 | 10 | decode_key(&k1, &out); |
2113 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB |
2114 | 10 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); |
2115 | 10 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ |
2116 | 10 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id |
2117 | 10 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); |
2118 | | // Change state to RECYCLING |
2119 | 10 | std::unique_ptr<Transaction> txn; |
2120 | 10 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2121 | 10 | if (err != TxnErrorCode::TXN_OK) { |
2122 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2123 | 0 | return -1; |
2124 | 0 | } |
2125 | 10 | std::string val; |
2126 | 10 | err = txn->get(k, &val); |
2127 | 10 | if (err == |
2128 | 10 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it |
2129 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); |
2130 | 0 | return 0; |
2131 | 0 | } |
2132 | 10 | if (err != TxnErrorCode::TXN_OK) { |
2133 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); |
2134 | 0 | return -1; |
2135 | 0 | } |
2136 | 10 | index_pb.Clear(); |
2137 | 10 | if (!index_pb.ParseFromString(val)) { |
2138 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); |
2139 | 0 | return -1; |
2140 | 0 | } |
2141 | 10 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { |
2142 | 9 | index_pb.set_state(RecycleIndexPB::RECYCLING); |
2143 | 9 | txn->put(k, index_pb.SerializeAsString()); |
2144 | 9 | err = txn->commit(); |
2145 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2146 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2147 | 0 | return -1; |
2148 | 0 | } |
2149 | 9 | } |
2150 | 10 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { |
2151 | 1 | LOG_WARNING("failed to recycle tablets under index") |
2152 | 1 | .tag("table_id", index_pb.table_id()) |
2153 | 1 | .tag("instance_id", instance_id_) |
2154 | 1 | .tag("index_id", index_id); |
2155 | 1 | return -1; |
2156 | 1 | } |
2157 | | |
2158 | 9 | if (index_pb.has_db_id()) { |
2159 | | // Recycle the versioned keys |
2160 | 3 | std::unique_ptr<Transaction> txn; |
2161 | 3 | err = txn_kv_->create_txn(&txn); |
2162 | 3 | if (err != TxnErrorCode::TXN_OK) { |
2163 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2164 | 0 | return -1; |
2165 | 0 | } |
2166 | 3 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); |
2167 | 3 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); |
2168 | 3 | std::string index_inverted_key = versioned::index_inverted_key( |
2169 | 3 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); |
2170 | 3 | versioned_remove_all(txn.get(), meta_key); |
2171 | 3 | txn->remove(index_key); |
2172 | 3 | txn->remove(index_inverted_key); |
2173 | 3 | err = txn->commit(); |
2174 | 3 | if (err != TxnErrorCode::TXN_OK) { |
2175 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2176 | 0 | return -1; |
2177 | 0 | } |
2178 | 3 | } |
2179 | | |
2180 | 9 | metrics_context.total_recycled_num = ++num_recycled; |
2181 | 9 | metrics_context.report(); |
2182 | 9 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
2183 | 9 | index_keys.push_back(k); |
2184 | 9 | return 0; |
2185 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2095 | 2 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2096 | 2 | ++num_scanned; | 2097 | 2 | RecycleIndexPB index_pb; | 2098 | 2 | if (!index_pb.ParseFromArray(v.data(), v.size())) { | 2099 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2100 | 0 | return -1; | 2101 | 0 | } | 2102 | 2 | int64_t current_time = ::time(nullptr); | 2103 | 2 | if (current_time < | 2104 | 2 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired | 2105 | 0 | return 0; | 2106 | 0 | } | 2107 | 2 | ++num_expired; | 2108 | | // decode index_id | 2109 | 2 | auto k1 = k; | 2110 | 2 | k1.remove_prefix(1); | 2111 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2112 | 2 | decode_key(&k1, &out); | 2113 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB | 2114 | 2 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); | 2115 | 2 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ | 2116 | 2 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id | 2117 | 2 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); | 2118 | | // Change state to RECYCLING | 2119 | 2 | std::unique_ptr<Transaction> txn; | 2120 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2121 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2122 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2123 | 0 | return -1; | 2124 | 0 | } | 2125 | 2 | std::string val; | 2126 | 2 | err = txn->get(k, &val); | 2127 | 2 | if (err == | 2128 | 2 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2129 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); | 2130 | 0 | return 0; | 2131 | 0 | } | 2132 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2133 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); | 2134 | 0 | return -1; | 2135 | 0 | } | 2136 | 2 | index_pb.Clear(); | 2137 | 2 | if (!index_pb.ParseFromString(val)) { | 2138 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2139 | 0 | return -1; | 2140 | 0 | } | 2141 | 2 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { | 2142 | 1 | index_pb.set_state(RecycleIndexPB::RECYCLING); | 2143 | 1 | txn->put(k, index_pb.SerializeAsString()); | 2144 | 1 | err = txn->commit(); | 2145 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2146 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2147 | 0 | return -1; | 2148 | 0 | } | 2149 | 1 | } | 2150 | 2 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { | 2151 | 1 | LOG_WARNING("failed to recycle tablets under index") | 2152 | 1 | .tag("table_id", index_pb.table_id()) | 2153 | 1 | .tag("instance_id", instance_id_) | 2154 | 1 | .tag("index_id", index_id); | 2155 | 1 | return -1; | 2156 | 1 | } | 2157 | | | 2158 | 1 | if (index_pb.has_db_id()) { | 2159 | | // Recycle the versioned keys | 2160 | 1 | std::unique_ptr<Transaction> txn; | 2161 | 1 | err = txn_kv_->create_txn(&txn); | 2162 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2163 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2164 | 0 | return -1; | 2165 | 0 | } | 2166 | 1 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); | 2167 | 1 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); | 2168 | 1 | std::string index_inverted_key = versioned::index_inverted_key( | 2169 | 1 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); | 2170 | 1 | versioned_remove_all(txn.get(), meta_key); | 2171 | 1 | txn->remove(index_key); | 2172 | 1 | txn->remove(index_inverted_key); | 2173 | 1 | err = txn->commit(); | 2174 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2175 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2176 | 0 | return -1; | 2177 | 0 | } | 2178 | 1 | } | 2179 | | | 2180 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2181 | 1 | metrics_context.report(); | 2182 | 1 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2183 | 1 | index_keys.push_back(k); | 2184 | 1 | return 0; | 2185 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2095 | 8 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2096 | 8 | ++num_scanned; | 2097 | 8 | RecycleIndexPB index_pb; | 2098 | 8 | if (!index_pb.ParseFromArray(v.data(), v.size())) { | 2099 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2100 | 0 | return -1; | 2101 | 0 | } | 2102 | 8 | int64_t current_time = ::time(nullptr); | 2103 | 8 | if (current_time < | 2104 | 8 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired | 2105 | 0 | return 0; | 2106 | 0 | } | 2107 | 8 | ++num_expired; | 2108 | | // decode index_id | 2109 | 8 | auto k1 = k; | 2110 | 8 | k1.remove_prefix(1); | 2111 | 8 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2112 | 8 | decode_key(&k1, &out); | 2113 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB | 2114 | 8 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); | 2115 | 8 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ | 2116 | 8 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id | 2117 | 8 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); | 2118 | | // Change state to RECYCLING | 2119 | 8 | std::unique_ptr<Transaction> txn; | 2120 | 8 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2121 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2122 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2123 | 0 | return -1; | 2124 | 0 | } | 2125 | 8 | std::string val; | 2126 | 8 | err = txn->get(k, &val); | 2127 | 8 | if (err == | 2128 | 8 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2129 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); | 2130 | 0 | return 0; | 2131 | 0 | } | 2132 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2133 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); | 2134 | 0 | return -1; | 2135 | 0 | } | 2136 | 8 | index_pb.Clear(); | 2137 | 8 | if (!index_pb.ParseFromString(val)) { | 2138 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2139 | 0 | return -1; | 2140 | 0 | } | 2141 | 8 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { | 2142 | 8 | index_pb.set_state(RecycleIndexPB::RECYCLING); | 2143 | 8 | txn->put(k, index_pb.SerializeAsString()); | 2144 | 8 | err = txn->commit(); | 2145 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2146 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2147 | 0 | return -1; | 2148 | 0 | } | 2149 | 8 | } | 2150 | 8 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { | 2151 | 0 | LOG_WARNING("failed to recycle tablets under index") | 2152 | 0 | .tag("table_id", index_pb.table_id()) | 2153 | 0 | .tag("instance_id", instance_id_) | 2154 | 0 | .tag("index_id", index_id); | 2155 | 0 | return -1; | 2156 | 0 | } | 2157 | | | 2158 | 8 | if (index_pb.has_db_id()) { | 2159 | | // Recycle the versioned keys | 2160 | 2 | std::unique_ptr<Transaction> txn; | 2161 | 2 | err = txn_kv_->create_txn(&txn); | 2162 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2163 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2164 | 0 | return -1; | 2165 | 0 | } | 2166 | 2 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); | 2167 | 2 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); | 2168 | 2 | std::string index_inverted_key = versioned::index_inverted_key( | 2169 | 2 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); | 2170 | 2 | versioned_remove_all(txn.get(), meta_key); | 2171 | 2 | txn->remove(index_key); | 2172 | 2 | txn->remove(index_inverted_key); | 2173 | 2 | err = txn->commit(); | 2174 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2175 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2176 | 0 | return -1; | 2177 | 0 | } | 2178 | 2 | } | 2179 | | | 2180 | 8 | metrics_context.total_recycled_num = ++num_recycled; | 2181 | 8 | metrics_context.report(); | 2182 | 8 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2183 | 8 | index_keys.push_back(k); | 2184 | 8 | return 0; | 2185 | 8 | }; |
|
2186 | | |
2187 | 17 | auto loop_done = [&index_keys, this]() -> int { |
2188 | 6 | if (index_keys.empty()) return 0; |
2189 | 5 | DORIS_CLOUD_DEFER { |
2190 | 5 | index_keys.clear(); |
2191 | 5 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2189 | 1 | DORIS_CLOUD_DEFER { | 2190 | 1 | index_keys.clear(); | 2191 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2189 | 4 | DORIS_CLOUD_DEFER { | 2190 | 4 | index_keys.clear(); | 2191 | 4 | }; |
|
2192 | 5 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { |
2193 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; |
2194 | 0 | return -1; |
2195 | 0 | } |
2196 | 5 | return 0; |
2197 | 5 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEv Line | Count | Source | 2187 | 2 | auto loop_done = [&index_keys, this]() -> int { | 2188 | 2 | if (index_keys.empty()) return 0; | 2189 | 1 | DORIS_CLOUD_DEFER { | 2190 | 1 | index_keys.clear(); | 2191 | 1 | }; | 2192 | 1 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { | 2193 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; | 2194 | 0 | return -1; | 2195 | 0 | } | 2196 | 1 | return 0; | 2197 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEv Line | Count | Source | 2187 | 4 | auto loop_done = [&index_keys, this]() -> int { | 2188 | 4 | if (index_keys.empty()) return 0; | 2189 | 4 | DORIS_CLOUD_DEFER { | 2190 | 4 | index_keys.clear(); | 2191 | 4 | }; | 2192 | 4 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { | 2193 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; | 2194 | 0 | return -1; | 2195 | 0 | } | 2196 | 4 | return 0; | 2197 | 4 | }; |
|
2198 | | |
2199 | 17 | if (config::enable_recycler_stats_metrics) { |
2200 | 0 | scan_and_statistics_indexes(); |
2201 | 0 | } |
2202 | | // recycle_func and loop_done for scan and recycle |
2203 | 17 | return scan_and_recycle(index_key0, index_key1, std::move(recycle_func), std::move(loop_done)); |
2204 | 17 | } |
2205 | | |
2206 | | bool check_lazy_txn_finished(std::shared_ptr<TxnKv> txn_kv, const std::string instance_id, |
2207 | 8.24k | int64_t tablet_id) { |
2208 | 8.24k | TEST_SYNC_POINT_RETURN_WITH_VALUE("check_lazy_txn_finished::bypass_check", true); |
2209 | | |
2210 | 8.23k | std::unique_ptr<Transaction> txn; |
2211 | 8.23k | TxnErrorCode err = txn_kv->create_txn(&txn); |
2212 | 8.23k | if (err != TxnErrorCode::TXN_OK) { |
2213 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id |
2214 | 0 | << " tablet_id=" << tablet_id << " err=" << err; |
2215 | 0 | return false; |
2216 | 0 | } |
2217 | | |
2218 | 8.23k | std::string tablet_idx_key = meta_tablet_idx_key({instance_id, tablet_id}); |
2219 | 8.23k | std::string tablet_idx_val; |
2220 | 8.23k | err = txn->get(tablet_idx_key, &tablet_idx_val); |
2221 | 8.23k | if (TxnErrorCode::TXN_OK != err) { |
2222 | 0 | LOG(WARNING) << "failed to get tablet index, instance_id=" << instance_id |
2223 | 0 | << " tablet_id=" << tablet_id << " err=" << err |
2224 | 0 | << " key=" << hex(tablet_idx_key); |
2225 | 0 | return false; |
2226 | 0 | } |
2227 | | |
2228 | 8.23k | TabletIndexPB tablet_idx_pb; |
2229 | 8.23k | if (!tablet_idx_pb.ParseFromString(tablet_idx_val)) { |
2230 | 0 | LOG(WARNING) << "failed to parse tablet_idx_pb, instance_id=" << instance_id |
2231 | 0 | << " tablet_id=" << tablet_id; |
2232 | 0 | return false; |
2233 | 0 | } |
2234 | | |
2235 | 8.23k | if (!tablet_idx_pb.has_db_id()) { |
2236 | | // In the previous version, the db_id was not set in the index_pb. |
2237 | | // If updating to the version which enable txn lazy commit, the db_id will be set. |
2238 | 0 | LOG(INFO) << "txn index has no db_id, tablet_id=" << tablet_id |
2239 | 0 | << " instance_id=" << instance_id |
2240 | 0 | << " tablet_idx_pb=" << tablet_idx_pb.ShortDebugString(); |
2241 | 0 | return true; |
2242 | 0 | } |
2243 | | |
2244 | 8.23k | std::string ver_val; |
2245 | 8.23k | std::string ver_key = |
2246 | 8.23k | partition_version_key({instance_id, tablet_idx_pb.db_id(), tablet_idx_pb.table_id(), |
2247 | 8.23k | tablet_idx_pb.partition_id()}); |
2248 | 8.23k | err = txn->get(ver_key, &ver_val); |
2249 | | |
2250 | 8.23k | if (TxnErrorCode::TXN_KEY_NOT_FOUND == err) { |
2251 | 202 | LOG(INFO) << "" |
2252 | 202 | "partition version not found, instance_id=" |
2253 | 202 | << instance_id << " db_id=" << tablet_idx_pb.db_id() |
2254 | 202 | << " table_id=" << tablet_idx_pb.table_id() |
2255 | 202 | << " partition_id=" << tablet_idx_pb.partition_id() << " tablet_id=" << tablet_id |
2256 | 202 | << " key=" << hex(ver_key); |
2257 | 202 | return true; |
2258 | 202 | } |
2259 | | |
2260 | 8.03k | if (TxnErrorCode::TXN_OK != err) { |
2261 | 0 | LOG(WARNING) << "failed to get partition version, instance_id=" << instance_id |
2262 | 0 | << " db_id=" << tablet_idx_pb.db_id() |
2263 | 0 | << " table_id=" << tablet_idx_pb.table_id() |
2264 | 0 | << " partition_id=" << tablet_idx_pb.partition_id() |
2265 | 0 | << " tablet_id=" << tablet_id << " key=" << hex(ver_key) << " err=" << err; |
2266 | 0 | return false; |
2267 | 0 | } |
2268 | | |
2269 | 8.03k | VersionPB version_pb; |
2270 | 8.03k | if (!version_pb.ParseFromString(ver_val)) { |
2271 | 0 | LOG(WARNING) << "failed to parse version_pb, instance_id=" << instance_id |
2272 | 0 | << " db_id=" << tablet_idx_pb.db_id() |
2273 | 0 | << " table_id=" << tablet_idx_pb.table_id() |
2274 | 0 | << " partition_id=" << tablet_idx_pb.partition_id() |
2275 | 0 | << " tablet_id=" << tablet_id << " key=" << hex(ver_key); |
2276 | 0 | return false; |
2277 | 0 | } |
2278 | | |
2279 | 8.03k | if (version_pb.pending_txn_ids_size() > 0) { |
2280 | 4.00k | TEST_SYNC_POINT_CALLBACK("check_lazy_txn_finished::txn_not_finished"); |
2281 | 4.00k | DCHECK(version_pb.pending_txn_ids_size() == 1); |
2282 | 4.00k | LOG(WARNING) << "lazy txn not finished, instance_id=" << instance_id |
2283 | 4.00k | << " db_id=" << tablet_idx_pb.db_id() |
2284 | 4.00k | << " table_id=" << tablet_idx_pb.table_id() |
2285 | 4.00k | << " partition_id=" << tablet_idx_pb.partition_id() |
2286 | 4.00k | << " tablet_id=" << tablet_id << " txn_id=" << version_pb.pending_txn_ids(0) |
2287 | 4.00k | << " key=" << hex(ver_key); |
2288 | 4.00k | return false; |
2289 | 4.00k | } |
2290 | 4.03k | return true; |
2291 | 8.03k | } |
2292 | | |
2293 | 15 | int InstanceRecycler::recycle_partitions() { |
2294 | 15 | const std::string task_name = "recycle_partitions"; |
2295 | 15 | int64_t num_scanned = 0; |
2296 | 15 | int64_t num_expired = 0; |
2297 | 15 | int64_t num_recycled = 0; |
2298 | 15 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
2299 | | |
2300 | 15 | RecyclePartKeyInfo part_key_info0 {instance_id_, 0}; |
2301 | 15 | RecyclePartKeyInfo part_key_info1 {instance_id_, INT64_MAX}; |
2302 | 15 | std::string part_key0; |
2303 | 15 | std::string part_key1; |
2304 | 15 | recycle_partition_key(part_key_info0, &part_key0); |
2305 | 15 | recycle_partition_key(part_key_info1, &part_key1); |
2306 | | |
2307 | 15 | LOG_WARNING("begin to recycle partitions").tag("instance_id", instance_id_); |
2308 | | |
2309 | 15 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
2310 | 15 | register_recycle_task(task_name, start_time); |
2311 | | |
2312 | 15 | DORIS_CLOUD_DEFER { |
2313 | 15 | unregister_recycle_task(task_name); |
2314 | 15 | int64_t cost = |
2315 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
2316 | 15 | metrics_context.finish_report(); |
2317 | 15 | LOG_WARNING("recycle partitions finished, cost={}s", cost) |
2318 | 15 | .tag("instance_id", instance_id_) |
2319 | 15 | .tag("num_scanned", num_scanned) |
2320 | 15 | .tag("num_expired", num_expired) |
2321 | 15 | .tag("num_recycled", num_recycled); |
2322 | 15 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_0clEv Line | Count | Source | 2312 | 2 | DORIS_CLOUD_DEFER { | 2313 | 2 | unregister_recycle_task(task_name); | 2314 | 2 | int64_t cost = | 2315 | 2 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2316 | 2 | metrics_context.finish_report(); | 2317 | 2 | LOG_WARNING("recycle partitions finished, cost={}s", cost) | 2318 | 2 | .tag("instance_id", instance_id_) | 2319 | 2 | .tag("num_scanned", num_scanned) | 2320 | 2 | .tag("num_expired", num_expired) | 2321 | 2 | .tag("num_recycled", num_recycled); | 2322 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_0clEv Line | Count | Source | 2312 | 13 | DORIS_CLOUD_DEFER { | 2313 | 13 | unregister_recycle_task(task_name); | 2314 | 13 | int64_t cost = | 2315 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2316 | 13 | metrics_context.finish_report(); | 2317 | 13 | LOG_WARNING("recycle partitions finished, cost={}s", cost) | 2318 | 13 | .tag("instance_id", instance_id_) | 2319 | 13 | .tag("num_scanned", num_scanned) | 2320 | 13 | .tag("num_expired", num_expired) | 2321 | 13 | .tag("num_recycled", num_recycled); | 2322 | 13 | }; |
|
2323 | | |
2324 | 15 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
2325 | | |
2326 | | // Elements in `partition_keys` has the same lifetime as `it` in `scan_and_recycle` |
2327 | 15 | std::vector<std::string_view> partition_keys; |
2328 | 15 | std::vector<std::string> partition_version_keys; |
2329 | 15 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2330 | 9 | ++num_scanned; |
2331 | 9 | RecyclePartitionPB part_pb; |
2332 | 9 | if (!part_pb.ParseFromArray(v.data(), v.size())) { |
2333 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
2334 | 0 | return -1; |
2335 | 0 | } |
2336 | 9 | int64_t current_time = ::time(nullptr); |
2337 | 9 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, |
2338 | 9 | &earlest_ts)) { // not expired |
2339 | 0 | return 0; |
2340 | 0 | } |
2341 | 9 | ++num_expired; |
2342 | | // decode partition_id |
2343 | 9 | auto k1 = k; |
2344 | 9 | k1.remove_prefix(1); |
2345 | 9 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2346 | 9 | decode_key(&k1, &out); |
2347 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB |
2348 | 9 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); |
2349 | 9 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ |
2350 | 9 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id |
2351 | 9 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); |
2352 | | // Change state to RECYCLING |
2353 | 9 | std::unique_ptr<Transaction> txn; |
2354 | 9 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2355 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2356 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2357 | 0 | return -1; |
2358 | 0 | } |
2359 | 9 | std::string val; |
2360 | 9 | err = txn->get(k, &val); |
2361 | 9 | if (err == |
2362 | 9 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it |
2363 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); |
2364 | 0 | return 0; |
2365 | 0 | } |
2366 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2367 | 0 | LOG_WARNING("failed to get kv"); |
2368 | 0 | return -1; |
2369 | 0 | } |
2370 | 9 | part_pb.Clear(); |
2371 | 9 | if (!part_pb.ParseFromString(val)) { |
2372 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
2373 | 0 | return -1; |
2374 | 0 | } |
2375 | | // Partitions with PREPARED state MUST have no data |
2376 | 9 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { |
2377 | 8 | part_pb.set_state(RecyclePartitionPB::RECYCLING); |
2378 | 8 | txn->put(k, part_pb.SerializeAsString()); |
2379 | 8 | err = txn->commit(); |
2380 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2381 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
2382 | 0 | return -1; |
2383 | 0 | } |
2384 | 8 | } |
2385 | | |
2386 | 9 | int ret = 0; |
2387 | 33 | for (int64_t index_id : part_pb.index_id()) { |
2388 | 33 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { |
2389 | 1 | LOG_WARNING("failed to recycle tablets under partition") |
2390 | 1 | .tag("table_id", part_pb.table_id()) |
2391 | 1 | .tag("instance_id", instance_id_) |
2392 | 1 | .tag("index_id", index_id) |
2393 | 1 | .tag("partition_id", partition_id); |
2394 | 1 | ret = -1; |
2395 | 1 | } |
2396 | 33 | } |
2397 | 9 | if (ret == 0 && part_pb.has_db_id()) { |
2398 | | // Recycle the versioned keys |
2399 | 8 | std::unique_ptr<Transaction> txn; |
2400 | 8 | err = txn_kv_->create_txn(&txn); |
2401 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2402 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2403 | 0 | return -1; |
2404 | 0 | } |
2405 | 8 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); |
2406 | 8 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); |
2407 | 8 | std::string inverted_index_key = versioned::partition_inverted_index_key( |
2408 | 8 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); |
2409 | 8 | std::string partition_version_key = |
2410 | 8 | versioned::partition_version_key({instance_id_, partition_id}); |
2411 | 8 | versioned_remove_all(txn.get(), meta_key); |
2412 | 8 | txn->remove(index_key); |
2413 | 8 | txn->remove(inverted_index_key); |
2414 | 8 | versioned_remove_all(txn.get(), partition_version_key); |
2415 | 8 | err = txn->commit(); |
2416 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2417 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2418 | 0 | return -1; |
2419 | 0 | } |
2420 | 8 | } |
2421 | | |
2422 | 9 | if (ret == 0) { |
2423 | 8 | ++num_recycled; |
2424 | 8 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
2425 | 8 | partition_keys.push_back(k); |
2426 | 8 | if (part_pb.db_id() > 0) { |
2427 | 8 | partition_version_keys.push_back(partition_version_key( |
2428 | 8 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); |
2429 | 8 | } |
2430 | 8 | metrics_context.total_recycled_num = num_recycled; |
2431 | 8 | metrics_context.report(); |
2432 | 8 | } |
2433 | 9 | return ret; |
2434 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2329 | 2 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2330 | 2 | ++num_scanned; | 2331 | 2 | RecyclePartitionPB part_pb; | 2332 | 2 | if (!part_pb.ParseFromArray(v.data(), v.size())) { | 2333 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2334 | 0 | return -1; | 2335 | 0 | } | 2336 | 2 | int64_t current_time = ::time(nullptr); | 2337 | 2 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, | 2338 | 2 | &earlest_ts)) { // not expired | 2339 | 0 | return 0; | 2340 | 0 | } | 2341 | 2 | ++num_expired; | 2342 | | // decode partition_id | 2343 | 2 | auto k1 = k; | 2344 | 2 | k1.remove_prefix(1); | 2345 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2346 | 2 | decode_key(&k1, &out); | 2347 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB | 2348 | 2 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); | 2349 | 2 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ | 2350 | 2 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id | 2351 | 2 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); | 2352 | | // Change state to RECYCLING | 2353 | 2 | std::unique_ptr<Transaction> txn; | 2354 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2355 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2356 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2357 | 0 | return -1; | 2358 | 0 | } | 2359 | 2 | std::string val; | 2360 | 2 | err = txn->get(k, &val); | 2361 | 2 | if (err == | 2362 | 2 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2363 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); | 2364 | 0 | return 0; | 2365 | 0 | } | 2366 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2367 | 0 | LOG_WARNING("failed to get kv"); | 2368 | 0 | return -1; | 2369 | 0 | } | 2370 | 2 | part_pb.Clear(); | 2371 | 2 | if (!part_pb.ParseFromString(val)) { | 2372 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2373 | 0 | return -1; | 2374 | 0 | } | 2375 | | // Partitions with PREPARED state MUST have no data | 2376 | 2 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { | 2377 | 1 | part_pb.set_state(RecyclePartitionPB::RECYCLING); | 2378 | 1 | txn->put(k, part_pb.SerializeAsString()); | 2379 | 1 | err = txn->commit(); | 2380 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2381 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 2382 | 0 | return -1; | 2383 | 0 | } | 2384 | 1 | } | 2385 | | | 2386 | 2 | int ret = 0; | 2387 | 2 | for (int64_t index_id : part_pb.index_id()) { | 2388 | 2 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { | 2389 | 1 | LOG_WARNING("failed to recycle tablets under partition") | 2390 | 1 | .tag("table_id", part_pb.table_id()) | 2391 | 1 | .tag("instance_id", instance_id_) | 2392 | 1 | .tag("index_id", index_id) | 2393 | 1 | .tag("partition_id", partition_id); | 2394 | 1 | ret = -1; | 2395 | 1 | } | 2396 | 2 | } | 2397 | 2 | if (ret == 0 && part_pb.has_db_id()) { | 2398 | | // Recycle the versioned keys | 2399 | 1 | std::unique_ptr<Transaction> txn; | 2400 | 1 | err = txn_kv_->create_txn(&txn); | 2401 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2402 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2403 | 0 | return -1; | 2404 | 0 | } | 2405 | 1 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); | 2406 | 1 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); | 2407 | 1 | std::string inverted_index_key = versioned::partition_inverted_index_key( | 2408 | 1 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); | 2409 | 1 | std::string partition_version_key = | 2410 | 1 | versioned::partition_version_key({instance_id_, partition_id}); | 2411 | 1 | versioned_remove_all(txn.get(), meta_key); | 2412 | 1 | txn->remove(index_key); | 2413 | 1 | txn->remove(inverted_index_key); | 2414 | 1 | versioned_remove_all(txn.get(), partition_version_key); | 2415 | 1 | err = txn->commit(); | 2416 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2417 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2418 | 0 | return -1; | 2419 | 0 | } | 2420 | 1 | } | 2421 | | | 2422 | 2 | if (ret == 0) { | 2423 | 1 | ++num_recycled; | 2424 | 1 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2425 | 1 | partition_keys.push_back(k); | 2426 | 1 | if (part_pb.db_id() > 0) { | 2427 | 1 | partition_version_keys.push_back(partition_version_key( | 2428 | 1 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); | 2429 | 1 | } | 2430 | 1 | metrics_context.total_recycled_num = num_recycled; | 2431 | 1 | metrics_context.report(); | 2432 | 1 | } | 2433 | 2 | return ret; | 2434 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2329 | 7 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2330 | 7 | ++num_scanned; | 2331 | 7 | RecyclePartitionPB part_pb; | 2332 | 7 | if (!part_pb.ParseFromArray(v.data(), v.size())) { | 2333 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2334 | 0 | return -1; | 2335 | 0 | } | 2336 | 7 | int64_t current_time = ::time(nullptr); | 2337 | 7 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, | 2338 | 7 | &earlest_ts)) { // not expired | 2339 | 0 | return 0; | 2340 | 0 | } | 2341 | 7 | ++num_expired; | 2342 | | // decode partition_id | 2343 | 7 | auto k1 = k; | 2344 | 7 | k1.remove_prefix(1); | 2345 | 7 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2346 | 7 | decode_key(&k1, &out); | 2347 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB | 2348 | 7 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); | 2349 | 7 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ | 2350 | 7 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id | 2351 | 7 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); | 2352 | | // Change state to RECYCLING | 2353 | 7 | std::unique_ptr<Transaction> txn; | 2354 | 7 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2355 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2356 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2357 | 0 | return -1; | 2358 | 0 | } | 2359 | 7 | std::string val; | 2360 | 7 | err = txn->get(k, &val); | 2361 | 7 | if (err == | 2362 | 7 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2363 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); | 2364 | 0 | return 0; | 2365 | 0 | } | 2366 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2367 | 0 | LOG_WARNING("failed to get kv"); | 2368 | 0 | return -1; | 2369 | 0 | } | 2370 | 7 | part_pb.Clear(); | 2371 | 7 | if (!part_pb.ParseFromString(val)) { | 2372 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2373 | 0 | return -1; | 2374 | 0 | } | 2375 | | // Partitions with PREPARED state MUST have no data | 2376 | 7 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { | 2377 | 7 | part_pb.set_state(RecyclePartitionPB::RECYCLING); | 2378 | 7 | txn->put(k, part_pb.SerializeAsString()); | 2379 | 7 | err = txn->commit(); | 2380 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2381 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 2382 | 0 | return -1; | 2383 | 0 | } | 2384 | 7 | } | 2385 | | | 2386 | 7 | int ret = 0; | 2387 | 31 | for (int64_t index_id : part_pb.index_id()) { | 2388 | 31 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { | 2389 | 0 | LOG_WARNING("failed to recycle tablets under partition") | 2390 | 0 | .tag("table_id", part_pb.table_id()) | 2391 | 0 | .tag("instance_id", instance_id_) | 2392 | 0 | .tag("index_id", index_id) | 2393 | 0 | .tag("partition_id", partition_id); | 2394 | 0 | ret = -1; | 2395 | 0 | } | 2396 | 31 | } | 2397 | 7 | if (ret == 0 && part_pb.has_db_id()) { | 2398 | | // Recycle the versioned keys | 2399 | 7 | std::unique_ptr<Transaction> txn; | 2400 | 7 | err = txn_kv_->create_txn(&txn); | 2401 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2402 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2403 | 0 | return -1; | 2404 | 0 | } | 2405 | 7 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); | 2406 | 7 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); | 2407 | 7 | std::string inverted_index_key = versioned::partition_inverted_index_key( | 2408 | 7 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); | 2409 | 7 | std::string partition_version_key = | 2410 | 7 | versioned::partition_version_key({instance_id_, partition_id}); | 2411 | 7 | versioned_remove_all(txn.get(), meta_key); | 2412 | 7 | txn->remove(index_key); | 2413 | 7 | txn->remove(inverted_index_key); | 2414 | 7 | versioned_remove_all(txn.get(), partition_version_key); | 2415 | 7 | err = txn->commit(); | 2416 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2417 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2418 | 0 | return -1; | 2419 | 0 | } | 2420 | 7 | } | 2421 | | | 2422 | 7 | if (ret == 0) { | 2423 | 7 | ++num_recycled; | 2424 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2425 | 7 | partition_keys.push_back(k); | 2426 | 7 | if (part_pb.db_id() > 0) { | 2427 | 7 | partition_version_keys.push_back(partition_version_key( | 2428 | 7 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); | 2429 | 7 | } | 2430 | 7 | metrics_context.total_recycled_num = num_recycled; | 2431 | 7 | metrics_context.report(); | 2432 | 7 | } | 2433 | 7 | return ret; | 2434 | 7 | }; |
|
2435 | | |
2436 | 15 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { |
2437 | 5 | if (partition_keys.empty()) return 0; |
2438 | 4 | DORIS_CLOUD_DEFER { |
2439 | 4 | partition_keys.clear(); |
2440 | 4 | partition_version_keys.clear(); |
2441 | 4 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2438 | 1 | DORIS_CLOUD_DEFER { | 2439 | 1 | partition_keys.clear(); | 2440 | 1 | partition_version_keys.clear(); | 2441 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2438 | 3 | DORIS_CLOUD_DEFER { | 2439 | 3 | partition_keys.clear(); | 2440 | 3 | partition_version_keys.clear(); | 2441 | 3 | }; |
|
2442 | 4 | std::unique_ptr<Transaction> txn; |
2443 | 4 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2444 | 4 | if (err != TxnErrorCode::TXN_OK) { |
2445 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; |
2446 | 0 | return -1; |
2447 | 0 | } |
2448 | 8 | for (auto& k : partition_keys) { |
2449 | 8 | txn->remove(k); |
2450 | 8 | } |
2451 | 8 | for (auto& k : partition_version_keys) { |
2452 | 8 | txn->remove(k); |
2453 | 8 | } |
2454 | 4 | err = txn->commit(); |
2455 | 4 | if (err != TxnErrorCode::TXN_OK) { |
2456 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ |
2457 | 0 | << " err=" << err; |
2458 | 0 | return -1; |
2459 | 0 | } |
2460 | 4 | return 0; |
2461 | 4 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEv Line | Count | Source | 2436 | 2 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { | 2437 | 2 | if (partition_keys.empty()) return 0; | 2438 | 1 | DORIS_CLOUD_DEFER { | 2439 | 1 | partition_keys.clear(); | 2440 | 1 | partition_version_keys.clear(); | 2441 | 1 | }; | 2442 | 1 | std::unique_ptr<Transaction> txn; | 2443 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2444 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2445 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 2446 | 0 | return -1; | 2447 | 0 | } | 2448 | 1 | for (auto& k : partition_keys) { | 2449 | 1 | txn->remove(k); | 2450 | 1 | } | 2451 | 1 | for (auto& k : partition_version_keys) { | 2452 | 1 | txn->remove(k); | 2453 | 1 | } | 2454 | 1 | err = txn->commit(); | 2455 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2456 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ | 2457 | 0 | << " err=" << err; | 2458 | 0 | return -1; | 2459 | 0 | } | 2460 | 1 | return 0; | 2461 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEv Line | Count | Source | 2436 | 3 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { | 2437 | 3 | if (partition_keys.empty()) return 0; | 2438 | 3 | DORIS_CLOUD_DEFER { | 2439 | 3 | partition_keys.clear(); | 2440 | 3 | partition_version_keys.clear(); | 2441 | 3 | }; | 2442 | 3 | std::unique_ptr<Transaction> txn; | 2443 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2444 | 3 | if (err != TxnErrorCode::TXN_OK) { | 2445 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 2446 | 0 | return -1; | 2447 | 0 | } | 2448 | 7 | for (auto& k : partition_keys) { | 2449 | 7 | txn->remove(k); | 2450 | 7 | } | 2451 | 7 | for (auto& k : partition_version_keys) { | 2452 | 7 | txn->remove(k); | 2453 | 7 | } | 2454 | 3 | err = txn->commit(); | 2455 | 3 | if (err != TxnErrorCode::TXN_OK) { | 2456 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ | 2457 | 0 | << " err=" << err; | 2458 | 0 | return -1; | 2459 | 0 | } | 2460 | 3 | return 0; | 2461 | 3 | }; |
|
2462 | | |
2463 | 15 | if (config::enable_recycler_stats_metrics) { |
2464 | 0 | scan_and_statistics_partitions(); |
2465 | 0 | } |
2466 | | // recycle_func and loop_done for scan and recycle |
2467 | 15 | return scan_and_recycle(part_key0, part_key1, std::move(recycle_func), std::move(loop_done)); |
2468 | 15 | } |
2469 | | |
2470 | 14 | int InstanceRecycler::recycle_versions() { |
2471 | 14 | if (should_recycle_versioned_keys()) { |
2472 | 2 | return recycle_orphan_partitions(); |
2473 | 2 | } |
2474 | | |
2475 | 12 | int64_t num_scanned = 0; |
2476 | 12 | int64_t num_recycled = 0; |
2477 | 12 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_versions"); |
2478 | | |
2479 | 12 | LOG_WARNING("begin to recycle table and partition versions").tag("instance_id", instance_id_); |
2480 | | |
2481 | 12 | auto start_time = steady_clock::now(); |
2482 | | |
2483 | 12 | DORIS_CLOUD_DEFER { |
2484 | 12 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2485 | 12 | metrics_context.finish_report(); |
2486 | 12 | LOG_WARNING("recycle table and partition versions finished, cost={}s", cost) |
2487 | 12 | .tag("instance_id", instance_id_) |
2488 | 12 | .tag("num_scanned", num_scanned) |
2489 | 12 | .tag("num_recycled", num_recycled); |
2490 | 12 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_0clEv Line | Count | Source | 2483 | 12 | DORIS_CLOUD_DEFER { | 2484 | 12 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2485 | 12 | metrics_context.finish_report(); | 2486 | 12 | LOG_WARNING("recycle table and partition versions finished, cost={}s", cost) | 2487 | 12 | .tag("instance_id", instance_id_) | 2488 | 12 | .tag("num_scanned", num_scanned) | 2489 | 12 | .tag("num_recycled", num_recycled); | 2490 | 12 | }; |
|
2491 | | |
2492 | 12 | auto version_key_begin = partition_version_key({instance_id_, 0, 0, 0}); |
2493 | 12 | auto version_key_end = partition_version_key({instance_id_, INT64_MAX, 0, 0}); |
2494 | 12 | int64_t last_scanned_table_id = 0; |
2495 | 12 | bool is_recycled = false; // Is last scanned kv recycled |
2496 | 12 | auto recycle_func = [&num_scanned, &num_recycled, &last_scanned_table_id, &is_recycled, |
2497 | 12 | &metrics_context, this](std::string_view k, std::string_view) { |
2498 | 2 | ++num_scanned; |
2499 | 2 | auto k1 = k; |
2500 | 2 | k1.remove_prefix(1); |
2501 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} |
2502 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2503 | 2 | decode_key(&k1, &out); |
2504 | 2 | DCHECK_EQ(out.size(), 6) << k; |
2505 | 2 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); |
2506 | 2 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table |
2507 | 0 | num_recycled += is_recycled; // Version kv of this table has been recycled |
2508 | 0 | return 0; |
2509 | 0 | } |
2510 | 2 | last_scanned_table_id = table_id; |
2511 | 2 | is_recycled = false; |
2512 | 2 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); |
2513 | 2 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); |
2514 | 2 | std::unique_ptr<Transaction> txn; |
2515 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2516 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2517 | 0 | return -1; |
2518 | 0 | } |
2519 | 2 | std::unique_ptr<RangeGetIterator> iter; |
2520 | 2 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); |
2521 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2522 | 0 | return -1; |
2523 | 0 | } |
2524 | 2 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions |
2525 | 1 | return 0; |
2526 | 1 | } |
2527 | 1 | auto db_id = std::get<int64_t>(std::get<0>(out[3])); |
2528 | | // 1. Remove all partition version kvs of this table |
2529 | 1 | auto partition_version_key_begin = |
2530 | 1 | partition_version_key({instance_id_, db_id, table_id, 0}); |
2531 | 1 | auto partition_version_key_end = |
2532 | 1 | partition_version_key({instance_id_, db_id, table_id, INT64_MAX}); |
2533 | 1 | txn->remove(partition_version_key_begin, partition_version_key_end); |
2534 | 1 | LOG(WARNING) << "remove partition version kv, begin=" << hex(partition_version_key_begin) |
2535 | 1 | << " end=" << hex(partition_version_key_end) << " db_id=" << db_id |
2536 | 1 | << " table_id=" << table_id; |
2537 | | // 2. Remove the table version kv of this table |
2538 | 1 | auto tbl_version_key = table_version_key({instance_id_, db_id, table_id}); |
2539 | 1 | txn->remove(tbl_version_key); |
2540 | 1 | LOG(WARNING) << "remove table version kv " << hex(tbl_version_key); |
2541 | | // 3. Remove mow delete bitmap update lock and tablet job lock |
2542 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); |
2543 | 1 | txn->remove(lock_key); |
2544 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); |
2545 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); |
2546 | 1 | std::string tablet_job_key_end = mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); |
2547 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); |
2548 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) |
2549 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id |
2550 | 1 | << " table_id=" << table_id; |
2551 | 1 | err = txn->commit(); |
2552 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2553 | 0 | return -1; |
2554 | 0 | } |
2555 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
2556 | 1 | metrics_context.report(); |
2557 | 1 | is_recycled = true; |
2558 | 1 | return 0; |
2559 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2497 | 2 | &metrics_context, this](std::string_view k, std::string_view) { | 2498 | 2 | ++num_scanned; | 2499 | 2 | auto k1 = k; | 2500 | 2 | k1.remove_prefix(1); | 2501 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} | 2502 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2503 | 2 | decode_key(&k1, &out); | 2504 | 2 | DCHECK_EQ(out.size(), 6) << k; | 2505 | 2 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); | 2506 | 2 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table | 2507 | 0 | num_recycled += is_recycled; // Version kv of this table has been recycled | 2508 | 0 | return 0; | 2509 | 0 | } | 2510 | 2 | last_scanned_table_id = table_id; | 2511 | 2 | is_recycled = false; | 2512 | 2 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); | 2513 | 2 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); | 2514 | 2 | std::unique_ptr<Transaction> txn; | 2515 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2516 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2517 | 0 | return -1; | 2518 | 0 | } | 2519 | 2 | std::unique_ptr<RangeGetIterator> iter; | 2520 | 2 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); | 2521 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2522 | 0 | return -1; | 2523 | 0 | } | 2524 | 2 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions | 2525 | 1 | return 0; | 2526 | 1 | } | 2527 | 1 | auto db_id = std::get<int64_t>(std::get<0>(out[3])); | 2528 | | // 1. Remove all partition version kvs of this table | 2529 | 1 | auto partition_version_key_begin = | 2530 | 1 | partition_version_key({instance_id_, db_id, table_id, 0}); | 2531 | 1 | auto partition_version_key_end = | 2532 | 1 | partition_version_key({instance_id_, db_id, table_id, INT64_MAX}); | 2533 | 1 | txn->remove(partition_version_key_begin, partition_version_key_end); | 2534 | 1 | LOG(WARNING) << "remove partition version kv, begin=" << hex(partition_version_key_begin) | 2535 | 1 | << " end=" << hex(partition_version_key_end) << " db_id=" << db_id | 2536 | 1 | << " table_id=" << table_id; | 2537 | | // 2. Remove the table version kv of this table | 2538 | 1 | auto tbl_version_key = table_version_key({instance_id_, db_id, table_id}); | 2539 | 1 | txn->remove(tbl_version_key); | 2540 | 1 | LOG(WARNING) << "remove table version kv " << hex(tbl_version_key); | 2541 | | // 3. Remove mow delete bitmap update lock and tablet job lock | 2542 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); | 2543 | 1 | txn->remove(lock_key); | 2544 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); | 2545 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); | 2546 | 1 | std::string tablet_job_key_end = mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); | 2547 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); | 2548 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) | 2549 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id | 2550 | 1 | << " table_id=" << table_id; | 2551 | 1 | err = txn->commit(); | 2552 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2553 | 0 | return -1; | 2554 | 0 | } | 2555 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2556 | 1 | metrics_context.report(); | 2557 | 1 | is_recycled = true; | 2558 | 1 | return 0; | 2559 | 1 | }; |
|
2560 | | |
2561 | 12 | if (config::enable_recycler_stats_metrics) { |
2562 | 0 | scan_and_statistics_versions(); |
2563 | 0 | } |
2564 | | // recycle_func and loop_done for scan and recycle |
2565 | 12 | return scan_and_recycle(version_key_begin, version_key_end, std::move(recycle_func)); |
2566 | 14 | } |
2567 | | |
2568 | 3 | int InstanceRecycler::recycle_orphan_partitions() { |
2569 | 3 | int64_t num_scanned = 0; |
2570 | 3 | int64_t num_recycled = 0; |
2571 | 3 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_orphan_partitions"); |
2572 | | |
2573 | 3 | LOG_WARNING("begin to recycle orphan table and partition versions") |
2574 | 3 | .tag("instance_id", instance_id_); |
2575 | | |
2576 | 3 | auto start_time = steady_clock::now(); |
2577 | | |
2578 | 3 | DORIS_CLOUD_DEFER { |
2579 | 3 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2580 | 3 | metrics_context.finish_report(); |
2581 | 3 | LOG_WARNING("recycle orphan table and partition versions finished, cost={}s", cost) |
2582 | 3 | .tag("instance_id", instance_id_) |
2583 | 3 | .tag("num_scanned", num_scanned) |
2584 | 3 | .tag("num_recycled", num_recycled); |
2585 | 3 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_0clEv Line | Count | Source | 2578 | 3 | DORIS_CLOUD_DEFER { | 2579 | 3 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2580 | 3 | metrics_context.finish_report(); | 2581 | 3 | LOG_WARNING("recycle orphan table and partition versions finished, cost={}s", cost) | 2582 | 3 | .tag("instance_id", instance_id_) | 2583 | 3 | .tag("num_scanned", num_scanned) | 2584 | 3 | .tag("num_recycled", num_recycled); | 2585 | 3 | }; |
|
2586 | | |
2587 | 3 | bool is_empty_table = false; // whether the table has no indexes |
2588 | 3 | bool is_table_kvs_recycled = false; // whether the table related kvs have been recycled |
2589 | 3 | int64_t current_table_id = 0; // current scanning table id |
2590 | 3 | auto recycle_func = [&num_scanned, &num_recycled, &metrics_context, &is_empty_table, |
2591 | 3 | ¤t_table_id, &is_table_kvs_recycled, |
2592 | 3 | this](std::string_view k, std::string_view) { |
2593 | 2 | ++num_scanned; |
2594 | | |
2595 | 2 | std::string_view k1(k); |
2596 | 2 | int64_t db_id, table_id, partition_id; |
2597 | 2 | if (!versioned::decode_partition_inverted_index_key(&k1, &db_id, &table_id, |
2598 | 2 | &partition_id)) { |
2599 | 0 | LOG(WARNING) << "malformed partition inverted index key " << hex(k); |
2600 | 0 | return -1; |
2601 | 2 | } else if (table_id != current_table_id) { |
2602 | 2 | current_table_id = table_id; |
2603 | 2 | is_table_kvs_recycled = false; |
2604 | 2 | MetaReader meta_reader(instance_id_, txn_kv_.get()); |
2605 | 2 | TxnErrorCode err = meta_reader.has_no_indexes(db_id, table_id, &is_empty_table); |
2606 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2607 | 0 | LOG(WARNING) << "failed to check whether table has no indexes, db_id=" << db_id |
2608 | 0 | << " table_id=" << table_id << " err=" << err; |
2609 | 0 | return -1; |
2610 | 0 | } |
2611 | 2 | } |
2612 | | |
2613 | 2 | if (!is_empty_table) { |
2614 | | // table is not empty, skip recycle |
2615 | 1 | return 0; |
2616 | 1 | } |
2617 | | |
2618 | 1 | std::unique_ptr<Transaction> txn; |
2619 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2620 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2621 | 0 | return -1; |
2622 | 0 | } |
2623 | | |
2624 | | // 1. Remove all partition related kvs |
2625 | 1 | std::string partition_meta_key = |
2626 | 1 | versioned::meta_partition_key({instance_id_, partition_id}); |
2627 | 1 | std::string partition_index_key = |
2628 | 1 | versioned::partition_index_key({instance_id_, partition_id}); |
2629 | 1 | std::string partition_inverted_key = versioned::partition_inverted_index_key( |
2630 | 1 | {instance_id_, db_id, table_id, partition_id}); |
2631 | 1 | std::string partition_version_key = |
2632 | 1 | versioned::partition_version_key({instance_id_, partition_id}); |
2633 | 1 | txn->remove(partition_index_key); |
2634 | 1 | txn->remove(partition_inverted_key); |
2635 | 1 | versioned_remove_all(txn.get(), partition_meta_key); |
2636 | 1 | versioned_remove_all(txn.get(), partition_version_key); |
2637 | 1 | LOG(WARNING) << "remove partition related kvs, partition_id=" << partition_id |
2638 | 1 | << " table_id=" << table_id << " db_id=" << db_id |
2639 | 1 | << " partition_meta_key=" << hex(partition_meta_key) |
2640 | 1 | << " partition_version_key=" << hex(partition_version_key); |
2641 | | |
2642 | 1 | if (!is_table_kvs_recycled) { |
2643 | 1 | is_table_kvs_recycled = true; |
2644 | | |
2645 | | // 2. Remove the table version kv of this table |
2646 | 1 | std::string table_version_key = versioned::table_version_key({instance_id_, table_id}); |
2647 | 1 | versioned_remove_all(txn.get(), table_version_key); |
2648 | 1 | LOG(WARNING) << "remove table version kv " << hex(table_version_key); |
2649 | | // 3. Remove mow delete bitmap update lock and tablet job lock |
2650 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); |
2651 | 1 | txn->remove(lock_key); |
2652 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); |
2653 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); |
2654 | 1 | std::string tablet_job_key_end = |
2655 | 1 | mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); |
2656 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); |
2657 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) |
2658 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id |
2659 | 1 | << " table_id=" << table_id; |
2660 | 1 | } |
2661 | | |
2662 | 1 | err = txn->commit(); |
2663 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2664 | 0 | return -1; |
2665 | 0 | } |
2666 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
2667 | 1 | metrics_context.report(); |
2668 | 1 | return 0; |
2669 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2592 | 2 | this](std::string_view k, std::string_view) { | 2593 | 2 | ++num_scanned; | 2594 | | | 2595 | 2 | std::string_view k1(k); | 2596 | 2 | int64_t db_id, table_id, partition_id; | 2597 | 2 | if (!versioned::decode_partition_inverted_index_key(&k1, &db_id, &table_id, | 2598 | 2 | &partition_id)) { | 2599 | 0 | LOG(WARNING) << "malformed partition inverted index key " << hex(k); | 2600 | 0 | return -1; | 2601 | 2 | } else if (table_id != current_table_id) { | 2602 | 2 | current_table_id = table_id; | 2603 | 2 | is_table_kvs_recycled = false; | 2604 | 2 | MetaReader meta_reader(instance_id_, txn_kv_.get()); | 2605 | 2 | TxnErrorCode err = meta_reader.has_no_indexes(db_id, table_id, &is_empty_table); | 2606 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2607 | 0 | LOG(WARNING) << "failed to check whether table has no indexes, db_id=" << db_id | 2608 | 0 | << " table_id=" << table_id << " err=" << err; | 2609 | 0 | return -1; | 2610 | 0 | } | 2611 | 2 | } | 2612 | | | 2613 | 2 | if (!is_empty_table) { | 2614 | | // table is not empty, skip recycle | 2615 | 1 | return 0; | 2616 | 1 | } | 2617 | | | 2618 | 1 | std::unique_ptr<Transaction> txn; | 2619 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2620 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2621 | 0 | return -1; | 2622 | 0 | } | 2623 | | | 2624 | | // 1. Remove all partition related kvs | 2625 | 1 | std::string partition_meta_key = | 2626 | 1 | versioned::meta_partition_key({instance_id_, partition_id}); | 2627 | 1 | std::string partition_index_key = | 2628 | 1 | versioned::partition_index_key({instance_id_, partition_id}); | 2629 | 1 | std::string partition_inverted_key = versioned::partition_inverted_index_key( | 2630 | 1 | {instance_id_, db_id, table_id, partition_id}); | 2631 | 1 | std::string partition_version_key = | 2632 | 1 | versioned::partition_version_key({instance_id_, partition_id}); | 2633 | 1 | txn->remove(partition_index_key); | 2634 | 1 | txn->remove(partition_inverted_key); | 2635 | 1 | versioned_remove_all(txn.get(), partition_meta_key); | 2636 | 1 | versioned_remove_all(txn.get(), partition_version_key); | 2637 | 1 | LOG(WARNING) << "remove partition related kvs, partition_id=" << partition_id | 2638 | 1 | << " table_id=" << table_id << " db_id=" << db_id | 2639 | 1 | << " partition_meta_key=" << hex(partition_meta_key) | 2640 | 1 | << " partition_version_key=" << hex(partition_version_key); | 2641 | | | 2642 | 1 | if (!is_table_kvs_recycled) { | 2643 | 1 | is_table_kvs_recycled = true; | 2644 | | | 2645 | | // 2. Remove the table version kv of this table | 2646 | 1 | std::string table_version_key = versioned::table_version_key({instance_id_, table_id}); | 2647 | 1 | versioned_remove_all(txn.get(), table_version_key); | 2648 | 1 | LOG(WARNING) << "remove table version kv " << hex(table_version_key); | 2649 | | // 3. Remove mow delete bitmap update lock and tablet job lock | 2650 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); | 2651 | 1 | txn->remove(lock_key); | 2652 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); | 2653 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); | 2654 | 1 | std::string tablet_job_key_end = | 2655 | 1 | mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); | 2656 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); | 2657 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) | 2658 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id | 2659 | 1 | << " table_id=" << table_id; | 2660 | 1 | } | 2661 | | | 2662 | 1 | err = txn->commit(); | 2663 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2664 | 0 | return -1; | 2665 | 0 | } | 2666 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2667 | 1 | metrics_context.report(); | 2668 | 1 | return 0; | 2669 | 1 | }; |
|
2670 | | |
2671 | | // recycle_func and loop_done for scan and recycle |
2672 | 3 | return scan_and_recycle( |
2673 | 3 | versioned::partition_inverted_index_key({instance_id_, 0, 0, 0}), |
2674 | 3 | versioned::partition_inverted_index_key({instance_id_, INT64_MAX, 0, 0}), |
2675 | 3 | std::move(recycle_func)); |
2676 | 3 | } |
2677 | | |
2678 | | int InstanceRecycler::recycle_tablets(int64_t table_id, int64_t index_id, |
2679 | | RecyclerMetricsContext& metrics_context, |
2680 | 47 | int64_t partition_id) { |
2681 | 47 | bool is_multi_version = |
2682 | 47 | instance_info_.has_multi_version_status() && |
2683 | 47 | instance_info_.multi_version_status() != MultiVersionStatus::MULTI_VERSION_DISABLED; |
2684 | 47 | int64_t num_scanned = 0; |
2685 | 47 | std::atomic_long num_recycled = 0; |
2686 | | |
2687 | 47 | std::string tablet_key_begin, tablet_key_end; |
2688 | 47 | std::string stats_key_begin, stats_key_end; |
2689 | 47 | std::string job_key_begin, job_key_end; |
2690 | | |
2691 | 47 | std::string tablet_belongs; |
2692 | 47 | if (partition_id > 0) { |
2693 | | // recycle tablets in a partition belonging to the index |
2694 | 33 | meta_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &tablet_key_begin); |
2695 | 33 | meta_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &tablet_key_end); |
2696 | 33 | stats_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &stats_key_begin); |
2697 | 33 | stats_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &stats_key_end); |
2698 | 33 | job_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &job_key_begin); |
2699 | 33 | job_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &job_key_end); |
2700 | 33 | tablet_belongs = "partition"; |
2701 | 33 | } else { |
2702 | | // recycle tablets in the index |
2703 | 14 | meta_tablet_key({instance_id_, table_id, index_id, 0, 0}, &tablet_key_begin); |
2704 | 14 | meta_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &tablet_key_end); |
2705 | 14 | stats_tablet_key({instance_id_, table_id, index_id, 0, 0}, &stats_key_begin); |
2706 | 14 | stats_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &stats_key_end); |
2707 | 14 | job_tablet_key({instance_id_, table_id, index_id, 0, 0}, &job_key_begin); |
2708 | 14 | job_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &job_key_end); |
2709 | 14 | tablet_belongs = "index"; |
2710 | 14 | } |
2711 | | |
2712 | 47 | LOG_INFO("begin to recycle tablets of the " + tablet_belongs) |
2713 | 47 | .tag("table_id", table_id) |
2714 | 47 | .tag("index_id", index_id) |
2715 | 47 | .tag("partition_id", partition_id); |
2716 | | |
2717 | 47 | auto start_time = steady_clock::now(); |
2718 | | |
2719 | 47 | DORIS_CLOUD_DEFER { |
2720 | 47 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2721 | 47 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) |
2722 | 47 | .tag("instance_id", instance_id_) |
2723 | 47 | .tag("table_id", table_id) |
2724 | 47 | .tag("index_id", index_id) |
2725 | 47 | .tag("partition_id", partition_id) |
2726 | 47 | .tag("num_scanned", num_scanned) |
2727 | 47 | .tag("num_recycled", num_recycled); |
2728 | 47 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_0clEv Line | Count | Source | 2719 | 4 | DORIS_CLOUD_DEFER { | 2720 | 4 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2721 | 4 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) | 2722 | 4 | .tag("instance_id", instance_id_) | 2723 | 4 | .tag("table_id", table_id) | 2724 | 4 | .tag("index_id", index_id) | 2725 | 4 | .tag("partition_id", partition_id) | 2726 | 4 | .tag("num_scanned", num_scanned) | 2727 | 4 | .tag("num_recycled", num_recycled); | 2728 | 4 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_0clEv Line | Count | Source | 2719 | 43 | DORIS_CLOUD_DEFER { | 2720 | 43 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2721 | 43 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) | 2722 | 43 | .tag("instance_id", instance_id_) | 2723 | 43 | .tag("table_id", table_id) | 2724 | 43 | .tag("index_id", index_id) | 2725 | 43 | .tag("partition_id", partition_id) | 2726 | 43 | .tag("num_scanned", num_scanned) | 2727 | 43 | .tag("num_recycled", num_recycled); | 2728 | 43 | }; |
|
2729 | | |
2730 | | // The first string_view represents the tablet key which has been recycled |
2731 | | // The second bool represents whether the following fdb's tablet key deletion could be done using range move or not |
2732 | 47 | using TabletKeyPair = std::pair<std::string_view, bool>; |
2733 | 47 | SyncExecutor<TabletKeyPair> sync_executor( |
2734 | 47 | _thread_pool_group.recycle_tablet_pool, |
2735 | 47 | fmt::format("recycle tablets, tablet id {}, index id {}, partition id {}", table_id, |
2736 | 47 | index_id, partition_id), |
2737 | 4.23k | [](const TabletKeyPair& k) { return k.first.empty(); });recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_2clERKSt4pairISt17basic_string_viewIcSt11char_traitsIcEEbE Line | Count | Source | 2737 | 4.00k | [](const TabletKeyPair& k) { return k.first.empty(); }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_2clERKSt4pairISt17basic_string_viewIcSt11char_traitsIcEEbE Line | Count | Source | 2737 | 235 | [](const TabletKeyPair& k) { return k.first.empty(); }); |
|
2738 | | |
2739 | | // Elements in `tablet_keys` has the same lifetime as `it` in `scan_and_recycle` |
2740 | 47 | std::vector<std::string> tablet_idx_keys; |
2741 | 47 | std::vector<std::string> restore_job_keys; |
2742 | 47 | std::vector<std::string> init_rs_keys; |
2743 | 47 | std::vector<std::string> tablet_compact_stats_keys; |
2744 | 47 | std::vector<std::string> tablet_load_stats_keys; |
2745 | 47 | std::vector<std::string> versioned_meta_tablet_keys; |
2746 | 8.24k | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2747 | 8.24k | bool use_range_remove = true; |
2748 | 8.24k | ++num_scanned; |
2749 | 8.24k | doris::TabletMetaCloudPB tablet_meta_pb; |
2750 | 8.24k | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { |
2751 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); |
2752 | 0 | use_range_remove = false; |
2753 | 0 | return -1; |
2754 | 0 | } |
2755 | 8.24k | int64_t tablet_id = tablet_meta_pb.tablet_id(); |
2756 | | |
2757 | 8.24k | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { |
2758 | 4.00k | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); |
2759 | 4.00k | return -1; |
2760 | 4.00k | } |
2761 | | |
2762 | 4.24k | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); |
2763 | 4.24k | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); |
2764 | 4.24k | if (is_multi_version) { |
2765 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. |
2766 | 6 | tablet_compact_stats_keys.push_back( |
2767 | 6 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); |
2768 | 6 | tablet_load_stats_keys.push_back( |
2769 | 6 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); |
2770 | 6 | versioned_meta_tablet_keys.push_back( |
2771 | 6 | versioned::meta_tablet_key({instance_id_, tablet_id})); |
2772 | 6 | } |
2773 | 4.24k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); |
2774 | 4.23k | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, |
2775 | 4.23k | &metrics_context, k]() mutable -> TabletKeyPair { |
2776 | 4.23k | if (recycle_tablet(tid, metrics_context) != 0) { |
2777 | 0 | LOG_WARNING("failed to recycle tablet") |
2778 | 0 | .tag("instance_id", instance_id_) |
2779 | 0 | .tag("tablet_id", tid); |
2780 | 0 | range_move = false; |
2781 | 0 | return {std::string_view(), range_move}; |
2782 | 0 | } |
2783 | 4.23k | ++num_recycled; |
2784 | 4.23k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); |
2785 | 4.23k | return {k, range_move}; |
2786 | 4.23k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ENUlvE_clEv Line | Count | Source | 2775 | 4.00k | &metrics_context, k]() mutable -> TabletKeyPair { | 2776 | 4.00k | if (recycle_tablet(tid, metrics_context) != 0) { | 2777 | 0 | LOG_WARNING("failed to recycle tablet") | 2778 | 0 | .tag("instance_id", instance_id_) | 2779 | 0 | .tag("tablet_id", tid); | 2780 | 0 | range_move = false; | 2781 | 0 | return {std::string_view(), range_move}; | 2782 | 0 | } | 2783 | 4.00k | ++num_recycled; | 2784 | 4.00k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2785 | 4.00k | return {k, range_move}; | 2786 | 4.00k | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ENUlvE_clEv Line | Count | Source | 2775 | 235 | &metrics_context, k]() mutable -> TabletKeyPair { | 2776 | 235 | if (recycle_tablet(tid, metrics_context) != 0) { | 2777 | 0 | LOG_WARNING("failed to recycle tablet") | 2778 | 0 | .tag("instance_id", instance_id_) | 2779 | 0 | .tag("tablet_id", tid); | 2780 | 0 | range_move = false; | 2781 | 0 | return {std::string_view(), range_move}; | 2782 | 0 | } | 2783 | 235 | ++num_recycled; | 2784 | 235 | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2785 | 235 | return {k, range_move}; | 2786 | 235 | }); |
|
2787 | 4.23k | return 0; |
2788 | 4.24k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ Line | Count | Source | 2746 | 8.00k | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2747 | 8.00k | bool use_range_remove = true; | 2748 | 8.00k | ++num_scanned; | 2749 | 8.00k | doris::TabletMetaCloudPB tablet_meta_pb; | 2750 | 8.00k | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { | 2751 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); | 2752 | 0 | use_range_remove = false; | 2753 | 0 | return -1; | 2754 | 0 | } | 2755 | 8.00k | int64_t tablet_id = tablet_meta_pb.tablet_id(); | 2756 | | | 2757 | 8.00k | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { | 2758 | 4.00k | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); | 2759 | 4.00k | return -1; | 2760 | 4.00k | } | 2761 | | | 2762 | 4.00k | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); | 2763 | 4.00k | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); | 2764 | 4.00k | if (is_multi_version) { | 2765 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. | 2766 | 0 | tablet_compact_stats_keys.push_back( | 2767 | 0 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); | 2768 | 0 | tablet_load_stats_keys.push_back( | 2769 | 0 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); | 2770 | 0 | versioned_meta_tablet_keys.push_back( | 2771 | 0 | versioned::meta_tablet_key({instance_id_, tablet_id})); | 2772 | 0 | } | 2773 | 4.00k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); | 2774 | 4.00k | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, | 2775 | 4.00k | &metrics_context, k]() mutable -> TabletKeyPair { | 2776 | 4.00k | if (recycle_tablet(tid, metrics_context) != 0) { | 2777 | 4.00k | LOG_WARNING("failed to recycle tablet") | 2778 | 4.00k | .tag("instance_id", instance_id_) | 2779 | 4.00k | .tag("tablet_id", tid); | 2780 | 4.00k | range_move = false; | 2781 | 4.00k | return {std::string_view(), range_move}; | 2782 | 4.00k | } | 2783 | 4.00k | ++num_recycled; | 2784 | 4.00k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2785 | 4.00k | return {k, range_move}; | 2786 | 4.00k | }); | 2787 | 4.00k | return 0; | 2788 | 4.00k | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ Line | Count | Source | 2746 | 238 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2747 | 238 | bool use_range_remove = true; | 2748 | 238 | ++num_scanned; | 2749 | 238 | doris::TabletMetaCloudPB tablet_meta_pb; | 2750 | 238 | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { | 2751 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); | 2752 | 0 | use_range_remove = false; | 2753 | 0 | return -1; | 2754 | 0 | } | 2755 | 238 | int64_t tablet_id = tablet_meta_pb.tablet_id(); | 2756 | | | 2757 | 238 | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { | 2758 | 0 | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); | 2759 | 0 | return -1; | 2760 | 0 | } | 2761 | | | 2762 | 238 | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); | 2763 | 238 | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); | 2764 | 238 | if (is_multi_version) { | 2765 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. | 2766 | 6 | tablet_compact_stats_keys.push_back( | 2767 | 6 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); | 2768 | 6 | tablet_load_stats_keys.push_back( | 2769 | 6 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); | 2770 | 6 | versioned_meta_tablet_keys.push_back( | 2771 | 6 | versioned::meta_tablet_key({instance_id_, tablet_id})); | 2772 | 6 | } | 2773 | 238 | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); | 2774 | 235 | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, | 2775 | 235 | &metrics_context, k]() mutable -> TabletKeyPair { | 2776 | 235 | if (recycle_tablet(tid, metrics_context) != 0) { | 2777 | 235 | LOG_WARNING("failed to recycle tablet") | 2778 | 235 | .tag("instance_id", instance_id_) | 2779 | 235 | .tag("tablet_id", tid); | 2780 | 235 | range_move = false; | 2781 | 235 | return {std::string_view(), range_move}; | 2782 | 235 | } | 2783 | 235 | ++num_recycled; | 2784 | 235 | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2785 | 235 | return {k, range_move}; | 2786 | 235 | }); | 2787 | 235 | return 0; | 2788 | 238 | }; |
|
2789 | | |
2790 | | // TODO(AlexYue): Add one ut to cover use_range_remove = false |
2791 | 47 | auto loop_done = [&, this]() -> int { |
2792 | 47 | bool finished = true; |
2793 | 47 | auto tablet_keys = sync_executor.when_all(&finished); |
2794 | 47 | if (!finished) { |
2795 | 0 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); |
2796 | 0 | return -1; |
2797 | 0 | } |
2798 | 47 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; |
2799 | | // sort the vector using key's order |
2800 | 45 | std::sort(tablet_keys.begin(), tablet_keys.end(), |
2801 | 49.4k | [](const auto& prev, const auto& last) { return prev.first < last.first; });recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlRKT_RKT0_E_clISt4pairISt17basic_string_viewIcSt11char_traitsIcEEbESI_EEDaS7_SA_ Line | Count | Source | 2801 | 48.4k | [](const auto& prev, const auto& last) { return prev.first < last.first; }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlRKT_RKT0_E_clISt4pairISt17basic_string_viewIcSt11char_traitsIcEEbESI_EEDaS7_SA_ Line | Count | Source | 2801 | 944 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); |
|
2802 | 45 | bool use_range_remove = true; |
2803 | 4.23k | for (auto& [_, remove] : tablet_keys) { |
2804 | 4.23k | if (!remove) { |
2805 | 0 | use_range_remove = remove; |
2806 | 0 | break; |
2807 | 0 | } |
2808 | 4.23k | } |
2809 | 45 | DORIS_CLOUD_DEFER { |
2810 | 45 | tablet_idx_keys.clear(); |
2811 | 45 | restore_job_keys.clear(); |
2812 | 45 | init_rs_keys.clear(); |
2813 | 45 | tablet_compact_stats_keys.clear(); |
2814 | 45 | tablet_load_stats_keys.clear(); |
2815 | 45 | versioned_meta_tablet_keys.clear(); |
2816 | 45 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2809 | 2 | DORIS_CLOUD_DEFER { | 2810 | 2 | tablet_idx_keys.clear(); | 2811 | 2 | restore_job_keys.clear(); | 2812 | 2 | init_rs_keys.clear(); | 2813 | 2 | tablet_compact_stats_keys.clear(); | 2814 | 2 | tablet_load_stats_keys.clear(); | 2815 | 2 | versioned_meta_tablet_keys.clear(); | 2816 | 2 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2809 | 43 | DORIS_CLOUD_DEFER { | 2810 | 43 | tablet_idx_keys.clear(); | 2811 | 43 | restore_job_keys.clear(); | 2812 | 43 | init_rs_keys.clear(); | 2813 | 43 | tablet_compact_stats_keys.clear(); | 2814 | 43 | tablet_load_stats_keys.clear(); | 2815 | 43 | versioned_meta_tablet_keys.clear(); | 2816 | 43 | }; |
|
2817 | 45 | std::unique_ptr<Transaction> txn; |
2818 | 45 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
2819 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; |
2820 | 0 | return -1; |
2821 | 0 | } |
2822 | 45 | std::string tablet_key_end; |
2823 | 45 | if (!tablet_keys.empty()) { |
2824 | 43 | if (use_range_remove) { |
2825 | 43 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; |
2826 | 43 | txn->remove(tablet_keys.front().first, tablet_key_end); |
2827 | 43 | } else { |
2828 | 0 | for (auto& [k, _] : tablet_keys) { |
2829 | 0 | txn->remove(k); |
2830 | 0 | } |
2831 | 0 | } |
2832 | 43 | } |
2833 | 45 | if (is_multi_version) { |
2834 | 6 | for (auto& k : tablet_compact_stats_keys) { |
2835 | | // Remove all versions of tablet compact stats for recycled tablet |
2836 | 6 | LOG_INFO("remove versioned tablet compact stats key") |
2837 | 6 | .tag("compact_stats_key", hex(k)); |
2838 | 6 | versioned_remove_all(txn.get(), k); |
2839 | 6 | } |
2840 | 6 | for (auto& k : tablet_load_stats_keys) { |
2841 | | // Remove all versions of tablet load stats for recycled tablet |
2842 | 6 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); |
2843 | 6 | versioned_remove_all(txn.get(), k); |
2844 | 6 | } |
2845 | 6 | for (auto& k : versioned_meta_tablet_keys) { |
2846 | | // Remove all versions of meta tablet for recycled tablet |
2847 | 6 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); |
2848 | 6 | versioned_remove_all(txn.get(), k); |
2849 | 6 | } |
2850 | 5 | } |
2851 | 4.24k | for (auto& k : tablet_idx_keys) { |
2852 | 4.24k | txn->remove(k); |
2853 | 4.24k | } |
2854 | 4.24k | for (auto& k : restore_job_keys) { |
2855 | 4.24k | txn->remove(k); |
2856 | 4.24k | } |
2857 | 45 | for (auto& k : init_rs_keys) { |
2858 | 0 | txn->remove(k); |
2859 | 0 | } |
2860 | 45 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { |
2861 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ |
2862 | 0 | << ", err=" << err; |
2863 | 0 | return -1; |
2864 | 0 | } |
2865 | 45 | return 0; |
2866 | 45 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEv Line | Count | Source | 2791 | 4 | auto loop_done = [&, this]() -> int { | 2792 | 4 | bool finished = true; | 2793 | 4 | auto tablet_keys = sync_executor.when_all(&finished); | 2794 | 4 | if (!finished) { | 2795 | 0 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); | 2796 | 0 | return -1; | 2797 | 0 | } | 2798 | 4 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; | 2799 | | // sort the vector using key's order | 2800 | 2 | std::sort(tablet_keys.begin(), tablet_keys.end(), | 2801 | 2 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); | 2802 | 2 | bool use_range_remove = true; | 2803 | 4.00k | for (auto& [_, remove] : tablet_keys) { | 2804 | 4.00k | if (!remove) { | 2805 | 0 | use_range_remove = remove; | 2806 | 0 | break; | 2807 | 0 | } | 2808 | 4.00k | } | 2809 | 2 | DORIS_CLOUD_DEFER { | 2810 | 2 | tablet_idx_keys.clear(); | 2811 | 2 | restore_job_keys.clear(); | 2812 | 2 | init_rs_keys.clear(); | 2813 | 2 | tablet_compact_stats_keys.clear(); | 2814 | 2 | tablet_load_stats_keys.clear(); | 2815 | 2 | versioned_meta_tablet_keys.clear(); | 2816 | 2 | }; | 2817 | 2 | std::unique_ptr<Transaction> txn; | 2818 | 2 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 2819 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; | 2820 | 0 | return -1; | 2821 | 0 | } | 2822 | 2 | std::string tablet_key_end; | 2823 | 2 | if (!tablet_keys.empty()) { | 2824 | 2 | if (use_range_remove) { | 2825 | 2 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; | 2826 | 2 | txn->remove(tablet_keys.front().first, tablet_key_end); | 2827 | 2 | } else { | 2828 | 0 | for (auto& [k, _] : tablet_keys) { | 2829 | 0 | txn->remove(k); | 2830 | 0 | } | 2831 | 0 | } | 2832 | 2 | } | 2833 | 2 | if (is_multi_version) { | 2834 | 0 | for (auto& k : tablet_compact_stats_keys) { | 2835 | | // Remove all versions of tablet compact stats for recycled tablet | 2836 | 0 | LOG_INFO("remove versioned tablet compact stats key") | 2837 | 0 | .tag("compact_stats_key", hex(k)); | 2838 | 0 | versioned_remove_all(txn.get(), k); | 2839 | 0 | } | 2840 | 0 | for (auto& k : tablet_load_stats_keys) { | 2841 | | // Remove all versions of tablet load stats for recycled tablet | 2842 | 0 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); | 2843 | 0 | versioned_remove_all(txn.get(), k); | 2844 | 0 | } | 2845 | 0 | for (auto& k : versioned_meta_tablet_keys) { | 2846 | | // Remove all versions of meta tablet for recycled tablet | 2847 | 0 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); | 2848 | 0 | versioned_remove_all(txn.get(), k); | 2849 | 0 | } | 2850 | 0 | } | 2851 | 4.00k | for (auto& k : tablet_idx_keys) { | 2852 | 4.00k | txn->remove(k); | 2853 | 4.00k | } | 2854 | 4.00k | for (auto& k : restore_job_keys) { | 2855 | 4.00k | txn->remove(k); | 2856 | 4.00k | } | 2857 | 2 | for (auto& k : init_rs_keys) { | 2858 | 0 | txn->remove(k); | 2859 | 0 | } | 2860 | 2 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { | 2861 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ | 2862 | 0 | << ", err=" << err; | 2863 | 0 | return -1; | 2864 | 0 | } | 2865 | 2 | return 0; | 2866 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEv Line | Count | Source | 2791 | 43 | auto loop_done = [&, this]() -> int { | 2792 | 43 | bool finished = true; | 2793 | 43 | auto tablet_keys = sync_executor.when_all(&finished); | 2794 | 43 | if (!finished) { | 2795 | 0 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); | 2796 | 0 | return -1; | 2797 | 0 | } | 2798 | 43 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; | 2799 | | // sort the vector using key's order | 2800 | 43 | std::sort(tablet_keys.begin(), tablet_keys.end(), | 2801 | 43 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); | 2802 | 43 | bool use_range_remove = true; | 2803 | 235 | for (auto& [_, remove] : tablet_keys) { | 2804 | 235 | if (!remove) { | 2805 | 0 | use_range_remove = remove; | 2806 | 0 | break; | 2807 | 0 | } | 2808 | 235 | } | 2809 | 43 | DORIS_CLOUD_DEFER { | 2810 | 43 | tablet_idx_keys.clear(); | 2811 | 43 | restore_job_keys.clear(); | 2812 | 43 | init_rs_keys.clear(); | 2813 | 43 | tablet_compact_stats_keys.clear(); | 2814 | 43 | tablet_load_stats_keys.clear(); | 2815 | 43 | versioned_meta_tablet_keys.clear(); | 2816 | 43 | }; | 2817 | 43 | std::unique_ptr<Transaction> txn; | 2818 | 43 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 2819 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; | 2820 | 0 | return -1; | 2821 | 0 | } | 2822 | 43 | std::string tablet_key_end; | 2823 | 43 | if (!tablet_keys.empty()) { | 2824 | 41 | if (use_range_remove) { | 2825 | 41 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; | 2826 | 41 | txn->remove(tablet_keys.front().first, tablet_key_end); | 2827 | 41 | } else { | 2828 | 0 | for (auto& [k, _] : tablet_keys) { | 2829 | 0 | txn->remove(k); | 2830 | 0 | } | 2831 | 0 | } | 2832 | 41 | } | 2833 | 43 | if (is_multi_version) { | 2834 | 6 | for (auto& k : tablet_compact_stats_keys) { | 2835 | | // Remove all versions of tablet compact stats for recycled tablet | 2836 | 6 | LOG_INFO("remove versioned tablet compact stats key") | 2837 | 6 | .tag("compact_stats_key", hex(k)); | 2838 | 6 | versioned_remove_all(txn.get(), k); | 2839 | 6 | } | 2840 | 6 | for (auto& k : tablet_load_stats_keys) { | 2841 | | // Remove all versions of tablet load stats for recycled tablet | 2842 | 6 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); | 2843 | 6 | versioned_remove_all(txn.get(), k); | 2844 | 6 | } | 2845 | 6 | for (auto& k : versioned_meta_tablet_keys) { | 2846 | | // Remove all versions of meta tablet for recycled tablet | 2847 | 6 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); | 2848 | 6 | versioned_remove_all(txn.get(), k); | 2849 | 6 | } | 2850 | 5 | } | 2851 | 238 | for (auto& k : tablet_idx_keys) { | 2852 | 238 | txn->remove(k); | 2853 | 238 | } | 2854 | 238 | for (auto& k : restore_job_keys) { | 2855 | 238 | txn->remove(k); | 2856 | 238 | } | 2857 | 43 | for (auto& k : init_rs_keys) { | 2858 | 0 | txn->remove(k); | 2859 | 0 | } | 2860 | 43 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { | 2861 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ | 2862 | 0 | << ", err=" << err; | 2863 | 0 | return -1; | 2864 | 0 | } | 2865 | 43 | return 0; | 2866 | 43 | }; |
|
2867 | | |
2868 | 47 | int ret = scan_and_recycle(tablet_key_begin, tablet_key_end, std::move(recycle_func), |
2869 | 47 | std::move(loop_done)); |
2870 | 47 | if (ret != 0) { |
2871 | 2 | LOG(WARNING) << "failed to scan_and_recycle, instance_id=" << instance_id_; |
2872 | 2 | return ret; |
2873 | 2 | } |
2874 | | |
2875 | | // directly remove tablet stats and tablet jobs of these dropped index or partition |
2876 | 45 | std::unique_ptr<Transaction> txn; |
2877 | 45 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
2878 | 0 | LOG(WARNING) << "failed to delete tablet job or stats key, instance_id=" << instance_id_; |
2879 | 0 | return -1; |
2880 | 0 | } |
2881 | 45 | txn->remove(stats_key_begin, stats_key_end); |
2882 | 45 | LOG(WARNING) << "remove stats kv, begin=" << hex(stats_key_begin) |
2883 | 45 | << " end=" << hex(stats_key_end); |
2884 | 45 | txn->remove(job_key_begin, job_key_end); |
2885 | 45 | LOG(WARNING) << "remove job kv, begin=" << hex(job_key_begin) << " end=" << hex(job_key_end); |
2886 | 45 | std::string schema_key_begin, schema_key_end; |
2887 | 45 | std::string schema_dict_key; |
2888 | 45 | std::string versioned_schema_key_begin, versioned_schema_key_end; |
2889 | 45 | if (partition_id <= 0) { |
2890 | | // Delete schema kv of this index |
2891 | 13 | meta_schema_key({instance_id_, index_id, 0}, &schema_key_begin); |
2892 | 13 | meta_schema_key({instance_id_, index_id + 1, 0}, &schema_key_end); |
2893 | 13 | txn->remove(schema_key_begin, schema_key_end); |
2894 | 13 | LOG(WARNING) << "remove schema kv, begin=" << hex(schema_key_begin) |
2895 | 13 | << " end=" << hex(schema_key_end); |
2896 | 13 | meta_schema_pb_dictionary_key({instance_id_, index_id}, &schema_dict_key); |
2897 | 13 | txn->remove(schema_dict_key); |
2898 | 13 | LOG(WARNING) << "remove schema dict kv, key=" << hex(schema_dict_key); |
2899 | 13 | versioned::meta_schema_key({instance_id_, index_id, 0}, &versioned_schema_key_begin); |
2900 | 13 | versioned::meta_schema_key({instance_id_, index_id + 1, 0}, &versioned_schema_key_end); |
2901 | 13 | txn->remove(versioned_schema_key_begin, versioned_schema_key_end); |
2902 | 13 | LOG(WARNING) << "remove versioned schema kv, begin=" << hex(versioned_schema_key_begin) |
2903 | 13 | << " end=" << hex(versioned_schema_key_end); |
2904 | 13 | } |
2905 | | |
2906 | 45 | TxnErrorCode err = txn->commit(); |
2907 | 45 | if (err != TxnErrorCode::TXN_OK) { |
2908 | 0 | LOG(WARNING) << "failed to delete tablet job or stats key, instance_id=" << instance_id_ |
2909 | 0 | << " err=" << err; |
2910 | 0 | return -1; |
2911 | 0 | } |
2912 | | |
2913 | 45 | return ret; |
2914 | 45 | } |
2915 | | |
2916 | 4.81k | int InstanceRecycler::delete_rowset_data(const RowsetMetaCloudPB& rs_meta_pb) { |
2917 | 4.81k | TEST_SYNC_POINT_RETURN_WITH_VALUE("delete_rowset_data::bypass_check", true); |
2918 | 4.81k | int64_t num_segments = rs_meta_pb.num_segments(); |
2919 | 4.81k | if (num_segments <= 0) return 0; |
2920 | | |
2921 | 4.81k | std::vector<std::string> file_paths; |
2922 | 4.81k | if (decrement_packed_file_ref_counts(rs_meta_pb) != 0) { |
2923 | 0 | return -1; |
2924 | 0 | } |
2925 | | |
2926 | | // Process inverted indexes |
2927 | 4.81k | std::vector<std::pair<int64_t, std::string>> index_ids; |
2928 | | // default format as v1. |
2929 | 4.81k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
2930 | 4.81k | bool delete_rowset_data_by_prefix = false; |
2931 | 4.81k | if (rs_meta_pb.rowset_state() == RowsetStatePB::BEGIN_PARTIAL_UPDATE) { |
2932 | | // if rowset state is RowsetStatePB::BEGIN_PARTIAL_UPDATE, the number of segments data |
2933 | | // may be larger than num_segments field in RowsetMeta, so we need to delete the rowset's data by prefix |
2934 | 0 | delete_rowset_data_by_prefix = true; |
2935 | 4.81k | } else if (rs_meta_pb.has_tablet_schema()) { |
2936 | 9.00k | for (const auto& index : rs_meta_pb.tablet_schema().index()) { |
2937 | 9.00k | if (index.has_index_type() && index.index_type() == IndexType::INVERTED) { |
2938 | 9.00k | index_ids.emplace_back(index.index_id(), index.index_suffix_name()); |
2939 | 9.00k | } |
2940 | 9.00k | } |
2941 | 4.40k | if (rs_meta_pb.tablet_schema().has_inverted_index_storage_format()) { |
2942 | 2.00k | index_format = rs_meta_pb.tablet_schema().inverted_index_storage_format(); |
2943 | 2.00k | } |
2944 | 4.40k | } else if (!rs_meta_pb.has_index_id() || !rs_meta_pb.has_schema_version()) { |
2945 | | // schema version and index id are not found, delete rowset data by prefix directly. |
2946 | 0 | delete_rowset_data_by_prefix = true; |
2947 | 409 | } else { |
2948 | | // otherwise, try to get schema kv |
2949 | 409 | InvertedIndexInfo index_info; |
2950 | 409 | int inverted_index_get_ret = inverted_index_id_cache_->get( |
2951 | 409 | rs_meta_pb.index_id(), rs_meta_pb.schema_version(), index_info); |
2952 | 409 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.tmp_rowset", |
2953 | 409 | &inverted_index_get_ret); |
2954 | 409 | if (inverted_index_get_ret == 0) { |
2955 | 409 | index_format = index_info.first; |
2956 | 409 | index_ids = index_info.second; |
2957 | 409 | } else if (inverted_index_get_ret == 1) { |
2958 | | // 1. Schema kv not found means tablet has been recycled |
2959 | | // Maybe some tablet recycle failed by some bugs |
2960 | | // We need to delete again to double check |
2961 | | // 2. Ensure this operation only deletes tablets and does not perform any operations on indexes, |
2962 | | // because we are uncertain about the inverted index information. |
2963 | | // If there are inverted indexes, some data might not be deleted, |
2964 | | // but this is acceptable as we have made our best effort to delete the data. |
2965 | 0 | LOG_INFO( |
2966 | 0 | "delete rowset data schema kv not found, need to delete again to double " |
2967 | 0 | "check") |
2968 | 0 | .tag("instance_id", instance_id_) |
2969 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
2970 | 0 | .tag("rowset", rs_meta_pb.ShortDebugString()); |
2971 | | // Currently index_ids is guaranteed to be empty, |
2972 | | // but we clear it again here as a safeguard against future code changes |
2973 | | // that might cause index_ids to no longer be empty |
2974 | 0 | index_format = InvertedIndexStorageFormatPB::V2; |
2975 | 0 | index_ids.clear(); |
2976 | 0 | } else { |
2977 | | // failed to get schema kv, delete rowset data by prefix directly. |
2978 | 0 | delete_rowset_data_by_prefix = true; |
2979 | 0 | } |
2980 | 409 | } |
2981 | | |
2982 | 4.81k | if (delete_rowset_data_by_prefix) { |
2983 | 0 | return delete_rowset_data(rs_meta_pb.resource_id(), rs_meta_pb.tablet_id(), |
2984 | 0 | rs_meta_pb.rowset_id_v2()); |
2985 | 0 | } |
2986 | | |
2987 | 4.81k | auto it = accessor_map_.find(rs_meta_pb.resource_id()); |
2988 | 4.81k | if (it == accessor_map_.end()) { |
2989 | 800 | LOG_WARNING("instance has no such resource id") |
2990 | 800 | .tag("instance_id", instance_id_) |
2991 | 800 | .tag("resource_id", rs_meta_pb.resource_id()); |
2992 | 800 | return -1; |
2993 | 800 | } |
2994 | 4.01k | auto& accessor = it->second; |
2995 | | |
2996 | 4.01k | int64_t tablet_id = rs_meta_pb.tablet_id(); |
2997 | 4.01k | const auto& rowset_id = rs_meta_pb.rowset_id_v2(); |
2998 | 24.0k | for (int64_t i = 0; i < num_segments; ++i) { |
2999 | 20.0k | file_paths.push_back(segment_path(tablet_id, rowset_id, i)); |
3000 | 20.0k | if (index_format == InvertedIndexStorageFormatPB::V1) { |
3001 | 40.0k | for (const auto& index_id : index_ids) { |
3002 | 40.0k | file_paths.push_back(inverted_index_path_v1(tablet_id, rowset_id, i, index_id.first, |
3003 | 40.0k | index_id.second)); |
3004 | 40.0k | } |
3005 | 20.0k | } else if (!index_ids.empty()) { |
3006 | 0 | file_paths.push_back(inverted_index_path_v2(tablet_id, rowset_id, i)); |
3007 | 0 | } |
3008 | 20.0k | } |
3009 | | |
3010 | | // Process delete bitmap |
3011 | 4.01k | file_paths.push_back(delete_bitmap_path(tablet_id, rowset_id)); |
3012 | | // TODO(AlexYue): seems could do do batch |
3013 | 4.01k | return accessor->delete_files(file_paths); |
3014 | 4.81k | } |
3015 | | |
3016 | 61.5k | int InstanceRecycler::decrement_packed_file_ref_counts(const doris::RowsetMetaCloudPB& rs_meta_pb) { |
3017 | 61.5k | LOG_INFO("begin process_packed_file_location_index") |
3018 | 61.5k | .tag("instance_id", instance_id_) |
3019 | 61.5k | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3020 | 61.5k | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3021 | 61.5k | .tag("index_map_size", rs_meta_pb.packed_slice_locations_size()); |
3022 | 61.5k | const auto& index_map = rs_meta_pb.packed_slice_locations(); |
3023 | 61.5k | if (index_map.empty()) { |
3024 | 61.5k | LOG_INFO("skip merge file update: empty merge_file_segment_index") |
3025 | 61.5k | .tag("instance_id", instance_id_) |
3026 | 61.5k | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3027 | 61.5k | .tag("rowset_id", rs_meta_pb.rowset_id_v2()); |
3028 | 61.5k | return 0; |
3029 | 61.5k | } |
3030 | 14 | struct PackedSmallFileInfo { |
3031 | 14 | std::string small_file_path; |
3032 | 14 | }; |
3033 | 14 | std::unordered_map<std::string, std::vector<PackedSmallFileInfo>> packed_file_updates; |
3034 | 14 | packed_file_updates.reserve(index_map.size()); |
3035 | 27 | for (const auto& [small_path, index_pb] : index_map) { |
3036 | 27 | if (!index_pb.has_packed_file_path() || index_pb.packed_file_path().empty()) { |
3037 | 0 | continue; |
3038 | 0 | } |
3039 | 27 | packed_file_updates[index_pb.packed_file_path()].push_back( |
3040 | 27 | PackedSmallFileInfo {small_path}); |
3041 | 27 | } |
3042 | 14 | if (packed_file_updates.empty()) { |
3043 | 0 | LOG_INFO("skip packed file update: no valid merge_file_path in merge_file_segment_index") |
3044 | 0 | .tag("instance_id", instance_id_) |
3045 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3046 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3047 | 0 | .tag("index_map_size", index_map.size()); |
3048 | 0 | return 0; |
3049 | 0 | } |
3050 | | |
3051 | 14 | const int max_retry_times = std::max(1, config::decrement_packed_file_ref_counts_retry_times); |
3052 | 14 | int ret = 0; |
3053 | 24 | for (auto& [packed_file_path, small_files] : packed_file_updates) { |
3054 | 24 | if (small_files.empty()) { |
3055 | 0 | continue; |
3056 | 0 | } |
3057 | | |
3058 | 24 | bool success = false; |
3059 | 24 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
3060 | 24 | std::unique_ptr<Transaction> txn; |
3061 | 24 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
3062 | 24 | if (err != TxnErrorCode::TXN_OK) { |
3063 | 0 | LOG_WARNING("failed to create txn when updating packed file ref count") |
3064 | 0 | .tag("instance_id", instance_id_) |
3065 | 0 | .tag("packed_file_path", packed_file_path) |
3066 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3067 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3068 | 0 | .tag("err", err); |
3069 | 0 | ret = -1; |
3070 | 0 | break; |
3071 | 0 | } |
3072 | | |
3073 | 24 | std::string packed_key = packed_file_key({instance_id_, packed_file_path}); |
3074 | 24 | std::string packed_val; |
3075 | 24 | err = txn->get(packed_key, &packed_val); |
3076 | 24 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
3077 | 0 | LOG_WARNING("packed file info not found when recycling rowset") |
3078 | 0 | .tag("instance_id", instance_id_) |
3079 | 0 | .tag("packed_file_path", packed_file_path) |
3080 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3081 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3082 | 0 | .tag("key", hex(packed_key)) |
3083 | 0 | .tag("tablet id", rs_meta_pb.tablet_id()); |
3084 | | // Skip this packed file entry and continue with others |
3085 | 0 | success = true; |
3086 | 0 | break; |
3087 | 0 | } |
3088 | 24 | if (err != TxnErrorCode::TXN_OK) { |
3089 | 0 | LOG_WARNING("failed to get packed file info when recycling rowset") |
3090 | 0 | .tag("instance_id", instance_id_) |
3091 | 0 | .tag("packed_file_path", packed_file_path) |
3092 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3093 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3094 | 0 | .tag("err", err); |
3095 | 0 | ret = -1; |
3096 | 0 | break; |
3097 | 0 | } |
3098 | | |
3099 | 24 | cloud::PackedFileInfoPB packed_info; |
3100 | 24 | if (!packed_info.ParseFromString(packed_val)) { |
3101 | 0 | LOG_WARNING("failed to parse packed file info when recycling rowset") |
3102 | 0 | .tag("instance_id", instance_id_) |
3103 | 0 | .tag("packed_file_path", packed_file_path) |
3104 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3105 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3106 | 0 | ret = -1; |
3107 | 0 | break; |
3108 | 0 | } |
3109 | | |
3110 | 24 | LOG_INFO("packed file update check") |
3111 | 24 | .tag("instance_id", instance_id_) |
3112 | 24 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3113 | 24 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3114 | 24 | .tag("merged_file_path", packed_file_path) |
3115 | 24 | .tag("requested_small_files", small_files.size()) |
3116 | 24 | .tag("merge_entries", packed_info.slices_size()); |
3117 | | |
3118 | 24 | auto* small_file_entries = packed_info.mutable_slices(); |
3119 | 24 | int64_t changed_files = 0; |
3120 | 24 | int64_t missing_entries = 0; |
3121 | 24 | int64_t already_deleted = 0; |
3122 | 27 | for (const auto& small_file_info : small_files) { |
3123 | 27 | bool found = false; |
3124 | 87 | for (auto& small_file_entry : *small_file_entries) { |
3125 | 87 | if (small_file_entry.path() == small_file_info.small_file_path) { |
3126 | 27 | if (!small_file_entry.deleted()) { |
3127 | 27 | small_file_entry.set_deleted(true); |
3128 | 27 | if (!small_file_entry.corrected()) { |
3129 | 27 | small_file_entry.set_corrected(true); |
3130 | 27 | } |
3131 | 27 | ++changed_files; |
3132 | 27 | } else { |
3133 | 0 | ++already_deleted; |
3134 | 0 | } |
3135 | 27 | found = true; |
3136 | 27 | break; |
3137 | 27 | } |
3138 | 87 | } |
3139 | 27 | if (!found) { |
3140 | 0 | ++missing_entries; |
3141 | 0 | LOG_WARNING("packed file info missing small file entry") |
3142 | 0 | .tag("instance_id", instance_id_) |
3143 | 0 | .tag("packed_file_path", packed_file_path) |
3144 | 0 | .tag("small_file_path", small_file_info.small_file_path) |
3145 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3146 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3147 | 0 | } |
3148 | 27 | } |
3149 | | |
3150 | 24 | if (changed_files == 0) { |
3151 | 0 | LOG_INFO("skip merge file update: no merge entries changed") |
3152 | 0 | .tag("instance_id", instance_id_) |
3153 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3154 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3155 | 0 | .tag("merged_file_path", packed_file_path) |
3156 | 0 | .tag("missing_entries", missing_entries) |
3157 | 0 | .tag("already_deleted", already_deleted) |
3158 | 0 | .tag("requested_small_files", small_files.size()) |
3159 | 0 | .tag("merge_entries", packed_info.slices_size()); |
3160 | 0 | success = true; |
3161 | 0 | break; |
3162 | 0 | } |
3163 | | |
3164 | 24 | int64_t left_file_count = 0; |
3165 | 24 | int64_t left_file_bytes = 0; |
3166 | 141 | for (const auto& small_file_entry : packed_info.slices()) { |
3167 | 141 | if (!small_file_entry.deleted()) { |
3168 | 57 | ++left_file_count; |
3169 | 57 | left_file_bytes += small_file_entry.size(); |
3170 | 57 | } |
3171 | 141 | } |
3172 | 24 | packed_info.set_remaining_slice_bytes(left_file_bytes); |
3173 | 24 | packed_info.set_ref_cnt(left_file_count); |
3174 | 24 | LOG_INFO("updated packed file reference info") |
3175 | 24 | .tag("instance_id", instance_id_) |
3176 | 24 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3177 | 24 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3178 | 24 | .tag("packed_file_path", packed_file_path) |
3179 | 24 | .tag("ref_cnt", left_file_count) |
3180 | 24 | .tag("left_file_bytes", left_file_bytes); |
3181 | | |
3182 | 24 | if (left_file_count == 0) { |
3183 | 7 | packed_info.set_state(cloud::PackedFileInfoPB::RECYCLING); |
3184 | 7 | } |
3185 | | |
3186 | 24 | std::string updated_val; |
3187 | 24 | if (!packed_info.SerializeToString(&updated_val)) { |
3188 | 0 | LOG_WARNING("failed to serialize packed file info when recycling rowset") |
3189 | 0 | .tag("instance_id", instance_id_) |
3190 | 0 | .tag("packed_file_path", packed_file_path) |
3191 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3192 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3193 | 0 | ret = -1; |
3194 | 0 | break; |
3195 | 0 | } |
3196 | | |
3197 | 24 | txn->put(packed_key, updated_val); |
3198 | 24 | err = txn->commit(); |
3199 | 24 | if (err == TxnErrorCode::TXN_OK) { |
3200 | 24 | success = true; |
3201 | 24 | if (left_file_count == 0) { |
3202 | 7 | LOG_INFO("packed file ready to delete, deleting immediately") |
3203 | 7 | .tag("instance_id", instance_id_) |
3204 | 7 | .tag("packed_file_path", packed_file_path); |
3205 | 7 | if (delete_packed_file_and_kv(packed_file_path, packed_key, packed_info) != 0) { |
3206 | 0 | ret = -1; |
3207 | 0 | } |
3208 | 7 | } |
3209 | 24 | break; |
3210 | 24 | } |
3211 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
3212 | 0 | if (attempt >= max_retry_times) { |
3213 | 0 | LOG_WARNING("packed file info update conflict after max retry") |
3214 | 0 | .tag("instance_id", instance_id_) |
3215 | 0 | .tag("packed_file_path", packed_file_path) |
3216 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3217 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3218 | 0 | .tag("changed_files", changed_files) |
3219 | 0 | .tag("attempt", attempt); |
3220 | 0 | ret = -1; |
3221 | 0 | break; |
3222 | 0 | } |
3223 | 0 | LOG_WARNING("packed file info update conflict, retrying") |
3224 | 0 | .tag("instance_id", instance_id_) |
3225 | 0 | .tag("packed_file_path", packed_file_path) |
3226 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3227 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3228 | 0 | .tag("changed_files", changed_files) |
3229 | 0 | .tag("attempt", attempt); |
3230 | 0 | sleep_for_packed_file_retry(); |
3231 | 0 | continue; |
3232 | 0 | } |
3233 | | |
3234 | 0 | LOG_WARNING("failed to commit packed file info update") |
3235 | 0 | .tag("instance_id", instance_id_) |
3236 | 0 | .tag("packed_file_path", packed_file_path) |
3237 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3238 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3239 | 0 | .tag("err", err) |
3240 | 0 | .tag("changed_files", changed_files); |
3241 | 0 | ret = -1; |
3242 | 0 | break; |
3243 | 0 | } |
3244 | | |
3245 | 24 | if (!success) { |
3246 | 0 | ret = -1; |
3247 | 0 | } |
3248 | 24 | } |
3249 | | |
3250 | 14 | return ret; |
3251 | 14 | } |
3252 | | |
3253 | | int InstanceRecycler::delete_packed_file_and_kv(const std::string& packed_file_path, |
3254 | | const std::string& packed_key, |
3255 | 7 | const cloud::PackedFileInfoPB& packed_info) { |
3256 | 7 | if (!packed_info.has_resource_id() || packed_info.resource_id().empty()) { |
3257 | 0 | LOG_WARNING("packed file missing resource id when recycling") |
3258 | 0 | .tag("instance_id", instance_id_) |
3259 | 0 | .tag("packed_file_path", packed_file_path); |
3260 | 0 | return -1; |
3261 | 0 | } |
3262 | | |
3263 | 7 | auto [resource_id, accessor] = resolve_packed_file_accessor(packed_info.resource_id()); |
3264 | 7 | if (!accessor) { |
3265 | 0 | LOG_WARNING("no accessor available to delete packed file") |
3266 | 0 | .tag("instance_id", instance_id_) |
3267 | 0 | .tag("packed_file_path", packed_file_path) |
3268 | 0 | .tag("resource_id", packed_info.resource_id()); |
3269 | 0 | return -1; |
3270 | 0 | } |
3271 | | |
3272 | 7 | int del_ret = accessor->delete_file(packed_file_path); |
3273 | 7 | if (del_ret != 0 && del_ret != 1) { |
3274 | 0 | LOG_WARNING("failed to delete packed file") |
3275 | 0 | .tag("instance_id", instance_id_) |
3276 | 0 | .tag("packed_file_path", packed_file_path) |
3277 | 0 | .tag("resource_id", resource_id) |
3278 | 0 | .tag("ret", del_ret); |
3279 | 0 | return -1; |
3280 | 0 | } |
3281 | 7 | if (del_ret == 1) { |
3282 | 0 | LOG_INFO("packed file already removed") |
3283 | 0 | .tag("instance_id", instance_id_) |
3284 | 0 | .tag("packed_file_path", packed_file_path) |
3285 | 0 | .tag("resource_id", resource_id); |
3286 | 7 | } else { |
3287 | 7 | LOG_INFO("deleted packed file") |
3288 | 7 | .tag("instance_id", instance_id_) |
3289 | 7 | .tag("packed_file_path", packed_file_path) |
3290 | 7 | .tag("resource_id", resource_id); |
3291 | 7 | } |
3292 | | |
3293 | 7 | const int max_retry_times = std::max(1, config::packed_file_txn_retry_times); |
3294 | 7 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
3295 | 7 | std::unique_ptr<Transaction> del_txn; |
3296 | 7 | TxnErrorCode err = txn_kv_->create_txn(&del_txn); |
3297 | 7 | if (err != TxnErrorCode::TXN_OK) { |
3298 | 0 | LOG_WARNING("failed to create txn when removing packed file kv") |
3299 | 0 | .tag("instance_id", instance_id_) |
3300 | 0 | .tag("packed_file_path", packed_file_path) |
3301 | 0 | .tag("attempt", attempt) |
3302 | 0 | .tag("err", err); |
3303 | 0 | return -1; |
3304 | 0 | } |
3305 | | |
3306 | 7 | std::string latest_val; |
3307 | 7 | err = del_txn->get(packed_key, &latest_val); |
3308 | 7 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
3309 | 0 | return 0; |
3310 | 0 | } |
3311 | 7 | if (err != TxnErrorCode::TXN_OK) { |
3312 | 0 | LOG_WARNING("failed to re-read packed file kv before removal") |
3313 | 0 | .tag("instance_id", instance_id_) |
3314 | 0 | .tag("packed_file_path", packed_file_path) |
3315 | 0 | .tag("attempt", attempt) |
3316 | 0 | .tag("err", err); |
3317 | 0 | return -1; |
3318 | 0 | } |
3319 | | |
3320 | 7 | cloud::PackedFileInfoPB latest_info; |
3321 | 7 | if (!latest_info.ParseFromString(latest_val)) { |
3322 | 0 | LOG_WARNING("failed to parse packed file info before removal") |
3323 | 0 | .tag("instance_id", instance_id_) |
3324 | 0 | .tag("packed_file_path", packed_file_path) |
3325 | 0 | .tag("attempt", attempt); |
3326 | 0 | return -1; |
3327 | 0 | } |
3328 | | |
3329 | 7 | if (!(latest_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
3330 | 7 | latest_info.ref_cnt() == 0)) { |
3331 | 0 | LOG_INFO("packed file state changed before removal, skip deleting kv") |
3332 | 0 | .tag("instance_id", instance_id_) |
3333 | 0 | .tag("packed_file_path", packed_file_path) |
3334 | 0 | .tag("attempt", attempt); |
3335 | 0 | return 0; |
3336 | 0 | } |
3337 | | |
3338 | 7 | del_txn->remove(packed_key); |
3339 | 7 | err = del_txn->commit(); |
3340 | 7 | if (err == TxnErrorCode::TXN_OK) { |
3341 | 7 | LOG_INFO("removed packed file metadata") |
3342 | 7 | .tag("instance_id", instance_id_) |
3343 | 7 | .tag("packed_file_path", packed_file_path); |
3344 | 7 | return 0; |
3345 | 7 | } |
3346 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
3347 | 0 | if (attempt >= max_retry_times) { |
3348 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict after max retry") |
3349 | 0 | .tag("instance_id", instance_id_) |
3350 | 0 | .tag("packed_file_path", packed_file_path) |
3351 | 0 | .tag("attempt", attempt); |
3352 | 0 | return -1; |
3353 | 0 | } |
3354 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict, retrying") |
3355 | 0 | .tag("instance_id", instance_id_) |
3356 | 0 | .tag("packed_file_path", packed_file_path) |
3357 | 0 | .tag("attempt", attempt); |
3358 | 0 | sleep_for_packed_file_retry(); |
3359 | 0 | continue; |
3360 | 0 | } |
3361 | 0 | LOG_WARNING("failed to remove packed file kv") |
3362 | 0 | .tag("instance_id", instance_id_) |
3363 | 0 | .tag("packed_file_path", packed_file_path) |
3364 | 0 | .tag("attempt", attempt) |
3365 | 0 | .tag("err", err); |
3366 | 0 | return -1; |
3367 | 0 | } |
3368 | 0 | return -1; |
3369 | 7 | } |
3370 | | |
3371 | | int InstanceRecycler::delete_rowset_data( |
3372 | | const std::map<std::string, doris::RowsetMetaCloudPB>& rowsets, RowsetRecyclingState type, |
3373 | 92 | RecyclerMetricsContext& metrics_context) { |
3374 | 92 | int ret = 0; |
3375 | | // resource_id -> file_paths |
3376 | 92 | std::map<std::string, std::vector<std::string>> resource_file_paths; |
3377 | | // (resource_id, tablet_id, rowset_id) |
3378 | 92 | std::vector<std::tuple<std::string, int64_t, std::string>> rowsets_delete_by_prefix; |
3379 | 92 | bool is_formal_rowset = (type == RowsetRecyclingState::FORMAL_ROWSET); |
3380 | | |
3381 | 54.1k | for (const auto& [_, rs] : rowsets) { |
3382 | | // we have to treat tmp rowset as "orphans" that may not related to any existing tablets |
3383 | | // due to aborted schema change. |
3384 | 54.1k | if (is_formal_rowset) { |
3385 | 3.16k | std::lock_guard lock(recycled_tablets_mtx_); |
3386 | 3.16k | if (recycled_tablets_.count(rs.tablet_id()) && rs.packed_slice_locations_size() == 0) { |
3387 | | // Tablet has been recycled and this rowset has no packed slices, so file data |
3388 | | // should already be gone; skip to avoid redundant deletes. Rowsets with packed |
3389 | | // slice info must still run to decrement packed file ref counts. |
3390 | 0 | continue; |
3391 | 0 | } |
3392 | 3.16k | } |
3393 | | |
3394 | 54.1k | auto it = accessor_map_.find(rs.resource_id()); |
3395 | | // possible if the accessor is not initilized correctly |
3396 | 54.1k | if (it == accessor_map_.end()) [[unlikely]] { |
3397 | 1 | LOG_WARNING("instance has no such resource id") |
3398 | 1 | .tag("instance_id", instance_id_) |
3399 | 1 | .tag("resource_id", rs.resource_id()); |
3400 | 1 | ret = -1; |
3401 | 1 | continue; |
3402 | 1 | } |
3403 | | |
3404 | 54.1k | auto& file_paths = resource_file_paths[rs.resource_id()]; |
3405 | 54.1k | const auto& rowset_id = rs.rowset_id_v2(); |
3406 | 54.1k | int64_t tablet_id = rs.tablet_id(); |
3407 | 54.1k | LOG_INFO("recycle rowset merge index size") |
3408 | 54.1k | .tag("instance_id", instance_id_) |
3409 | 54.1k | .tag("tablet_id", tablet_id) |
3410 | 54.1k | .tag("rowset_id", rowset_id) |
3411 | 54.1k | .tag("merge_index_size", rs.packed_slice_locations_size()); |
3412 | 54.1k | if (decrement_packed_file_ref_counts(rs) != 0) { |
3413 | 0 | ret = -1; |
3414 | 0 | continue; |
3415 | 0 | } |
3416 | 54.1k | int64_t num_segments = rs.num_segments(); |
3417 | 54.1k | if (num_segments <= 0) { |
3418 | 0 | metrics_context.total_recycled_num++; |
3419 | 0 | metrics_context.total_recycled_data_size += rs.total_disk_size(); |
3420 | 0 | continue; |
3421 | 0 | } |
3422 | | |
3423 | | // Process delete bitmap |
3424 | 54.1k | file_paths.push_back(delete_bitmap_path(tablet_id, rowset_id)); |
3425 | | |
3426 | | // Process inverted indexes |
3427 | 54.1k | std::vector<std::pair<int64_t, std::string>> index_ids; |
3428 | | // default format as v1. |
3429 | 54.1k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
3430 | 54.1k | int inverted_index_get_ret = 0; |
3431 | 54.1k | if (rs.has_tablet_schema()) { |
3432 | 53.5k | for (const auto& index : rs.tablet_schema().index()) { |
3433 | 53.5k | if (index.has_index_type() && index.index_type() == IndexType::INVERTED) { |
3434 | 53.5k | index_ids.emplace_back(index.index_id(), index.index_suffix_name()); |
3435 | 53.5k | } |
3436 | 53.5k | } |
3437 | 26.6k | if (rs.tablet_schema().has_inverted_index_storage_format()) { |
3438 | 26.5k | index_format = rs.tablet_schema().inverted_index_storage_format(); |
3439 | 26.5k | } |
3440 | 27.5k | } else { |
3441 | 27.5k | if (!rs.has_index_id() || !rs.has_schema_version()) { |
3442 | 0 | LOG(WARNING) << "rowset must have either schema or schema_version and index_id, " |
3443 | 0 | "instance_id=" |
3444 | 0 | << instance_id_ << " tablet_id=" << tablet_id |
3445 | 0 | << " rowset_id=" << rowset_id; |
3446 | 0 | ret = -1; |
3447 | 0 | continue; |
3448 | 0 | } |
3449 | 27.5k | InvertedIndexInfo index_info; |
3450 | 27.5k | inverted_index_get_ret = |
3451 | 27.5k | inverted_index_id_cache_->get(rs.index_id(), rs.schema_version(), index_info); |
3452 | 27.5k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.tmp_rowset", |
3453 | 27.5k | &inverted_index_get_ret); |
3454 | 27.5k | if (inverted_index_get_ret == 0) { |
3455 | 27.0k | index_format = index_info.first; |
3456 | 27.0k | index_ids = index_info.second; |
3457 | 27.0k | } else if (inverted_index_get_ret == 1) { |
3458 | | // 1. Schema kv not found means tablet has been recycled |
3459 | | // Maybe some tablet recycle failed by some bugs |
3460 | | // We need to delete again to double check |
3461 | | // 2. Ensure this operation only deletes tablets and does not perform any operations on indexes, |
3462 | | // because we are uncertain about the inverted index information. |
3463 | | // If there are inverted indexes, some data might not be deleted, |
3464 | | // but this is acceptable as we have made our best effort to delete the data. |
3465 | 507 | LOG_INFO( |
3466 | 507 | "delete rowset data schema kv not found, need to delete again to " |
3467 | 507 | "double " |
3468 | 507 | "check") |
3469 | 507 | .tag("instance_id", instance_id_) |
3470 | 507 | .tag("tablet_id", tablet_id) |
3471 | 507 | .tag("rowset", rs.ShortDebugString()); |
3472 | | // Currently index_ids is guaranteed to be empty, |
3473 | | // but we clear it again here as a safeguard against future code changes |
3474 | | // that might cause index_ids to no longer be empty |
3475 | 507 | index_format = InvertedIndexStorageFormatPB::V2; |
3476 | 507 | index_ids.clear(); |
3477 | 18.4E | } else { |
3478 | 18.4E | LOG(WARNING) << "failed to get schema kv for rowset, instance_id=" << instance_id_ |
3479 | 18.4E | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id; |
3480 | 18.4E | ret = -1; |
3481 | 18.4E | continue; |
3482 | 18.4E | } |
3483 | 27.5k | } |
3484 | 54.1k | if (rs.rowset_state() == RowsetStatePB::BEGIN_PARTIAL_UPDATE) { |
3485 | | // if rowset state is RowsetStatePB::BEGIN_PARTIAL_UPDATE, the number of segments data |
3486 | | // may be larger than num_segments field in RowsetMeta, so we need to delete the rowset's data by prefix |
3487 | 5 | rowsets_delete_by_prefix.emplace_back(rs.resource_id(), tablet_id, rs.rowset_id_v2()); |
3488 | 5 | continue; |
3489 | 5 | } |
3490 | 324k | for (int64_t i = 0; i < num_segments; ++i) { |
3491 | 270k | file_paths.push_back(segment_path(tablet_id, rowset_id, i)); |
3492 | 270k | if (index_format == InvertedIndexStorageFormatPB::V1) { |
3493 | 536k | for (const auto& index_id : index_ids) { |
3494 | 536k | file_paths.push_back(inverted_index_path_v1(tablet_id, rowset_id, i, |
3495 | 536k | index_id.first, index_id.second)); |
3496 | 536k | } |
3497 | 267k | } else if (!index_ids.empty() || inverted_index_get_ret == 1) { |
3498 | | // try to recycle inverted index v2 when get_ret == 1 |
3499 | | // we treat schema not found as if it has a v2 format inverted index |
3500 | | // to reduce chance of data leakage |
3501 | 2.50k | if (inverted_index_get_ret == 1) { |
3502 | 2.50k | LOG_INFO("delete rowset data schema kv not found, try to delete index file") |
3503 | 2.50k | .tag("instance_id", instance_id_) |
3504 | 2.50k | .tag("inverted index v2 path", |
3505 | 2.50k | inverted_index_path_v2(tablet_id, rowset_id, i)); |
3506 | 2.50k | } |
3507 | 2.50k | file_paths.push_back(inverted_index_path_v2(tablet_id, rowset_id, i)); |
3508 | 2.50k | } |
3509 | 270k | } |
3510 | 54.1k | } |
3511 | | |
3512 | 92 | SyncExecutor<int> concurrent_delete_executor(_thread_pool_group.s3_producer_pool, |
3513 | 92 | "delete_rowset_data", |
3514 | 92 | [](const int& ret) { return ret != 0; });recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_1clERKi Line | Count | Source | 3514 | 5 | [](const int& ret) { return ret != 0; }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_1clERKi Line | Count | Source | 3514 | 50 | [](const int& ret) { return ret != 0; }); |
|
3515 | 92 | for (auto& [resource_id, file_paths] : resource_file_paths) { |
3516 | 50 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { |
3517 | 50 | DCHECK(accessor_map_.count(*rid)) |
3518 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ |
3519 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; |
3520 | 50 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", |
3521 | 50 | &accessor_map_); |
3522 | 50 | if (!accessor_map_.contains(*rid)) { |
3523 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") |
3524 | 0 | .tag("resource_id", resource_id) |
3525 | 0 | .tag("instance_id", instance_id_); |
3526 | 0 | return -1; |
3527 | 0 | } |
3528 | 50 | auto& accessor = accessor_map_[*rid]; |
3529 | 50 | int ret = accessor->delete_files(*paths); |
3530 | 50 | if (!ret) { |
3531 | | // deduplication of different files with the same rowset id |
3532 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat |
3533 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx |
3534 | 50 | std::set<std::string> deleted_rowset_id; |
3535 | | |
3536 | 50 | std::for_each(paths->begin(), paths->end(), |
3537 | 50 | [&metrics_context, &rowsets, &deleted_rowset_id, |
3538 | 862k | this](const std::string& path) { |
3539 | 862k | std::vector<std::string> str; |
3540 | 862k | butil::SplitString(path, '/', &str); |
3541 | 862k | std::string rowset_id; |
3542 | 862k | if (auto pos = str.back().find('_'); pos != std::string::npos) { |
3543 | 857k | rowset_id = str.back().substr(0, pos); |
3544 | 857k | } else { |
3545 | 4.48k | if (path.find("packed_file/") != std::string::npos) { |
3546 | 0 | return; // packed files do not have rowset_id encoded |
3547 | 0 | } |
3548 | 4.48k | LOG(WARNING) << "failed to parse rowset_id, path=" << path; |
3549 | 4.48k | return; |
3550 | 4.48k | } |
3551 | 857k | auto rs_meta = rowsets.find(rowset_id); |
3552 | 857k | if (rs_meta != rowsets.end() && |
3553 | 861k | !deleted_rowset_id.contains(rowset_id)) { |
3554 | 54.1k | deleted_rowset_id.emplace(rowset_id); |
3555 | 54.1k | metrics_context.total_recycled_data_size += |
3556 | 54.1k | rs_meta->second.total_disk_size(); |
3557 | 54.1k | segment_metrics_context_.total_recycled_num += |
3558 | 54.1k | rs_meta->second.num_segments(); |
3559 | 54.1k | segment_metrics_context_.total_recycled_data_size += |
3560 | 54.1k | rs_meta->second.total_disk_size(); |
3561 | 54.1k | metrics_context.total_recycled_num++; |
3562 | 54.1k | } |
3563 | 857k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEvENKUlRSD_E_clESN_ Line | Count | Source | 3538 | 14 | this](const std::string& path) { | 3539 | 14 | std::vector<std::string> str; | 3540 | 14 | butil::SplitString(path, '/', &str); | 3541 | 14 | std::string rowset_id; | 3542 | 14 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3543 | 14 | rowset_id = str.back().substr(0, pos); | 3544 | 14 | } else { | 3545 | 0 | if (path.find("packed_file/") != std::string::npos) { | 3546 | 0 | return; // packed files do not have rowset_id encoded | 3547 | 0 | } | 3548 | 0 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3549 | 0 | return; | 3550 | 0 | } | 3551 | 14 | auto rs_meta = rowsets.find(rowset_id); | 3552 | 14 | if (rs_meta != rowsets.end() && | 3553 | 14 | !deleted_rowset_id.contains(rowset_id)) { | 3554 | 7 | deleted_rowset_id.emplace(rowset_id); | 3555 | 7 | metrics_context.total_recycled_data_size += | 3556 | 7 | rs_meta->second.total_disk_size(); | 3557 | 7 | segment_metrics_context_.total_recycled_num += | 3558 | 7 | rs_meta->second.num_segments(); | 3559 | 7 | segment_metrics_context_.total_recycled_data_size += | 3560 | 7 | rs_meta->second.total_disk_size(); | 3561 | 7 | metrics_context.total_recycled_num++; | 3562 | 7 | } | 3563 | 14 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEvENKUlRSD_E_clESN_ Line | Count | Source | 3538 | 862k | this](const std::string& path) { | 3539 | 862k | std::vector<std::string> str; | 3540 | 862k | butil::SplitString(path, '/', &str); | 3541 | 862k | std::string rowset_id; | 3542 | 862k | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3543 | 857k | rowset_id = str.back().substr(0, pos); | 3544 | 857k | } else { | 3545 | 4.48k | if (path.find("packed_file/") != std::string::npos) { | 3546 | 0 | return; // packed files do not have rowset_id encoded | 3547 | 0 | } | 3548 | 4.48k | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3549 | 4.48k | return; | 3550 | 4.48k | } | 3551 | 857k | auto rs_meta = rowsets.find(rowset_id); | 3552 | 857k | if (rs_meta != rowsets.end() && | 3553 | 861k | !deleted_rowset_id.contains(rowset_id)) { | 3554 | 54.1k | deleted_rowset_id.emplace(rowset_id); | 3555 | 54.1k | metrics_context.total_recycled_data_size += | 3556 | 54.1k | rs_meta->second.total_disk_size(); | 3557 | 54.1k | segment_metrics_context_.total_recycled_num += | 3558 | 54.1k | rs_meta->second.num_segments(); | 3559 | 54.1k | segment_metrics_context_.total_recycled_data_size += | 3560 | 54.1k | rs_meta->second.total_disk_size(); | 3561 | 54.1k | metrics_context.total_recycled_num++; | 3562 | 54.1k | } | 3563 | 857k | }); |
|
3564 | 50 | segment_metrics_context_.report(); |
3565 | 50 | metrics_context.report(); |
3566 | 50 | } |
3567 | 50 | return ret; |
3568 | 50 | }); recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3516 | 5 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { | 3517 | 5 | DCHECK(accessor_map_.count(*rid)) | 3518 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ | 3519 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; | 3520 | 5 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", | 3521 | 5 | &accessor_map_); | 3522 | 5 | if (!accessor_map_.contains(*rid)) { | 3523 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") | 3524 | 0 | .tag("resource_id", resource_id) | 3525 | 0 | .tag("instance_id", instance_id_); | 3526 | 0 | return -1; | 3527 | 0 | } | 3528 | 5 | auto& accessor = accessor_map_[*rid]; | 3529 | 5 | int ret = accessor->delete_files(*paths); | 3530 | 5 | if (!ret) { | 3531 | | // deduplication of different files with the same rowset id | 3532 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat | 3533 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx | 3534 | 5 | std::set<std::string> deleted_rowset_id; | 3535 | | | 3536 | 5 | std::for_each(paths->begin(), paths->end(), | 3537 | 5 | [&metrics_context, &rowsets, &deleted_rowset_id, | 3538 | 5 | this](const std::string& path) { | 3539 | 5 | std::vector<std::string> str; | 3540 | 5 | butil::SplitString(path, '/', &str); | 3541 | 5 | std::string rowset_id; | 3542 | 5 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3543 | 5 | rowset_id = str.back().substr(0, pos); | 3544 | 5 | } else { | 3545 | 5 | if (path.find("packed_file/") != std::string::npos) { | 3546 | 5 | return; // packed files do not have rowset_id encoded | 3547 | 5 | } | 3548 | 5 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3549 | 5 | return; | 3550 | 5 | } | 3551 | 5 | auto rs_meta = rowsets.find(rowset_id); | 3552 | 5 | if (rs_meta != rowsets.end() && | 3553 | 5 | !deleted_rowset_id.contains(rowset_id)) { | 3554 | 5 | deleted_rowset_id.emplace(rowset_id); | 3555 | 5 | metrics_context.total_recycled_data_size += | 3556 | 5 | rs_meta->second.total_disk_size(); | 3557 | 5 | segment_metrics_context_.total_recycled_num += | 3558 | 5 | rs_meta->second.num_segments(); | 3559 | 5 | segment_metrics_context_.total_recycled_data_size += | 3560 | 5 | rs_meta->second.total_disk_size(); | 3561 | 5 | metrics_context.total_recycled_num++; | 3562 | 5 | } | 3563 | 5 | }); | 3564 | 5 | segment_metrics_context_.report(); | 3565 | 5 | metrics_context.report(); | 3566 | 5 | } | 3567 | 5 | return ret; | 3568 | 5 | }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3516 | 45 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { | 3517 | 45 | DCHECK(accessor_map_.count(*rid)) | 3518 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ | 3519 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; | 3520 | 45 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", | 3521 | 45 | &accessor_map_); | 3522 | 45 | if (!accessor_map_.contains(*rid)) { | 3523 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") | 3524 | 0 | .tag("resource_id", resource_id) | 3525 | 0 | .tag("instance_id", instance_id_); | 3526 | 0 | return -1; | 3527 | 0 | } | 3528 | 45 | auto& accessor = accessor_map_[*rid]; | 3529 | 45 | int ret = accessor->delete_files(*paths); | 3530 | 45 | if (!ret) { | 3531 | | // deduplication of different files with the same rowset id | 3532 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat | 3533 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx | 3534 | 45 | std::set<std::string> deleted_rowset_id; | 3535 | | | 3536 | 45 | std::for_each(paths->begin(), paths->end(), | 3537 | 45 | [&metrics_context, &rowsets, &deleted_rowset_id, | 3538 | 45 | this](const std::string& path) { | 3539 | 45 | std::vector<std::string> str; | 3540 | 45 | butil::SplitString(path, '/', &str); | 3541 | 45 | std::string rowset_id; | 3542 | 45 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3543 | 45 | rowset_id = str.back().substr(0, pos); | 3544 | 45 | } else { | 3545 | 45 | if (path.find("packed_file/") != std::string::npos) { | 3546 | 45 | return; // packed files do not have rowset_id encoded | 3547 | 45 | } | 3548 | 45 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3549 | 45 | return; | 3550 | 45 | } | 3551 | 45 | auto rs_meta = rowsets.find(rowset_id); | 3552 | 45 | if (rs_meta != rowsets.end() && | 3553 | 45 | !deleted_rowset_id.contains(rowset_id)) { | 3554 | 45 | deleted_rowset_id.emplace(rowset_id); | 3555 | 45 | metrics_context.total_recycled_data_size += | 3556 | 45 | rs_meta->second.total_disk_size(); | 3557 | 45 | segment_metrics_context_.total_recycled_num += | 3558 | 45 | rs_meta->second.num_segments(); | 3559 | 45 | segment_metrics_context_.total_recycled_data_size += | 3560 | 45 | rs_meta->second.total_disk_size(); | 3561 | 45 | metrics_context.total_recycled_num++; | 3562 | 45 | } | 3563 | 45 | }); | 3564 | 45 | segment_metrics_context_.report(); | 3565 | 45 | metrics_context.report(); | 3566 | 45 | } | 3567 | 45 | return ret; | 3568 | 45 | }); |
|
3569 | 50 | } |
3570 | 92 | for (const auto& [resource_id, tablet_id, rowset_id] : rowsets_delete_by_prefix) { |
3571 | 5 | LOG_INFO( |
3572 | 5 | "delete rowset {} by prefix because it's in BEGIN_PARTIAL_UPDATE state, " |
3573 | 5 | "resource_id={}, tablet_id={}, instance_id={}, task_type={}", |
3574 | 5 | rowset_id, resource_id, tablet_id, instance_id_, metrics_context.operation_type); |
3575 | 5 | concurrent_delete_executor.add([&]() -> int { |
3576 | 5 | int ret = delete_rowset_data(resource_id, tablet_id, rowset_id); |
3577 | 5 | if (!ret) { |
3578 | 5 | auto rs = rowsets.at(rowset_id); |
3579 | 5 | metrics_context.total_recycled_data_size += rs.total_disk_size(); |
3580 | 5 | metrics_context.total_recycled_num++; |
3581 | 5 | segment_metrics_context_.total_recycled_data_size += rs.total_disk_size(); |
3582 | 5 | segment_metrics_context_.total_recycled_num += rs.num_segments(); |
3583 | 5 | metrics_context.report(); |
3584 | 5 | segment_metrics_context_.report(); |
3585 | 5 | } |
3586 | 5 | return ret; |
3587 | 5 | }); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_2clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_2clEv Line | Count | Source | 3575 | 5 | concurrent_delete_executor.add([&]() -> int { | 3576 | 5 | int ret = delete_rowset_data(resource_id, tablet_id, rowset_id); | 3577 | 5 | if (!ret) { | 3578 | 5 | auto rs = rowsets.at(rowset_id); | 3579 | 5 | metrics_context.total_recycled_data_size += rs.total_disk_size(); | 3580 | 5 | metrics_context.total_recycled_num++; | 3581 | 5 | segment_metrics_context_.total_recycled_data_size += rs.total_disk_size(); | 3582 | 5 | segment_metrics_context_.total_recycled_num += rs.num_segments(); | 3583 | 5 | metrics_context.report(); | 3584 | 5 | segment_metrics_context_.report(); | 3585 | 5 | } | 3586 | 5 | return ret; | 3587 | 5 | }); |
|
3588 | 5 | } |
3589 | | |
3590 | 92 | bool finished = true; |
3591 | 92 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
3592 | 92 | for (int r : rets) { |
3593 | 55 | if (r != 0) { |
3594 | 0 | ret = -1; |
3595 | 0 | break; |
3596 | 0 | } |
3597 | 55 | } |
3598 | 92 | ret = finished ? ret : -1; |
3599 | 92 | return ret; |
3600 | 92 | } |
3601 | | |
3602 | | int InstanceRecycler::delete_rowset_data(const std::string& resource_id, int64_t tablet_id, |
3603 | 3.10k | const std::string& rowset_id) { |
3604 | 3.10k | auto it = accessor_map_.find(resource_id); |
3605 | 3.10k | if (it == accessor_map_.end()) { |
3606 | 200 | LOG_WARNING("instance has no such resource id") |
3607 | 200 | .tag("instance_id", instance_id_) |
3608 | 200 | .tag("resource_id", resource_id) |
3609 | 200 | .tag("tablet_id", tablet_id) |
3610 | 200 | .tag("rowset_id", rowset_id); |
3611 | 200 | return -1; |
3612 | 200 | } |
3613 | 2.90k | auto& accessor = it->second; |
3614 | 2.90k | return accessor->delete_prefix(rowset_path_prefix(tablet_id, rowset_id)); |
3615 | 3.10k | } |
3616 | | |
3617 | 4 | bool InstanceRecycler::decode_packed_file_key(std::string_view key, std::string* packed_path) { |
3618 | 4 | if (key.empty()) { |
3619 | 0 | return false; |
3620 | 0 | } |
3621 | 4 | std::string_view key_view = key; |
3622 | 4 | key_view.remove_prefix(1); // remove keyspace prefix |
3623 | 4 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> decoded; |
3624 | 4 | if (decode_key(&key_view, &decoded) != 0) { |
3625 | 0 | return false; |
3626 | 0 | } |
3627 | 4 | if (decoded.size() < 4) { |
3628 | 0 | return false; |
3629 | 0 | } |
3630 | 4 | try { |
3631 | 4 | *packed_path = std::get<std::string>(std::get<0>(decoded.back())); |
3632 | 4 | } catch (const std::bad_variant_access&) { |
3633 | 0 | return false; |
3634 | 0 | } |
3635 | 4 | return true; |
3636 | 4 | } |
3637 | | |
3638 | 14 | int InstanceRecycler::recycle_packed_files() { |
3639 | 14 | const std::string task_name = "recycle_packed_files"; |
3640 | 14 | auto start_tp = steady_clock::now(); |
3641 | 14 | int64_t start_time = duration_cast<seconds>(start_tp.time_since_epoch()).count(); |
3642 | 14 | int ret = 0; |
3643 | 14 | PackedFileRecycleStats stats; |
3644 | | |
3645 | 14 | register_recycle_task(task_name, start_time); |
3646 | 14 | DORIS_CLOUD_DEFER { |
3647 | 13 | unregister_recycle_task(task_name); |
3648 | 13 | int64_t cost = |
3649 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
3650 | 13 | int64_t cost_ms = duration_cast<milliseconds>(steady_clock::now() - start_tp).count(); |
3651 | 13 | g_bvar_recycler_packed_file_recycled_kv_num.put(instance_id_, stats.num_deleted); |
3652 | 13 | g_bvar_recycler_packed_file_recycled_kv_bytes.put(instance_id_, stats.bytes_deleted); |
3653 | 13 | g_bvar_recycler_packed_file_recycle_cost_ms.put(instance_id_, cost_ms); |
3654 | 13 | g_bvar_recycler_packed_file_scanned_kv_num.put(instance_id_, stats.num_scanned); |
3655 | 13 | g_bvar_recycler_packed_file_corrected_kv_num.put(instance_id_, stats.num_corrected); |
3656 | 13 | g_bvar_recycler_packed_file_recycled_object_num.put(instance_id_, stats.num_object_deleted); |
3657 | 13 | g_bvar_recycler_packed_file_bytes_object_deleted.put(instance_id_, |
3658 | 13 | stats.bytes_object_deleted); |
3659 | 13 | g_bvar_recycler_packed_file_rowset_scanned_num.put(instance_id_, stats.rowset_scan_count); |
3660 | 13 | LOG_INFO("recycle packed files finished, cost={}s", cost) |
3661 | 13 | .tag("instance_id", instance_id_) |
3662 | 13 | .tag("num_scanned", stats.num_scanned) |
3663 | 13 | .tag("num_corrected", stats.num_corrected) |
3664 | 13 | .tag("num_deleted", stats.num_deleted) |
3665 | 13 | .tag("num_failed", stats.num_failed) |
3666 | 13 | .tag("num_objects_deleted", stats.num_object_deleted) |
3667 | 13 | .tag("bytes_object_deleted", stats.bytes_object_deleted) |
3668 | 13 | .tag("rowset_scan_count", stats.rowset_scan_count) |
3669 | 13 | .tag("bytes_deleted", stats.bytes_deleted) |
3670 | 13 | .tag("ret", ret); |
3671 | 13 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_0clEv Line | Count | Source | 3646 | 13 | DORIS_CLOUD_DEFER { | 3647 | 13 | unregister_recycle_task(task_name); | 3648 | 13 | int64_t cost = | 3649 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 3650 | 13 | int64_t cost_ms = duration_cast<milliseconds>(steady_clock::now() - start_tp).count(); | 3651 | 13 | g_bvar_recycler_packed_file_recycled_kv_num.put(instance_id_, stats.num_deleted); | 3652 | 13 | g_bvar_recycler_packed_file_recycled_kv_bytes.put(instance_id_, stats.bytes_deleted); | 3653 | 13 | g_bvar_recycler_packed_file_recycle_cost_ms.put(instance_id_, cost_ms); | 3654 | 13 | g_bvar_recycler_packed_file_scanned_kv_num.put(instance_id_, stats.num_scanned); | 3655 | 13 | g_bvar_recycler_packed_file_corrected_kv_num.put(instance_id_, stats.num_corrected); | 3656 | 13 | g_bvar_recycler_packed_file_recycled_object_num.put(instance_id_, stats.num_object_deleted); | 3657 | 13 | g_bvar_recycler_packed_file_bytes_object_deleted.put(instance_id_, | 3658 | 13 | stats.bytes_object_deleted); | 3659 | 13 | g_bvar_recycler_packed_file_rowset_scanned_num.put(instance_id_, stats.rowset_scan_count); | 3660 | 13 | LOG_INFO("recycle packed files finished, cost={}s", cost) | 3661 | 13 | .tag("instance_id", instance_id_) | 3662 | 13 | .tag("num_scanned", stats.num_scanned) | 3663 | 13 | .tag("num_corrected", stats.num_corrected) | 3664 | 13 | .tag("num_deleted", stats.num_deleted) | 3665 | 13 | .tag("num_failed", stats.num_failed) | 3666 | 13 | .tag("num_objects_deleted", stats.num_object_deleted) | 3667 | 13 | .tag("bytes_object_deleted", stats.bytes_object_deleted) | 3668 | 13 | .tag("rowset_scan_count", stats.rowset_scan_count) | 3669 | 13 | .tag("bytes_deleted", stats.bytes_deleted) | 3670 | 13 | .tag("ret", ret); | 3671 | 13 | }; |
|
3672 | | |
3673 | 14 | auto recycle_func = [this, &stats, &ret](auto&& key, auto&& value) { |
3674 | 4 | return handle_packed_file_kv(std::forward<decltype(key)>(key), |
3675 | 4 | std::forward<decltype(value)>(value), &stats, &ret); |
3676 | 4 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_1clISt17basic_string_viewIcSt11char_traitsIcEES7_EEDaOT_OT0_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_1clISt17basic_string_viewIcSt11char_traitsIcEES7_EEDaOT_OT0_ Line | Count | Source | 3673 | 4 | auto recycle_func = [this, &stats, &ret](auto&& key, auto&& value) { | 3674 | 4 | return handle_packed_file_kv(std::forward<decltype(key)>(key), | 3675 | 4 | std::forward<decltype(value)>(value), &stats, &ret); | 3676 | 4 | }; |
|
3677 | | |
3678 | 14 | LOG_INFO("begin to recycle packed file").tag("instance_id", instance_id_); |
3679 | | |
3680 | 14 | std::string begin = packed_file_key({instance_id_, ""}); |
3681 | 14 | std::string end = packed_file_key({instance_id_, "\xff"}); |
3682 | 14 | if (scan_and_recycle(begin, end, recycle_func) != 0) { |
3683 | 0 | ret = -1; |
3684 | 0 | } |
3685 | | |
3686 | 14 | return ret; |
3687 | 14 | } |
3688 | | |
3689 | | int InstanceRecycler::scan_tablets_and_statistics(int64_t table_id, int64_t index_id, |
3690 | | RecyclerMetricsContext& metrics_context, |
3691 | 0 | int64_t partition_id, bool is_empty_tablet) { |
3692 | 0 | std::string tablet_key_begin, tablet_key_end; |
3693 | |
|
3694 | 0 | if (partition_id > 0) { |
3695 | 0 | meta_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &tablet_key_begin); |
3696 | 0 | meta_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &tablet_key_end); |
3697 | 0 | } else { |
3698 | 0 | meta_tablet_key({instance_id_, table_id, index_id, 0, 0}, &tablet_key_begin); |
3699 | 0 | meta_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &tablet_key_end); |
3700 | 0 | } |
3701 | | // for calculate the total num or bytes of recyled objects |
3702 | 0 | auto scan_and_statistics = [&, is_empty_tablet, this](std::string_view k, |
3703 | 0 | std::string_view v) -> int { |
3704 | 0 | doris::TabletMetaCloudPB tablet_meta_pb; |
3705 | 0 | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { |
3706 | 0 | return 0; |
3707 | 0 | } |
3708 | 0 | int64_t tablet_id = tablet_meta_pb.tablet_id(); |
3709 | |
|
3710 | 0 | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { |
3711 | 0 | return 0; |
3712 | 0 | } |
3713 | | |
3714 | 0 | if (!is_empty_tablet) { |
3715 | 0 | if (scan_tablet_and_statistics(tablet_id, metrics_context) != 0) { |
3716 | 0 | return 0; |
3717 | 0 | } |
3718 | 0 | tablet_metrics_context_.total_need_recycle_num++; |
3719 | 0 | } |
3720 | 0 | return 0; |
3721 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_tablets_and_statisticsEllRNS0_22RecyclerMetricsContextElbENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES8_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_tablets_and_statisticsEllRNS0_22RecyclerMetricsContextElbENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES8_ |
3722 | 0 | int ret = scan_and_recycle(tablet_key_begin, tablet_key_end, std::move(scan_and_statistics)); |
3723 | 0 | metrics_context.report(true); |
3724 | 0 | tablet_metrics_context_.report(true); |
3725 | 0 | segment_metrics_context_.report(true); |
3726 | 0 | return ret; |
3727 | 0 | } |
3728 | | |
3729 | | int InstanceRecycler::scan_tablet_and_statistics(int64_t tablet_id, |
3730 | 0 | RecyclerMetricsContext& metrics_context) { |
3731 | 0 | int ret = 0; |
3732 | 0 | std::map<std::string, RowsetMetaCloudPB> rowset_meta_map; |
3733 | 0 | std::unique_ptr<Transaction> txn; |
3734 | 0 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
3735 | 0 | LOG_WARNING("failed to recycle tablet ") |
3736 | 0 | .tag("tablet id", tablet_id) |
3737 | 0 | .tag("instance_id", instance_id_) |
3738 | 0 | .tag("reason", "failed to create txn"); |
3739 | 0 | ret = -1; |
3740 | 0 | } |
3741 | 0 | GetRowsetResponse resp; |
3742 | 0 | std::string msg; |
3743 | 0 | MetaServiceCode code = MetaServiceCode::OK; |
3744 | | // get rowsets in tablet |
3745 | 0 | internal_get_rowset(txn.get(), 0, std::numeric_limits<int64_t>::max() - 1, instance_id_, |
3746 | 0 | tablet_id, code, msg, &resp); |
3747 | 0 | if (code != MetaServiceCode::OK) { |
3748 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
3749 | 0 | .tag("tablet id", tablet_id) |
3750 | 0 | .tag("msg", msg) |
3751 | 0 | .tag("code", code) |
3752 | 0 | .tag("instance id", instance_id_); |
3753 | 0 | ret = -1; |
3754 | 0 | } |
3755 | 0 | for (const auto& rs_meta : resp.rowset_meta()) { |
3756 | | /* |
3757 | | * For compatibility, we skip the loop for [0-1] here. |
3758 | | * The purpose of this loop is to delete object files, |
3759 | | * and since [0-1] only has meta and doesn't have object files, |
3760 | | * skipping it doesn't affect system correctness. |
3761 | | * |
3762 | | * If not skipped, the check "if (!rs_meta.has_resource_id())" below |
3763 | | * would return error -1 directly, causing the recycle operation to fail. |
3764 | | * |
3765 | | * [0-1] doesn't have resource id is a bug. |
3766 | | * In the future, we will fix this problem, after that, |
3767 | | * we can remove this if statement. |
3768 | | * |
3769 | | * TODO(Yukang-Lian): remove this if statement when [0-1] has resource id in the future. |
3770 | | */ |
3771 | |
|
3772 | 0 | if (rs_meta.end_version() == 1) { |
3773 | | // Assert that [0-1] has no resource_id to make sure |
3774 | | // this if statement will not be forgetted to remove |
3775 | | // when the resource id bug is fixed |
3776 | 0 | DCHECK(!rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3777 | 0 | continue; |
3778 | 0 | } |
3779 | 0 | if (!rs_meta.has_resource_id()) { |
3780 | 0 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3781 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3782 | 0 | .tag("instance_id", instance_id_) |
3783 | 0 | .tag("tablet_id", tablet_id); |
3784 | 0 | continue; |
3785 | 0 | } |
3786 | 0 | DCHECK(rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3787 | 0 | auto it = accessor_map_.find(rs_meta.resource_id()); |
3788 | | // possible if the accessor is not initilized correctly |
3789 | 0 | if (it == accessor_map_.end()) [[unlikely]] { |
3790 | 0 | LOG_WARNING( |
3791 | 0 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3792 | 0 | "recycle process") |
3793 | 0 | .tag("tablet id", tablet_id) |
3794 | 0 | .tag("instance_id", instance_id_) |
3795 | 0 | .tag("resource_id", rs_meta.resource_id()) |
3796 | 0 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3797 | 0 | continue; |
3798 | 0 | } |
3799 | | |
3800 | 0 | metrics_context.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3801 | 0 | tablet_metrics_context_.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3802 | 0 | segment_metrics_context_.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3803 | 0 | segment_metrics_context_.total_need_recycle_num += rs_meta.num_segments(); |
3804 | 0 | } |
3805 | 0 | return ret; |
3806 | 0 | } |
3807 | | |
3808 | 4.24k | int InstanceRecycler::recycle_tablet(int64_t tablet_id, RecyclerMetricsContext& metrics_context) { |
3809 | 4.24k | LOG_INFO("begin to recycle rowsets in a dropped tablet") |
3810 | 4.24k | .tag("instance_id", instance_id_) |
3811 | 4.24k | .tag("tablet_id", tablet_id); |
3812 | | |
3813 | 4.24k | if (should_recycle_versioned_keys()) { |
3814 | 11 | int ret = recycle_versioned_tablet(tablet_id, metrics_context); |
3815 | 11 | if (ret != 0) { |
3816 | 0 | return ret; |
3817 | 0 | } |
3818 | | // Continue to recycle non-versioned rowsets, if multi-version is set to DISABLED |
3819 | | // during the recycle_versioned_tablet process. |
3820 | | // |
3821 | | // .. And remove restore job rowsets of this tablet too |
3822 | 11 | } |
3823 | | |
3824 | 4.24k | int ret = 0; |
3825 | 4.24k | auto start_time = steady_clock::now(); |
3826 | | |
3827 | 4.24k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::begin", (int)0); |
3828 | | |
3829 | | // collect resource ids |
3830 | 246 | std::string rs_key0 = meta_rowset_key({instance_id_, tablet_id, 0}); |
3831 | 246 | std::string rs_key1 = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
3832 | 246 | std::string recyc_rs_key0 = recycle_rowset_key({instance_id_, tablet_id, ""}); |
3833 | 246 | std::string recyc_rs_key1 = recycle_rowset_key({instance_id_, tablet_id + 1, ""}); |
3834 | 246 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); |
3835 | 246 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); |
3836 | | |
3837 | 246 | std::set<std::string> resource_ids; |
3838 | 246 | int64_t recycle_rowsets_number = 0; |
3839 | 246 | int64_t recycle_segments_number = 0; |
3840 | 246 | int64_t recycle_rowsets_data_size = 0; |
3841 | 246 | int64_t recycle_rowsets_index_size = 0; |
3842 | 246 | int64_t recycle_restore_job_rowsets_number = 0; |
3843 | 246 | int64_t recycle_restore_job_segments_number = 0; |
3844 | 246 | int64_t recycle_restore_job_rowsets_data_size = 0; |
3845 | 246 | int64_t recycle_restore_job_rowsets_index_size = 0; |
3846 | 246 | int64_t max_rowset_version = 0; |
3847 | 246 | int64_t min_rowset_creation_time = INT64_MAX; |
3848 | 246 | int64_t max_rowset_creation_time = 0; |
3849 | 246 | int64_t min_rowset_expiration_time = INT64_MAX; |
3850 | 246 | int64_t max_rowset_expiration_time = 0; |
3851 | | |
3852 | 246 | DORIS_CLOUD_DEFER { |
3853 | 246 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
3854 | 246 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) |
3855 | 246 | .tag("instance_id", instance_id_) |
3856 | 246 | .tag("tablet_id", tablet_id) |
3857 | 246 | .tag("recycle rowsets number", recycle_rowsets_number) |
3858 | 246 | .tag("recycle segments number", recycle_segments_number) |
3859 | 246 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) |
3860 | 246 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) |
3861 | 246 | .tag("recycle restore job rowsets number", recycle_restore_job_rowsets_number) |
3862 | 246 | .tag("recycle restore job segments number", recycle_restore_job_segments_number) |
3863 | 246 | .tag("all restore job rowsets recycle data size", |
3864 | 246 | recycle_restore_job_rowsets_data_size) |
3865 | 246 | .tag("all restore job rowsets recycle index size", |
3866 | 246 | recycle_restore_job_rowsets_index_size) |
3867 | 246 | .tag("max rowset version", max_rowset_version) |
3868 | 246 | .tag("min rowset creation time", min_rowset_creation_time) |
3869 | 246 | .tag("max rowset creation time", max_rowset_creation_time) |
3870 | 246 | .tag("min rowset expiration time", min_rowset_expiration_time) |
3871 | 246 | .tag("max rowset expiration time", max_rowset_expiration_time) |
3872 | 246 | .tag("task type", metrics_context.operation_type) |
3873 | 246 | .tag("ret", ret); |
3874 | 246 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3852 | 246 | DORIS_CLOUD_DEFER { | 3853 | 246 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 3854 | 246 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) | 3855 | 246 | .tag("instance_id", instance_id_) | 3856 | 246 | .tag("tablet_id", tablet_id) | 3857 | 246 | .tag("recycle rowsets number", recycle_rowsets_number) | 3858 | 246 | .tag("recycle segments number", recycle_segments_number) | 3859 | 246 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) | 3860 | 246 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) | 3861 | 246 | .tag("recycle restore job rowsets number", recycle_restore_job_rowsets_number) | 3862 | 246 | .tag("recycle restore job segments number", recycle_restore_job_segments_number) | 3863 | 246 | .tag("all restore job rowsets recycle data size", | 3864 | 246 | recycle_restore_job_rowsets_data_size) | 3865 | 246 | .tag("all restore job rowsets recycle index size", | 3866 | 246 | recycle_restore_job_rowsets_index_size) | 3867 | 246 | .tag("max rowset version", max_rowset_version) | 3868 | 246 | .tag("min rowset creation time", min_rowset_creation_time) | 3869 | 246 | .tag("max rowset creation time", max_rowset_creation_time) | 3870 | 246 | .tag("min rowset expiration time", min_rowset_expiration_time) | 3871 | 246 | .tag("max rowset expiration time", max_rowset_expiration_time) | 3872 | 246 | .tag("task type", metrics_context.operation_type) | 3873 | 246 | .tag("ret", ret); | 3874 | 246 | }; |
|
3875 | | |
3876 | 246 | std::unique_ptr<Transaction> txn; |
3877 | 246 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
3878 | 0 | LOG_WARNING("failed to recycle tablet ") |
3879 | 0 | .tag("tablet id", tablet_id) |
3880 | 0 | .tag("instance_id", instance_id_) |
3881 | 0 | .tag("reason", "failed to create txn"); |
3882 | 0 | ret = -1; |
3883 | 0 | } |
3884 | 246 | GetRowsetResponse resp; |
3885 | 246 | std::string msg; |
3886 | 246 | MetaServiceCode code = MetaServiceCode::OK; |
3887 | | // get rowsets in tablet |
3888 | 246 | internal_get_rowset(txn.get(), 0, std::numeric_limits<int64_t>::max() - 1, instance_id_, |
3889 | 246 | tablet_id, code, msg, &resp); |
3890 | 246 | if (code != MetaServiceCode::OK) { |
3891 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
3892 | 0 | .tag("tablet id", tablet_id) |
3893 | 0 | .tag("msg", msg) |
3894 | 0 | .tag("code", code) |
3895 | 0 | .tag("instance id", instance_id_); |
3896 | 0 | ret = -1; |
3897 | 0 | } |
3898 | 246 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_tablet.create_rowset_meta", &resp); |
3899 | | |
3900 | 2.50k | for (const auto& rs_meta : resp.rowset_meta()) { |
3901 | | // The rowset has no resource id and segments when it was generated by compaction |
3902 | | // with multiple hole rowsets or it's version is [0-1], so we can skip it. |
3903 | 2.50k | if (!rs_meta.has_resource_id() && rs_meta.num_segments() == 0) { |
3904 | 0 | LOG_INFO("rowset meta does not have a resource id and no segments, skip this rowset") |
3905 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3906 | 0 | .tag("instance_id", instance_id_) |
3907 | 0 | .tag("tablet_id", tablet_id); |
3908 | 0 | recycle_rowsets_number += 1; |
3909 | 0 | continue; |
3910 | 0 | } |
3911 | 2.50k | if (!rs_meta.has_resource_id()) { |
3912 | 1 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3913 | 1 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3914 | 1 | .tag("instance_id", instance_id_) |
3915 | 1 | .tag("tablet_id", tablet_id); |
3916 | 1 | return -1; |
3917 | 1 | } |
3918 | 2.50k | DCHECK(rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3919 | 2.50k | auto it = accessor_map_.find(rs_meta.resource_id()); |
3920 | | // possible if the accessor is not initilized correctly |
3921 | 2.50k | if (it == accessor_map_.end()) [[unlikely]] { |
3922 | 1 | LOG_WARNING( |
3923 | 1 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3924 | 1 | "recycle process") |
3925 | 1 | .tag("tablet id", tablet_id) |
3926 | 1 | .tag("instance_id", instance_id_) |
3927 | 1 | .tag("resource_id", rs_meta.resource_id()) |
3928 | 1 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3929 | 1 | return -1; |
3930 | 1 | } |
3931 | 2.50k | if (decrement_packed_file_ref_counts(rs_meta) != 0) { |
3932 | 0 | LOG_WARNING("failed to update packed file info when recycling tablet") |
3933 | 0 | .tag("instance_id", instance_id_) |
3934 | 0 | .tag("tablet_id", tablet_id) |
3935 | 0 | .tag("rowset_id", rs_meta.rowset_id_v2()); |
3936 | 0 | return -1; |
3937 | 0 | } |
3938 | 2.50k | recycle_rowsets_number += 1; |
3939 | 2.50k | recycle_segments_number += rs_meta.num_segments(); |
3940 | 2.50k | recycle_rowsets_data_size += rs_meta.data_disk_size(); |
3941 | 2.50k | recycle_rowsets_index_size += rs_meta.index_disk_size(); |
3942 | 2.50k | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); |
3943 | 2.50k | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); |
3944 | 2.50k | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); |
3945 | 2.50k | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); |
3946 | 2.50k | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); |
3947 | 2.50k | resource_ids.emplace(rs_meta.resource_id()); |
3948 | 2.50k | } |
3949 | | |
3950 | | // get restore job rowset in tablet |
3951 | 244 | std::vector<std::pair<std::string, doris::RowsetMetaCloudPB>> restore_job_rs_metas; |
3952 | 244 | scan_restore_job_rowset(txn.get(), instance_id_, tablet_id, code, msg, &restore_job_rs_metas); |
3953 | 244 | if (code != MetaServiceCode::OK) { |
3954 | 0 | LOG_WARNING("scan restore job rowsets failed when recycle tablet") |
3955 | 0 | .tag("tablet id", tablet_id) |
3956 | 0 | .tag("msg", msg) |
3957 | 0 | .tag("code", code) |
3958 | 0 | .tag("instance id", instance_id_); |
3959 | 0 | return -1; |
3960 | 0 | } |
3961 | | |
3962 | 244 | for (auto& [_, rs_meta] : restore_job_rs_metas) { |
3963 | 0 | if (!rs_meta.has_resource_id()) { |
3964 | 0 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3965 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3966 | 0 | .tag("instance_id", instance_id_) |
3967 | 0 | .tag("tablet_id", tablet_id); |
3968 | 0 | return -1; |
3969 | 0 | } |
3970 | | |
3971 | 0 | auto it = accessor_map_.find(rs_meta.resource_id()); |
3972 | | // possible if the accessor is not initilized correctly |
3973 | 0 | if (it == accessor_map_.end()) [[unlikely]] { |
3974 | 0 | LOG_WARNING( |
3975 | 0 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3976 | 0 | "recycle process") |
3977 | 0 | .tag("tablet id", tablet_id) |
3978 | 0 | .tag("instance_id", instance_id_) |
3979 | 0 | .tag("resource_id", rs_meta.resource_id()) |
3980 | 0 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3981 | 0 | return -1; |
3982 | 0 | } |
3983 | 0 | if (decrement_packed_file_ref_counts(rs_meta) != 0) { |
3984 | 0 | LOG_WARNING("failed to update packed file info when recycling restore job rowset") |
3985 | 0 | .tag("instance_id", instance_id_) |
3986 | 0 | .tag("tablet_id", tablet_id) |
3987 | 0 | .tag("rowset_id", rs_meta.rowset_id_v2()); |
3988 | 0 | return -1; |
3989 | 0 | } |
3990 | 0 | recycle_restore_job_rowsets_number += 1; |
3991 | 0 | recycle_restore_job_segments_number += rs_meta.num_segments(); |
3992 | 0 | recycle_restore_job_rowsets_data_size += rs_meta.data_disk_size(); |
3993 | 0 | recycle_restore_job_rowsets_index_size += rs_meta.index_disk_size(); |
3994 | 0 | resource_ids.emplace(rs_meta.resource_id()); |
3995 | 0 | } |
3996 | | |
3997 | 244 | LOG_INFO("recycle tablet start to delete object") |
3998 | 244 | .tag("instance id", instance_id_) |
3999 | 244 | .tag("tablet id", tablet_id) |
4000 | 244 | .tag("recycle tablet resource ids are", |
4001 | 244 | std::accumulate(resource_ids.begin(), resource_ids.end(), std::string(), |
4002 | 244 | [](std::string rs_id, const auto& it) { |
4003 | 204 | return rs_id.empty() ? it : rs_id + ", " + it; |
4004 | 204 | })); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_1clINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEDaSB_RKT_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_1clINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEDaSB_RKT_ Line | Count | Source | 4002 | 204 | [](std::string rs_id, const auto& it) { | 4003 | 204 | return rs_id.empty() ? it : rs_id + ", " + it; | 4004 | 204 | })); |
|
4005 | | |
4006 | 244 | SyncExecutor<std::pair<int, std::string>> concurrent_delete_executor( |
4007 | 244 | _thread_pool_group.s3_producer_pool, |
4008 | 244 | fmt::format("delete tablet {} s3 rowset", tablet_id), |
4009 | 244 | [](const std::pair<int, std::string>& ret) { return ret.first != 0; });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKSt4pairIiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKSt4pairIiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE Line | Count | Source | 4009 | 204 | [](const std::pair<int, std::string>& ret) { return ret.first != 0; }); |
|
4010 | | |
4011 | | // delete all rowset data in this tablet |
4012 | | // ATTN: there may be data leak if not all accessor initilized successfully |
4013 | | // partial data deleted if the tablet is stored cross-storage vault |
4014 | | // vault id is not attached to TabletMeta... |
4015 | 244 | for (const auto& resource_id : resource_ids) { |
4016 | 204 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, resource_id, "submitted"}, 1); |
4017 | 204 | concurrent_delete_executor.add( |
4018 | 204 | [&, rs_id = resource_id, |
4019 | 204 | accessor_ptr = accessor_map_[resource_id]]() -> decltype(auto) { |
4020 | 204 | std::unique_ptr<int, std::function<void(int*)>> defer( |
4021 | 204 | (int*)0x01, [&](int*) { metrics_context.report(); });Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11EvENKUlPiE_clES5_ recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11EvENKUlPiE_clES5_ Line | Count | Source | 4021 | 204 | (int*)0x01, [&](int*) { metrics_context.report(); }); |
|
4022 | 204 | int res = accessor_ptr->delete_directory(tablet_path_prefix(tablet_id)); |
4023 | 204 | if (res != 0) { |
4024 | 1 | LOG(WARNING) << "failed to delete rowset data of tablet " << tablet_id |
4025 | 1 | << " path=" << accessor_ptr->uri() |
4026 | 1 | << " task type=" << metrics_context.operation_type; |
4027 | 1 | return std::make_pair(-1, rs_id); |
4028 | 1 | } |
4029 | 203 | return std::make_pair(0, rs_id); |
4030 | 204 | }); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11Ev recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11Ev Line | Count | Source | 4019 | 204 | accessor_ptr = accessor_map_[resource_id]]() -> decltype(auto) { | 4020 | 204 | std::unique_ptr<int, std::function<void(int*)>> defer( | 4021 | 204 | (int*)0x01, [&](int*) { metrics_context.report(); }); | 4022 | 204 | int res = accessor_ptr->delete_directory(tablet_path_prefix(tablet_id)); | 4023 | 204 | if (res != 0) { | 4024 | 1 | LOG(WARNING) << "failed to delete rowset data of tablet " << tablet_id | 4025 | 1 | << " path=" << accessor_ptr->uri() | 4026 | 1 | << " task type=" << metrics_context.operation_type; | 4027 | 1 | return std::make_pair(-1, rs_id); | 4028 | 1 | } | 4029 | 203 | return std::make_pair(0, rs_id); | 4030 | 204 | }); |
|
4031 | 204 | } |
4032 | | |
4033 | 244 | bool finished = true; |
4034 | 244 | std::vector<std::pair<int, std::string>> rets = concurrent_delete_executor.when_all(&finished); |
4035 | 244 | for (auto& r : rets) { |
4036 | 204 | if (r.first != 0) { |
4037 | 1 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, r.second, "error"}, 1); |
4038 | 1 | ret = -1; |
4039 | 1 | } |
4040 | 204 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, r.second, "completed"}, 1); |
4041 | 204 | } |
4042 | 244 | ret = finished ? ret : -1; |
4043 | | |
4044 | 244 | if (ret != 0) { // failed recycle tablet data |
4045 | 1 | LOG_WARNING("ret!=0") |
4046 | 1 | .tag("finished", finished) |
4047 | 1 | .tag("ret", ret) |
4048 | 1 | .tag("instance_id", instance_id_) |
4049 | 1 | .tag("tablet_id", tablet_id); |
4050 | 1 | return ret; |
4051 | 1 | } |
4052 | | |
4053 | 243 | tablet_metrics_context_.total_recycled_data_size += |
4054 | 243 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4055 | 243 | tablet_metrics_context_.total_recycled_num += 1; |
4056 | 243 | segment_metrics_context_.total_recycled_num += recycle_segments_number; |
4057 | 243 | segment_metrics_context_.total_recycled_data_size += |
4058 | 243 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4059 | 243 | metrics_context.total_recycled_data_size += |
4060 | 243 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4061 | 243 | tablet_metrics_context_.report(); |
4062 | 243 | segment_metrics_context_.report(); |
4063 | 243 | metrics_context.report(); |
4064 | | |
4065 | 243 | txn.reset(); |
4066 | 243 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4067 | 0 | LOG_WARNING("failed to recycle tablet ") |
4068 | 0 | .tag("tablet id", tablet_id) |
4069 | 0 | .tag("instance_id", instance_id_) |
4070 | 0 | .tag("reason", "failed to create txn"); |
4071 | 0 | ret = -1; |
4072 | 0 | } |
4073 | | // delete all rowset kv in this tablet |
4074 | 243 | txn->remove(rs_key0, rs_key1); |
4075 | 243 | txn->remove(recyc_rs_key0, recyc_rs_key1); |
4076 | 243 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); |
4077 | | |
4078 | | // remove delete bitmap for MoW table |
4079 | 243 | std::string pending_key = meta_pending_delete_bitmap_key({instance_id_, tablet_id}); |
4080 | 243 | txn->remove(pending_key); |
4081 | 243 | std::string delete_bitmap_start = meta_delete_bitmap_key({instance_id_, tablet_id, "", 0, 0}); |
4082 | 243 | std::string delete_bitmap_end = meta_delete_bitmap_key({instance_id_, tablet_id + 1, "", 0, 0}); |
4083 | 243 | txn->remove(delete_bitmap_start, delete_bitmap_end); |
4084 | | |
4085 | 243 | std::string dbm_start_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id, ""}); |
4086 | 243 | std::string dbm_end_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id + 1, ""}); |
4087 | 243 | txn->remove(dbm_start_key, dbm_end_key); |
4088 | 243 | LOG(INFO) << "remove delete bitmap kv, tablet=" << tablet_id << ", begin=" << hex(dbm_start_key) |
4089 | 243 | << " end=" << hex(dbm_end_key); |
4090 | | |
4091 | 243 | TxnErrorCode err = txn->commit(); |
4092 | 243 | if (err != TxnErrorCode::TXN_OK) { |
4093 | 0 | LOG(WARNING) << "failed to delete rowset kv of tablet " << tablet_id << ", err=" << err; |
4094 | 0 | ret = -1; |
4095 | 0 | } |
4096 | | |
4097 | 243 | if (ret == 0) { |
4098 | | // All object files under tablet have been deleted |
4099 | 243 | std::lock_guard lock(recycled_tablets_mtx_); |
4100 | 243 | recycled_tablets_.insert(tablet_id); |
4101 | 243 | } |
4102 | | |
4103 | 243 | return ret; |
4104 | 244 | } |
4105 | | |
4106 | | int InstanceRecycler::recycle_versioned_tablet(int64_t tablet_id, |
4107 | 11 | RecyclerMetricsContext& metrics_context) { |
4108 | 11 | int ret = 0; |
4109 | 11 | auto start_time = steady_clock::now(); |
4110 | | |
4111 | 11 | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::begin", (int)0); |
4112 | | |
4113 | | // collect resource ids |
4114 | 11 | std::string rs_key0 = meta_rowset_key({instance_id_, tablet_id, 0}); |
4115 | 11 | std::string rs_key1 = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
4116 | 11 | std::string recyc_rs_key0 = recycle_rowset_key({instance_id_, tablet_id, ""}); |
4117 | 11 | std::string recyc_rs_key1 = recycle_rowset_key({instance_id_, tablet_id + 1, ""}); |
4118 | | |
4119 | 11 | int64_t recycle_rowsets_number = 0; |
4120 | 11 | int64_t recycle_segments_number = 0; |
4121 | 11 | int64_t recycle_rowsets_data_size = 0; |
4122 | 11 | int64_t recycle_rowsets_index_size = 0; |
4123 | 11 | int64_t max_rowset_version = 0; |
4124 | 11 | int64_t min_rowset_creation_time = INT64_MAX; |
4125 | 11 | int64_t max_rowset_creation_time = 0; |
4126 | 11 | int64_t min_rowset_expiration_time = INT64_MAX; |
4127 | 11 | int64_t max_rowset_expiration_time = 0; |
4128 | | |
4129 | 11 | DORIS_CLOUD_DEFER { |
4130 | 11 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
4131 | 11 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) |
4132 | 11 | .tag("instance_id", instance_id_) |
4133 | 11 | .tag("tablet_id", tablet_id) |
4134 | 11 | .tag("recycle rowsets number", recycle_rowsets_number) |
4135 | 11 | .tag("recycle segments number", recycle_segments_number) |
4136 | 11 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) |
4137 | 11 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) |
4138 | 11 | .tag("max rowset version", max_rowset_version) |
4139 | 11 | .tag("min rowset creation time", min_rowset_creation_time) |
4140 | 11 | .tag("max rowset creation time", max_rowset_creation_time) |
4141 | 11 | .tag("min rowset expiration time", min_rowset_expiration_time) |
4142 | 11 | .tag("max rowset expiration time", max_rowset_expiration_time) |
4143 | 11 | .tag("ret", ret); |
4144 | 11 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 4129 | 11 | DORIS_CLOUD_DEFER { | 4130 | 11 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 4131 | 11 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) | 4132 | 11 | .tag("instance_id", instance_id_) | 4133 | 11 | .tag("tablet_id", tablet_id) | 4134 | 11 | .tag("recycle rowsets number", recycle_rowsets_number) | 4135 | 11 | .tag("recycle segments number", recycle_segments_number) | 4136 | 11 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) | 4137 | 11 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) | 4138 | 11 | .tag("max rowset version", max_rowset_version) | 4139 | 11 | .tag("min rowset creation time", min_rowset_creation_time) | 4140 | 11 | .tag("max rowset creation time", max_rowset_creation_time) | 4141 | 11 | .tag("min rowset expiration time", min_rowset_expiration_time) | 4142 | 11 | .tag("max rowset expiration time", max_rowset_expiration_time) | 4143 | 11 | .tag("ret", ret); | 4144 | 11 | }; |
|
4145 | | |
4146 | 11 | std::unique_ptr<Transaction> txn; |
4147 | 11 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4148 | 0 | LOG_WARNING("failed to recycle tablet ") |
4149 | 0 | .tag("tablet id", tablet_id) |
4150 | 0 | .tag("instance_id", instance_id_) |
4151 | 0 | .tag("reason", "failed to create txn"); |
4152 | 0 | ret = -1; |
4153 | 0 | } |
4154 | | |
4155 | | // Read the last version of load and compact rowsets, the previous rowsets will be recycled |
4156 | | // by the related operation logs. |
4157 | 11 | std::vector<std::pair<RowsetMetaCloudPB, Versionstamp>> load_rowset_metas; |
4158 | 11 | std::vector<std::pair<RowsetMetaCloudPB, Versionstamp>> compact_rowset_metas; |
4159 | 11 | MetaReader meta_reader(instance_id_); |
4160 | 11 | TxnErrorCode err = meta_reader.get_load_rowset_metas(txn.get(), tablet_id, &load_rowset_metas); |
4161 | 11 | if (err == TxnErrorCode::TXN_OK) { |
4162 | 11 | err = meta_reader.get_compact_rowset_metas(txn.get(), tablet_id, &compact_rowset_metas); |
4163 | 11 | } |
4164 | 11 | if (err != TxnErrorCode::TXN_OK) { |
4165 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
4166 | 0 | .tag("tablet id", tablet_id) |
4167 | 0 | .tag("err", err) |
4168 | 0 | .tag("instance id", instance_id_); |
4169 | 0 | ret = -1; |
4170 | 0 | } |
4171 | | |
4172 | 11 | LOG_INFO("recycle versioned tablet get {} load rowsets and {} compact rowsets", |
4173 | 11 | load_rowset_metas.size(), compact_rowset_metas.size()) |
4174 | 11 | .tag("instance_id", instance_id_) |
4175 | 11 | .tag("tablet_id", tablet_id); |
4176 | | |
4177 | 11 | SyncExecutor<int> concurrent_delete_executor( |
4178 | 11 | _thread_pool_group.s3_producer_pool, |
4179 | 11 | fmt::format("delete tablet {} s3 rowset", tablet_id), |
4180 | 11 | [](const int& ret) { return ret != 0; });Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_1clERKi Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_1clERKi |
4181 | | |
4182 | 60 | auto update_rowset_stats = [&](const RowsetMetaCloudPB& rs_meta) { |
4183 | 60 | recycle_rowsets_number += 1; |
4184 | 60 | recycle_segments_number += rs_meta.num_segments(); |
4185 | 60 | recycle_rowsets_data_size += rs_meta.data_disk_size(); |
4186 | 60 | recycle_rowsets_index_size += rs_meta.index_disk_size(); |
4187 | 60 | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); |
4188 | 60 | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); |
4189 | 60 | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); |
4190 | 60 | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); |
4191 | 60 | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); |
4192 | 60 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKNS_17RowsetMetaCloudPBE recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKNS_17RowsetMetaCloudPBE Line | Count | Source | 4182 | 60 | auto update_rowset_stats = [&](const RowsetMetaCloudPB& rs_meta) { | 4183 | 60 | recycle_rowsets_number += 1; | 4184 | 60 | recycle_segments_number += rs_meta.num_segments(); | 4185 | 60 | recycle_rowsets_data_size += rs_meta.data_disk_size(); | 4186 | 60 | recycle_rowsets_index_size += rs_meta.index_disk_size(); | 4187 | 60 | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); | 4188 | 60 | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); | 4189 | 60 | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); | 4190 | 60 | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); | 4191 | 60 | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); | 4192 | 60 | }; |
|
4193 | | |
4194 | 11 | std::vector<RowsetDeleteTask> all_tasks; |
4195 | | |
4196 | 11 | auto create_delete_task = [this](const RowsetMetaCloudPB& rs_meta, std::string_view recycle_key, |
4197 | 11 | std::string_view non_versioned_rowset_key = |
4198 | 60 | "") -> RowsetDeleteTask { |
4199 | 60 | RowsetDeleteTask task; |
4200 | 60 | task.rowset_meta = rs_meta; |
4201 | 60 | task.recycle_rowset_key = std::string(recycle_key); |
4202 | 60 | task.non_versioned_rowset_key = std::string(non_versioned_rowset_key); |
4203 | 60 | task.versioned_rowset_key = versioned::meta_rowset_key( |
4204 | 60 | {instance_id_, rs_meta.tablet_id(), rs_meta.rowset_id_v2()}); |
4205 | 60 | return task; |
4206 | 60 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clERKNS_17RowsetMetaCloudPBESt17basic_string_viewIcSt11char_traitsIcEESB_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clERKNS_17RowsetMetaCloudPBESt17basic_string_viewIcSt11char_traitsIcEESB_ Line | Count | Source | 4198 | 60 | "") -> RowsetDeleteTask { | 4199 | 60 | RowsetDeleteTask task; | 4200 | 60 | task.rowset_meta = rs_meta; | 4201 | 60 | task.recycle_rowset_key = std::string(recycle_key); | 4202 | 60 | task.non_versioned_rowset_key = std::string(non_versioned_rowset_key); | 4203 | 60 | task.versioned_rowset_key = versioned::meta_rowset_key( | 4204 | 60 | {instance_id_, rs_meta.tablet_id(), rs_meta.rowset_id_v2()}); | 4205 | 60 | return task; | 4206 | 60 | }; |
|
4207 | | |
4208 | 60 | for (const auto& [rs_meta, versionstamp] : load_rowset_metas) { |
4209 | 60 | update_rowset_stats(rs_meta); |
4210 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4211 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4212 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4213 | 60 | std::string rowset_load_key = |
4214 | 60 | versioned::meta_rowset_load_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4215 | 60 | std::string rowset_key = meta_rowset_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4216 | 60 | RowsetDeleteTask task = create_delete_task( |
4217 | 60 | rs_meta, encode_versioned_key(rowset_load_key, versionstamp), rowset_key); |
4218 | 60 | all_tasks.push_back(std::move(task)); |
4219 | 60 | } |
4220 | | |
4221 | 11 | for (const auto& [rs_meta, versionstamp] : compact_rowset_metas) { |
4222 | 0 | update_rowset_stats(rs_meta); |
4223 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4224 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4225 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4226 | 0 | std::string rowset_compact_key = versioned::meta_rowset_compact_key( |
4227 | 0 | {instance_id_, tablet_id, rs_meta.end_version()}); |
4228 | 0 | std::string rowset_key = meta_rowset_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4229 | 0 | RowsetDeleteTask task = create_delete_task( |
4230 | 0 | rs_meta, encode_versioned_key(rowset_compact_key, versionstamp), rowset_key); |
4231 | 0 | all_tasks.push_back(std::move(task)); |
4232 | 0 | } |
4233 | | |
4234 | 11 | auto handle_recycle_rowset_kv = [&](std::string_view k, std::string_view v) { |
4235 | 0 | RecycleRowsetPB recycle_rowset; |
4236 | 0 | if (!recycle_rowset.ParseFromArray(v.data(), v.size())) { |
4237 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
4238 | 0 | return -1; |
4239 | 0 | } |
4240 | 0 | if (!recycle_rowset.has_type()) { // compatible with old version `RecycleRowsetPB` |
4241 | 0 | if (!recycle_rowset.has_resource_id()) [[unlikely]] { // impossible |
4242 | | // in old version, keep this key-value pair and it needs to be checked manually |
4243 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4244 | 0 | return -1; |
4245 | 0 | } |
4246 | 0 | if (recycle_rowset.resource_id().empty()) [[unlikely]] { |
4247 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
4248 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
4249 | 0 | << hex(k) << " value=" << proto_to_json(recycle_rowset); |
4250 | 0 | return -1; |
4251 | 0 | } |
4252 | | // decode rowset_id |
4253 | 0 | auto k1 = k; |
4254 | 0 | k1.remove_prefix(1); |
4255 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
4256 | 0 | decode_key(&k1, &out); |
4257 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
4258 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
4259 | 0 | LOG_INFO("delete old-version rowset data") |
4260 | 0 | .tag("instance_id", instance_id_) |
4261 | 0 | .tag("tablet_id", tablet_id) |
4262 | 0 | .tag("rowset_id", rowset_id); |
4263 | | |
4264 | | // Old version RecycleRowsetPB lacks full rowset_meta info (num_segments, schema, etc.), |
4265 | | // so we must use prefix deletion directly instead of batch delete. |
4266 | 0 | concurrent_delete_executor.add( |
4267 | 0 | [tablet_id, resource_id = recycle_rowset.resource_id(), rowset_id, this]() { |
4268 | | // delete by prefix, the recycle rowset key will be deleted by range later. |
4269 | 0 | return delete_rowset_data(resource_id, tablet_id, rowset_id); |
4270 | 0 | }); Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_4clESt17basic_string_viewIcSt11char_traitsIcEES8_ENKUlvE_clEv Unexecuted instantiation: recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_4clESt17basic_string_viewIcSt11char_traitsIcEES8_ENKUlvE_clEv |
4271 | 0 | } else { |
4272 | 0 | const auto& rowset_meta = recycle_rowset.rowset_meta(); |
4273 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4274 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4275 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4276 | 0 | RowsetDeleteTask task = create_delete_task(rowset_meta, k); |
4277 | 0 | all_tasks.push_back(std::move(task)); |
4278 | 0 | } |
4279 | 0 | return 0; |
4280 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_4clESt17basic_string_viewIcSt11char_traitsIcEES8_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_4clESt17basic_string_viewIcSt11char_traitsIcEES8_ |
4281 | | |
4282 | 11 | if (scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_recycle_rowset_kv))) { |
4283 | 0 | LOG_WARNING("failed to recycle rowset kv of tablet") |
4284 | 0 | .tag("tablet id", tablet_id) |
4285 | 0 | .tag("instance_id", instance_id_) |
4286 | 0 | .tag("reason", "failed to scan and recycle RecycleRowsetPB"); |
4287 | 0 | ret = -1; |
4288 | 0 | } |
4289 | | |
4290 | | // Phase 1: Classify tasks by ref_count |
4291 | 11 | std::vector<RowsetDeleteTask> batch_delete_tasks; |
4292 | 60 | for (auto& task : all_tasks) { |
4293 | 60 | int classify_ret = classify_rowset_task_by_ref_count(task, batch_delete_tasks); |
4294 | 60 | if (classify_ret < 0) { |
4295 | 0 | LOG_WARNING("failed to classify rowset task, fallback to old logic") |
4296 | 0 | .tag("instance_id", instance_id_) |
4297 | 0 | .tag("tablet_id", tablet_id) |
4298 | 0 | .tag("rowset_id", task.rowset_meta.rowset_id_v2()); |
4299 | 0 | concurrent_delete_executor.add([this, t = std::move(task)]() mutable { |
4300 | 0 | return recycle_rowset_meta_and_data(t.recycle_rowset_key, t.rowset_meta, |
4301 | 0 | t.non_versioned_rowset_key); |
4302 | 0 | }); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEEN3$_5clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEEN3$_5clEv |
4303 | 0 | } |
4304 | 60 | } |
4305 | | |
4306 | 11 | g_bvar_recycler_batch_delete_rowset_plan_count.put(instance_id_, batch_delete_tasks.size()); |
4307 | | |
4308 | 11 | LOG_INFO("batch delete plan created") |
4309 | 11 | .tag("instance_id", instance_id_) |
4310 | 11 | .tag("tablet_id", tablet_id) |
4311 | 11 | .tag("plan_count", batch_delete_tasks.size()); |
4312 | | |
4313 | | // Phase 2: Execute batch delete using existing delete_rowset_data |
4314 | 11 | if (!batch_delete_tasks.empty()) { |
4315 | 10 | std::map<std::string, RowsetMetaCloudPB> rowsets_to_delete; |
4316 | 49 | for (const auto& task : batch_delete_tasks) { |
4317 | | // Version 0-1 rowset has no resource_id and no actual data files, skip it |
4318 | 49 | if (task.rowset_meta.resource_id().empty()) { |
4319 | 10 | LOG_INFO("skip rowset with empty resource_id in batch delete") |
4320 | 10 | .tag("instance_id", instance_id_) |
4321 | 10 | .tag("tablet_id", tablet_id) |
4322 | 10 | .tag("rowset_id", task.rowset_meta.rowset_id_v2()); |
4323 | 10 | continue; |
4324 | 10 | } |
4325 | 39 | rowsets_to_delete[task.rowset_meta.rowset_id_v2()] = task.rowset_meta; |
4326 | 39 | } |
4327 | | |
4328 | | // Only call delete_rowset_data if there are rowsets with actual data to delete |
4329 | 10 | bool delete_success = true; |
4330 | 10 | if (!rowsets_to_delete.empty()) { |
4331 | 9 | RecyclerMetricsContext batch_metrics_context(instance_id_, |
4332 | 9 | "batch_delete_versioned_tablet"); |
4333 | 9 | int delete_ret = delete_rowset_data( |
4334 | 9 | rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, batch_metrics_context); |
4335 | 9 | if (delete_ret != 0) { |
4336 | 0 | LOG_WARNING("batch delete execution failed") |
4337 | 0 | .tag("instance_id", instance_id_) |
4338 | 0 | .tag("tablet_id", tablet_id); |
4339 | 0 | g_bvar_recycler_batch_delete_failures.put(instance_id_, 1); |
4340 | 0 | ret = -1; |
4341 | 0 | delete_success = false; |
4342 | 0 | } |
4343 | 9 | } |
4344 | | |
4345 | | // Phase 3: Only cleanup metadata if data deletion succeeded. |
4346 | | // If deletion failed, keep recycle_rowset_key so next round will retry. |
4347 | 10 | if (delete_success) { |
4348 | 10 | int cleanup_ret = cleanup_rowset_metadata(batch_delete_tasks); |
4349 | 10 | if (cleanup_ret != 0) { |
4350 | 0 | LOG_WARNING("batch delete cleanup failed") |
4351 | 0 | .tag("instance_id", instance_id_) |
4352 | 0 | .tag("tablet_id", tablet_id); |
4353 | 0 | ret = -1; |
4354 | 0 | } |
4355 | 10 | } |
4356 | 10 | } |
4357 | | |
4358 | | // Always wait for fallback tasks to complete before returning |
4359 | 11 | bool finished = true; |
4360 | 11 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
4361 | 11 | for (int r : rets) { |
4362 | 0 | if (r != 0) { |
4363 | 0 | ret = -1; |
4364 | 0 | } |
4365 | 0 | } |
4366 | | |
4367 | 11 | ret = finished ? ret : -1; |
4368 | | |
4369 | 11 | if (ret != 0) { // failed recycle tablet data |
4370 | 0 | LOG_WARNING("recycle versioned tablet failed") |
4371 | 0 | .tag("finished", finished) |
4372 | 0 | .tag("ret", ret) |
4373 | 0 | .tag("instance_id", instance_id_) |
4374 | 0 | .tag("tablet_id", tablet_id); |
4375 | 0 | return ret; |
4376 | 0 | } |
4377 | | |
4378 | 11 | tablet_metrics_context_.total_recycled_data_size += |
4379 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4380 | 11 | tablet_metrics_context_.total_recycled_num += 1; |
4381 | 11 | segment_metrics_context_.total_recycled_num += recycle_segments_number; |
4382 | 11 | segment_metrics_context_.total_recycled_data_size += |
4383 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4384 | 11 | metrics_context.total_recycled_data_size += |
4385 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4386 | 11 | tablet_metrics_context_.report(); |
4387 | 11 | segment_metrics_context_.report(); |
4388 | 11 | metrics_context.report(); |
4389 | | |
4390 | 11 | txn.reset(); |
4391 | 11 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4392 | 0 | LOG_WARNING("failed to recycle tablet ") |
4393 | 0 | .tag("tablet id", tablet_id) |
4394 | 0 | .tag("instance_id", instance_id_) |
4395 | 0 | .tag("reason", "failed to create txn"); |
4396 | 0 | ret = -1; |
4397 | 0 | } |
4398 | | // delete all rowset kv in this tablet |
4399 | 11 | txn->remove(rs_key0, rs_key1); |
4400 | 11 | txn->remove(recyc_rs_key0, recyc_rs_key1); |
4401 | | |
4402 | | // remove delete bitmap for MoW table |
4403 | 11 | std::string pending_key = meta_pending_delete_bitmap_key({instance_id_, tablet_id}); |
4404 | 11 | txn->remove(pending_key); |
4405 | 11 | std::string delete_bitmap_start = meta_delete_bitmap_key({instance_id_, tablet_id, "", 0, 0}); |
4406 | 11 | std::string delete_bitmap_end = meta_delete_bitmap_key({instance_id_, tablet_id + 1, "", 0, 0}); |
4407 | 11 | txn->remove(delete_bitmap_start, delete_bitmap_end); |
4408 | | |
4409 | 11 | std::string dbm_start_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id, ""}); |
4410 | 11 | std::string dbm_end_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id + 1, ""}); |
4411 | 11 | txn->remove(dbm_start_key, dbm_end_key); |
4412 | 11 | LOG(INFO) << "remove delete bitmap kv, tablet=" << tablet_id << ", begin=" << hex(dbm_start_key) |
4413 | 11 | << " end=" << hex(dbm_end_key); |
4414 | | |
4415 | 11 | std::string versioned_idx_key = versioned::tablet_index_key({instance_id_, tablet_id}); |
4416 | 11 | std::string tablet_index_val; |
4417 | 11 | err = txn->get(versioned_idx_key, &tablet_index_val); |
4418 | 11 | if (err != TxnErrorCode::TXN_KEY_NOT_FOUND && err != TxnErrorCode::TXN_OK) { |
4419 | 0 | LOG_WARNING("failed to get tablet index kv") |
4420 | 0 | .tag("instance_id", instance_id_) |
4421 | 0 | .tag("tablet_id", tablet_id) |
4422 | 0 | .tag("err", err); |
4423 | 0 | ret = -1; |
4424 | 11 | } else if (err == TxnErrorCode::TXN_OK) { |
4425 | | // If the tablet index kv exists, we need to delete it |
4426 | 10 | TabletIndexPB tablet_index_pb; |
4427 | 10 | if (!tablet_index_pb.ParseFromString(tablet_index_val)) { |
4428 | 0 | LOG_WARNING("failed to parse tablet index pb") |
4429 | 0 | .tag("instance_id", instance_id_) |
4430 | 0 | .tag("tablet_id", tablet_id); |
4431 | 0 | ret = -1; |
4432 | 10 | } else { |
4433 | 10 | std::string versioned_inverted_idx_key = versioned::tablet_inverted_index_key( |
4434 | 10 | {instance_id_, tablet_index_pb.db_id(), tablet_index_pb.table_id(), |
4435 | 10 | tablet_index_pb.index_id(), tablet_index_pb.partition_id(), tablet_id}); |
4436 | 10 | txn->remove(versioned_inverted_idx_key); |
4437 | 10 | txn->remove(versioned_idx_key); |
4438 | 10 | } |
4439 | 10 | } |
4440 | | |
4441 | 11 | err = txn->commit(); |
4442 | 11 | if (err != TxnErrorCode::TXN_OK) { |
4443 | 0 | LOG(WARNING) << "failed to delete rowset kv of tablet " << tablet_id << ", err=" << err; |
4444 | 0 | ret = -1; |
4445 | 0 | } |
4446 | | |
4447 | 11 | if (ret == 0) { |
4448 | | // All object files under tablet have been deleted |
4449 | 11 | std::lock_guard lock(recycled_tablets_mtx_); |
4450 | 11 | recycled_tablets_.insert(tablet_id); |
4451 | 11 | } |
4452 | | |
4453 | 11 | return ret; |
4454 | 11 | } |
4455 | | |
4456 | 27 | int InstanceRecycler::recycle_rowsets() { |
4457 | 27 | if (should_recycle_versioned_keys()) { |
4458 | 5 | return recycle_versioned_rowsets(); |
4459 | 5 | } |
4460 | | |
4461 | 22 | const std::string task_name = "recycle_rowsets"; |
4462 | 22 | int64_t num_scanned = 0; |
4463 | 22 | int64_t num_expired = 0; |
4464 | 22 | int64_t num_prepare = 0; |
4465 | 22 | int64_t num_compacted = 0; |
4466 | 22 | int64_t num_empty_rowset = 0; |
4467 | 22 | size_t total_rowset_key_size = 0; |
4468 | 22 | size_t total_rowset_value_size = 0; |
4469 | 22 | size_t expired_rowset_size = 0; |
4470 | 22 | std::atomic_long num_recycled = 0; |
4471 | 22 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4472 | | |
4473 | 22 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
4474 | 22 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
4475 | 22 | std::string recyc_rs_key0; |
4476 | 22 | std::string recyc_rs_key1; |
4477 | 22 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
4478 | 22 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
4479 | | |
4480 | 22 | LOG_WARNING("begin to recycle rowsets").tag("instance_id", instance_id_); |
4481 | | |
4482 | 22 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4483 | 22 | register_recycle_task(task_name, start_time); |
4484 | | |
4485 | 22 | DORIS_CLOUD_DEFER { |
4486 | 22 | unregister_recycle_task(task_name); |
4487 | 22 | int64_t cost = |
4488 | 22 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4489 | 22 | metrics_context.finish_report(); |
4490 | 22 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) |
4491 | 22 | .tag("instance_id", instance_id_) |
4492 | 22 | .tag("num_scanned", num_scanned) |
4493 | 22 | .tag("num_expired", num_expired) |
4494 | 22 | .tag("num_recycled", num_recycled) |
4495 | 22 | .tag("num_recycled.prepare", num_prepare) |
4496 | 22 | .tag("num_recycled.compacted", num_compacted) |
4497 | 22 | .tag("num_recycled.empty_rowset", num_empty_rowset) |
4498 | 22 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
4499 | 22 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
4500 | 22 | .tag("expired_rowset_meta_size", expired_rowset_size); |
4501 | 22 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_0clEv Line | Count | Source | 4485 | 7 | DORIS_CLOUD_DEFER { | 4486 | 7 | unregister_recycle_task(task_name); | 4487 | 7 | int64_t cost = | 4488 | 7 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4489 | 7 | metrics_context.finish_report(); | 4490 | 7 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4491 | 7 | .tag("instance_id", instance_id_) | 4492 | 7 | .tag("num_scanned", num_scanned) | 4493 | 7 | .tag("num_expired", num_expired) | 4494 | 7 | .tag("num_recycled", num_recycled) | 4495 | 7 | .tag("num_recycled.prepare", num_prepare) | 4496 | 7 | .tag("num_recycled.compacted", num_compacted) | 4497 | 7 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4498 | 7 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4499 | 7 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4500 | 7 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4501 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_0clEv Line | Count | Source | 4485 | 15 | DORIS_CLOUD_DEFER { | 4486 | 15 | unregister_recycle_task(task_name); | 4487 | 15 | int64_t cost = | 4488 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4489 | 15 | metrics_context.finish_report(); | 4490 | 15 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4491 | 15 | .tag("instance_id", instance_id_) | 4492 | 15 | .tag("num_scanned", num_scanned) | 4493 | 15 | .tag("num_expired", num_expired) | 4494 | 15 | .tag("num_recycled", num_recycled) | 4495 | 15 | .tag("num_recycled.prepare", num_prepare) | 4496 | 15 | .tag("num_recycled.compacted", num_compacted) | 4497 | 15 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4498 | 15 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4499 | 15 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4500 | 15 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4501 | 15 | }; |
|
4502 | | |
4503 | 22 | std::vector<std::string> rowset_keys; |
4504 | | // rowset_id -> rowset_meta |
4505 | | // store rowset id and meta for statistics rs size when delete |
4506 | 22 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets; |
4507 | | |
4508 | | // Store keys of rowset recycled by background workers |
4509 | 22 | std::mutex async_recycled_rowset_keys_mutex; |
4510 | 22 | std::vector<std::string> async_recycled_rowset_keys; |
4511 | 22 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
4512 | 22 | config::instance_recycler_worker_pool_size, "recycle_rowsets"); |
4513 | 22 | worker_pool->start(); |
4514 | | // TODO bacth delete |
4515 | 4.00k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
4516 | 4.00k | std::string dbm_start_key = |
4517 | 4.00k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); |
4518 | 4.00k | std::string dbm_end_key = dbm_start_key; |
4519 | 4.00k | encode_int64(INT64_MAX, &dbm_end_key); |
4520 | 4.00k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); |
4521 | 4.00k | if (ret != 0) { |
4522 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" |
4523 | 0 | << instance_id_; |
4524 | 0 | } |
4525 | 4.00k | return ret; |
4526 | 4.00k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 4515 | 2 | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 4516 | 2 | std::string dbm_start_key = | 4517 | 2 | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 4518 | 2 | std::string dbm_end_key = dbm_start_key; | 4519 | 2 | encode_int64(INT64_MAX, &dbm_end_key); | 4520 | 2 | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 4521 | 2 | if (ret != 0) { | 4522 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 4523 | 0 | << instance_id_; | 4524 | 0 | } | 4525 | 2 | return ret; | 4526 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 4515 | 4.00k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 4516 | 4.00k | std::string dbm_start_key = | 4517 | 4.00k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 4518 | 4.00k | std::string dbm_end_key = dbm_start_key; | 4519 | 4.00k | encode_int64(INT64_MAX, &dbm_end_key); | 4520 | 4.00k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 4521 | 4.00k | if (ret != 0) { | 4522 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 4523 | 0 | << instance_id_; | 4524 | 0 | } | 4525 | 4.00k | return ret; | 4526 | 4.00k | }; |
|
4527 | 22 | auto delete_rowset_data_by_prefix = [&](std::string key, const std::string& resource_id, |
4528 | 902 | int64_t tablet_id, const std::string& rowset_id) { |
4529 | | // Try to delete rowset data in background thread |
4530 | 902 | int ret = worker_pool->submit_with_timeout( |
4531 | 902 | [&, resource_id, tablet_id, rowset_id, key]() mutable { |
4532 | 812 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
4533 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
4534 | 0 | return; |
4535 | 0 | } |
4536 | 812 | std::vector<std::string> keys; |
4537 | 812 | { |
4538 | 812 | std::lock_guard lock(async_recycled_rowset_keys_mutex); |
4539 | 812 | async_recycled_rowset_keys.push_back(std::move(key)); |
4540 | 812 | if (async_recycled_rowset_keys.size() > 100) { |
4541 | 7 | keys.swap(async_recycled_rowset_keys); |
4542 | 7 | } |
4543 | 812 | } |
4544 | 812 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); |
4545 | 812 | if (keys.empty()) return; |
4546 | 7 | if (txn_remove(txn_kv_.get(), keys) != 0) { |
4547 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" |
4548 | 0 | << instance_id_; |
4549 | 7 | } else { |
4550 | 7 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); |
4551 | 7 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, |
4552 | 7 | num_recycled, start_time); |
4553 | 7 | } |
4554 | 7 | }, recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv Line | Count | Source | 4531 | 2 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4532 | 2 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4533 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4534 | 0 | return; | 4535 | 0 | } | 4536 | 2 | std::vector<std::string> keys; | 4537 | 2 | { | 4538 | 2 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4539 | 2 | async_recycled_rowset_keys.push_back(std::move(key)); | 4540 | 2 | if (async_recycled_rowset_keys.size() > 100) { | 4541 | 0 | keys.swap(async_recycled_rowset_keys); | 4542 | 0 | } | 4543 | 2 | } | 4544 | 2 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4545 | 2 | if (keys.empty()) return; | 4546 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4547 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4548 | 0 | << instance_id_; | 4549 | 0 | } else { | 4550 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4551 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4552 | 0 | num_recycled, start_time); | 4553 | 0 | } | 4554 | 0 | }, |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv Line | Count | Source | 4531 | 810 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4532 | 810 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4533 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4534 | 0 | return; | 4535 | 0 | } | 4536 | 810 | std::vector<std::string> keys; | 4537 | 810 | { | 4538 | 810 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4539 | 810 | async_recycled_rowset_keys.push_back(std::move(key)); | 4540 | 810 | if (async_recycled_rowset_keys.size() > 100) { | 4541 | 7 | keys.swap(async_recycled_rowset_keys); | 4542 | 7 | } | 4543 | 810 | } | 4544 | 810 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4545 | 810 | if (keys.empty()) return; | 4546 | 7 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4547 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4548 | 0 | << instance_id_; | 4549 | 7 | } else { | 4550 | 7 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4551 | 7 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4552 | 7 | num_recycled, start_time); | 4553 | 7 | } | 4554 | 7 | }, |
|
4555 | 902 | 0); |
4556 | 902 | if (ret == 0) return 0; |
4557 | | // Submit task failed, delete rowset data in current thread |
4558 | 90 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
4559 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
4560 | 0 | return -1; |
4561 | 0 | } |
4562 | 90 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { |
4563 | 0 | return -1; |
4564 | 0 | } |
4565 | 90 | rowset_keys.push_back(std::move(key)); |
4566 | 90 | return 0; |
4567 | 90 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ Line | Count | Source | 4528 | 2 | int64_t tablet_id, const std::string& rowset_id) { | 4529 | | // Try to delete rowset data in background thread | 4530 | 2 | int ret = worker_pool->submit_with_timeout( | 4531 | 2 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4532 | 2 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4533 | 2 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4534 | 2 | return; | 4535 | 2 | } | 4536 | 2 | std::vector<std::string> keys; | 4537 | 2 | { | 4538 | 2 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4539 | 2 | async_recycled_rowset_keys.push_back(std::move(key)); | 4540 | 2 | if (async_recycled_rowset_keys.size() > 100) { | 4541 | 2 | keys.swap(async_recycled_rowset_keys); | 4542 | 2 | } | 4543 | 2 | } | 4544 | 2 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4545 | 2 | if (keys.empty()) return; | 4546 | 2 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4547 | 2 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4548 | 2 | << instance_id_; | 4549 | 2 | } else { | 4550 | 2 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4551 | 2 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4552 | 2 | num_recycled, start_time); | 4553 | 2 | } | 4554 | 2 | }, | 4555 | 2 | 0); | 4556 | 2 | if (ret == 0) return 0; | 4557 | | // Submit task failed, delete rowset data in current thread | 4558 | 0 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4559 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4560 | 0 | return -1; | 4561 | 0 | } | 4562 | 0 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { | 4563 | 0 | return -1; | 4564 | 0 | } | 4565 | 0 | rowset_keys.push_back(std::move(key)); | 4566 | 0 | return 0; | 4567 | 0 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ Line | Count | Source | 4528 | 900 | int64_t tablet_id, const std::string& rowset_id) { | 4529 | | // Try to delete rowset data in background thread | 4530 | 900 | int ret = worker_pool->submit_with_timeout( | 4531 | 900 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4532 | 900 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4533 | 900 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4534 | 900 | return; | 4535 | 900 | } | 4536 | 900 | std::vector<std::string> keys; | 4537 | 900 | { | 4538 | 900 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4539 | 900 | async_recycled_rowset_keys.push_back(std::move(key)); | 4540 | 900 | if (async_recycled_rowset_keys.size() > 100) { | 4541 | 900 | keys.swap(async_recycled_rowset_keys); | 4542 | 900 | } | 4543 | 900 | } | 4544 | 900 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4545 | 900 | if (keys.empty()) return; | 4546 | 900 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4547 | 900 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4548 | 900 | << instance_id_; | 4549 | 900 | } else { | 4550 | 900 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4551 | 900 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4552 | 900 | num_recycled, start_time); | 4553 | 900 | } | 4554 | 900 | }, | 4555 | 900 | 0); | 4556 | 900 | if (ret == 0) return 0; | 4557 | | // Submit task failed, delete rowset data in current thread | 4558 | 90 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4559 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4560 | 0 | return -1; | 4561 | 0 | } | 4562 | 90 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { | 4563 | 0 | return -1; | 4564 | 0 | } | 4565 | 90 | rowset_keys.push_back(std::move(key)); | 4566 | 90 | return 0; | 4567 | 90 | }; |
|
4568 | | |
4569 | 22 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
4570 | | |
4571 | 7.75k | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { |
4572 | 7.75k | ++num_scanned; |
4573 | 7.75k | total_rowset_key_size += k.size(); |
4574 | 7.75k | total_rowset_value_size += v.size(); |
4575 | 7.75k | RecycleRowsetPB rowset; |
4576 | 7.75k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
4577 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
4578 | 0 | return -1; |
4579 | 0 | } |
4580 | | |
4581 | 7.75k | int64_t current_time = ::time(nullptr); |
4582 | 7.75k | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
4583 | | |
4584 | 7.75k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
4585 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration |
4586 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); |
4587 | 7.75k | if (current_time < expiration) { // not expired |
4588 | 0 | return 0; |
4589 | 0 | } |
4590 | 7.75k | ++num_expired; |
4591 | 7.75k | expired_rowset_size += v.size(); |
4592 | | |
4593 | 7.75k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` |
4594 | 250 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible |
4595 | | // in old version, keep this key-value pair and it needs to be checked manually |
4596 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4597 | 0 | return -1; |
4598 | 0 | } |
4599 | 250 | if (rowset.resource_id().empty()) [[unlikely]] { |
4600 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
4601 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
4602 | 0 | << hex(k) << " value=" << proto_to_json(rowset); |
4603 | 0 | rowset_keys.emplace_back(k); |
4604 | 0 | return -1; |
4605 | 0 | } |
4606 | | // decode rowset_id |
4607 | 250 | auto k1 = k; |
4608 | 250 | k1.remove_prefix(1); |
4609 | 250 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
4610 | 250 | decode_key(&k1, &out); |
4611 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
4612 | 250 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
4613 | 250 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
4614 | 250 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id |
4615 | 250 | << " task_type=" << metrics_context.operation_type; |
4616 | 250 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), |
4617 | 250 | rowset.tablet_id(), rowset_id) != 0) { |
4618 | 0 | return -1; |
4619 | 0 | } |
4620 | 250 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); |
4621 | 250 | metrics_context.total_recycled_num++; |
4622 | 250 | segment_metrics_context_.total_recycled_data_size += |
4623 | 250 | rowset.rowset_meta().total_disk_size(); |
4624 | 250 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); |
4625 | 250 | segment_metrics_context_.report(); |
4626 | 250 | metrics_context.report(); |
4627 | 250 | return 0; |
4628 | 250 | } |
4629 | | |
4630 | 7.50k | auto* rowset_meta = rowset.mutable_rowset_meta(); |
4631 | 7.50k | if (config::enable_mark_delete_rowset_before_recycle) { |
4632 | 7.50k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); |
4633 | 7.50k | if (mark_ret == -1) { |
4634 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ |
4635 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4636 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
4637 | 0 | << "]"; |
4638 | 0 | return -1; |
4639 | 7.50k | } else if (mark_ret == 1) { |
4640 | 3.75k | LOG(INFO) |
4641 | 3.75k | << "rowset already marked as recycled, recycler will delete data and kv at " |
4642 | 3.75k | "next turn, instance_id=" |
4643 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4644 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; |
4645 | 3.75k | return 0; |
4646 | 3.75k | } |
4647 | 7.50k | } |
4648 | | |
4649 | 3.75k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { |
4650 | 3.75k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" |
4651 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4652 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; |
4653 | | |
4654 | 3.75k | if (rowset_meta->end_version() != 1) { |
4655 | 3.75k | int ret = abort_txn_or_job_for_recycle(rowset); |
4656 | | |
4657 | 3.75k | if (ret != 0) { |
4658 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" |
4659 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() |
4660 | 0 | << " version=[" << rowset_meta->start_version() << '-' |
4661 | 0 | << rowset_meta->end_version() << "]"; |
4662 | 0 | return ret; |
4663 | 0 | } |
4664 | 3.75k | } |
4665 | 3.75k | } |
4666 | | |
4667 | | // TODO(plat1ko): check rowset not referenced |
4668 | 3.75k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible |
4669 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { |
4670 | 0 | LOG_INFO("recycle rowset that has empty resource id"); |
4671 | 0 | } else { |
4672 | | // other situations, keep this key-value pair and it needs to be checked manually |
4673 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4674 | 0 | return -1; |
4675 | 0 | } |
4676 | 0 | } |
4677 | 3.75k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
4678 | 3.75k | << " tablet_id=" << rowset_meta->tablet_id() |
4679 | 3.75k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" |
4680 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
4681 | 3.75k | << "] txn_id=" << rowset_meta->txn_id() |
4682 | 3.75k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) |
4683 | 3.75k | << " rowset_meta_size=" << v.size() |
4684 | 3.75k | << " creation_time=" << rowset_meta->creation_time() |
4685 | 3.75k | << " task_type=" << metrics_context.operation_type; |
4686 | 3.75k | if (rowset.type() == RecycleRowsetPB::PREPARE) { |
4687 | | // unable to calculate file path, can only be deleted by rowset id prefix |
4688 | 652 | num_prepare += 1; |
4689 | 652 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), |
4690 | 652 | rowset_meta->tablet_id(), |
4691 | 652 | rowset_meta->rowset_id_v2()) != 0) { |
4692 | 0 | return -1; |
4693 | 0 | } |
4694 | 3.10k | } else { |
4695 | 3.10k | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; |
4696 | 3.10k | rowset_keys.emplace_back(k); |
4697 | 3.10k | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); |
4698 | 3.10k | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset |
4699 | 3.10k | ++num_empty_rowset; |
4700 | 3.10k | } |
4701 | 3.10k | } |
4702 | 3.75k | return 0; |
4703 | 3.75k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 4571 | 7 | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { | 4572 | 7 | ++num_scanned; | 4573 | 7 | total_rowset_key_size += k.size(); | 4574 | 7 | total_rowset_value_size += v.size(); | 4575 | 7 | RecycleRowsetPB rowset; | 4576 | 7 | if (!rowset.ParseFromArray(v.data(), v.size())) { | 4577 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 4578 | 0 | return -1; | 4579 | 0 | } | 4580 | | | 4581 | 7 | int64_t current_time = ::time(nullptr); | 4582 | 7 | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 4583 | | | 4584 | 7 | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4585 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 4586 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 4587 | 7 | if (current_time < expiration) { // not expired | 4588 | 0 | return 0; | 4589 | 0 | } | 4590 | 7 | ++num_expired; | 4591 | 7 | expired_rowset_size += v.size(); | 4592 | | | 4593 | 7 | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 4594 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 4595 | | // in old version, keep this key-value pair and it needs to be checked manually | 4596 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4597 | 0 | return -1; | 4598 | 0 | } | 4599 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { | 4600 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 4601 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 4602 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 4603 | 0 | rowset_keys.emplace_back(k); | 4604 | 0 | return -1; | 4605 | 0 | } | 4606 | | // decode rowset_id | 4607 | 0 | auto k1 = k; | 4608 | 0 | k1.remove_prefix(1); | 4609 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 4610 | 0 | decode_key(&k1, &out); | 4611 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 4612 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 4613 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4614 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id | 4615 | 0 | << " task_type=" << metrics_context.operation_type; | 4616 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 4617 | 0 | rowset.tablet_id(), rowset_id) != 0) { | 4618 | 0 | return -1; | 4619 | 0 | } | 4620 | 0 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); | 4621 | 0 | metrics_context.total_recycled_num++; | 4622 | 0 | segment_metrics_context_.total_recycled_data_size += | 4623 | 0 | rowset.rowset_meta().total_disk_size(); | 4624 | 0 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); | 4625 | 0 | segment_metrics_context_.report(); | 4626 | 0 | metrics_context.report(); | 4627 | 0 | return 0; | 4628 | 0 | } | 4629 | | | 4630 | 7 | auto* rowset_meta = rowset.mutable_rowset_meta(); | 4631 | 7 | if (config::enable_mark_delete_rowset_before_recycle) { | 4632 | 7 | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 4633 | 7 | if (mark_ret == -1) { | 4634 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 4635 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4636 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4637 | 0 | << "]"; | 4638 | 0 | return -1; | 4639 | 7 | } else if (mark_ret == 1) { | 4640 | 5 | LOG(INFO) | 4641 | 5 | << "rowset already marked as recycled, recycler will delete data and kv at " | 4642 | 5 | "next turn, instance_id=" | 4643 | 5 | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4644 | 5 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4645 | 5 | return 0; | 4646 | 5 | } | 4647 | 7 | } | 4648 | | | 4649 | 2 | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 4650 | 2 | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 4651 | 2 | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4652 | 2 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4653 | | | 4654 | 2 | if (rowset_meta->end_version() != 1) { | 4655 | 2 | int ret = abort_txn_or_job_for_recycle(rowset); | 4656 | | | 4657 | 2 | if (ret != 0) { | 4658 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 4659 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() | 4660 | 0 | << " version=[" << rowset_meta->start_version() << '-' | 4661 | 0 | << rowset_meta->end_version() << "]"; | 4662 | 0 | return ret; | 4663 | 0 | } | 4664 | 2 | } | 4665 | 2 | } | 4666 | | | 4667 | | // TODO(plat1ko): check rowset not referenced | 4668 | 2 | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 4669 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 4670 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 4671 | 0 | } else { | 4672 | | // other situations, keep this key-value pair and it needs to be checked manually | 4673 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4674 | 0 | return -1; | 4675 | 0 | } | 4676 | 0 | } | 4677 | 2 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4678 | 2 | << " tablet_id=" << rowset_meta->tablet_id() | 4679 | 2 | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 4680 | 2 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4681 | 2 | << "] txn_id=" << rowset_meta->txn_id() | 4682 | 2 | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 4683 | 2 | << " rowset_meta_size=" << v.size() | 4684 | 2 | << " creation_time=" << rowset_meta->creation_time() | 4685 | 2 | << " task_type=" << metrics_context.operation_type; | 4686 | 2 | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 4687 | | // unable to calculate file path, can only be deleted by rowset id prefix | 4688 | 2 | num_prepare += 1; | 4689 | 2 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 4690 | 2 | rowset_meta->tablet_id(), | 4691 | 2 | rowset_meta->rowset_id_v2()) != 0) { | 4692 | 0 | return -1; | 4693 | 0 | } | 4694 | 2 | } else { | 4695 | 0 | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; | 4696 | 0 | rowset_keys.emplace_back(k); | 4697 | 0 | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); | 4698 | 0 | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset | 4699 | 0 | ++num_empty_rowset; | 4700 | 0 | } | 4701 | 0 | } | 4702 | 2 | return 0; | 4703 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 4571 | 7.75k | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { | 4572 | 7.75k | ++num_scanned; | 4573 | 7.75k | total_rowset_key_size += k.size(); | 4574 | 7.75k | total_rowset_value_size += v.size(); | 4575 | 7.75k | RecycleRowsetPB rowset; | 4576 | 7.75k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 4577 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 4578 | 0 | return -1; | 4579 | 0 | } | 4580 | | | 4581 | 7.75k | int64_t current_time = ::time(nullptr); | 4582 | 7.75k | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 4583 | | | 4584 | 7.75k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4585 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 4586 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 4587 | 7.75k | if (current_time < expiration) { // not expired | 4588 | 0 | return 0; | 4589 | 0 | } | 4590 | 7.75k | ++num_expired; | 4591 | 7.75k | expired_rowset_size += v.size(); | 4592 | | | 4593 | 7.75k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 4594 | 250 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 4595 | | // in old version, keep this key-value pair and it needs to be checked manually | 4596 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4597 | 0 | return -1; | 4598 | 0 | } | 4599 | 250 | if (rowset.resource_id().empty()) [[unlikely]] { | 4600 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 4601 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 4602 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 4603 | 0 | rowset_keys.emplace_back(k); | 4604 | 0 | return -1; | 4605 | 0 | } | 4606 | | // decode rowset_id | 4607 | 250 | auto k1 = k; | 4608 | 250 | k1.remove_prefix(1); | 4609 | 250 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 4610 | 250 | decode_key(&k1, &out); | 4611 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 4612 | 250 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 4613 | 250 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4614 | 250 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id | 4615 | 250 | << " task_type=" << metrics_context.operation_type; | 4616 | 250 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 4617 | 250 | rowset.tablet_id(), rowset_id) != 0) { | 4618 | 0 | return -1; | 4619 | 0 | } | 4620 | 250 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); | 4621 | 250 | metrics_context.total_recycled_num++; | 4622 | 250 | segment_metrics_context_.total_recycled_data_size += | 4623 | 250 | rowset.rowset_meta().total_disk_size(); | 4624 | 250 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); | 4625 | 250 | segment_metrics_context_.report(); | 4626 | 250 | metrics_context.report(); | 4627 | 250 | return 0; | 4628 | 250 | } | 4629 | | | 4630 | 7.50k | auto* rowset_meta = rowset.mutable_rowset_meta(); | 4631 | 7.50k | if (config::enable_mark_delete_rowset_before_recycle) { | 4632 | 7.50k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 4633 | 7.50k | if (mark_ret == -1) { | 4634 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 4635 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4636 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4637 | 0 | << "]"; | 4638 | 0 | return -1; | 4639 | 7.50k | } else if (mark_ret == 1) { | 4640 | 3.75k | LOG(INFO) | 4641 | 3.75k | << "rowset already marked as recycled, recycler will delete data and kv at " | 4642 | 3.75k | "next turn, instance_id=" | 4643 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4644 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4645 | 3.75k | return 0; | 4646 | 3.75k | } | 4647 | 7.50k | } | 4648 | | | 4649 | 3.75k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 4650 | 3.75k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 4651 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4652 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4653 | | | 4654 | 3.75k | if (rowset_meta->end_version() != 1) { | 4655 | 3.75k | int ret = abort_txn_or_job_for_recycle(rowset); | 4656 | | | 4657 | 3.75k | if (ret != 0) { | 4658 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 4659 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() | 4660 | 0 | << " version=[" << rowset_meta->start_version() << '-' | 4661 | 0 | << rowset_meta->end_version() << "]"; | 4662 | 0 | return ret; | 4663 | 0 | } | 4664 | 3.75k | } | 4665 | 3.75k | } | 4666 | | | 4667 | | // TODO(plat1ko): check rowset not referenced | 4668 | 3.75k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 4669 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 4670 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 4671 | 0 | } else { | 4672 | | // other situations, keep this key-value pair and it needs to be checked manually | 4673 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4674 | 0 | return -1; | 4675 | 0 | } | 4676 | 0 | } | 4677 | 3.75k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4678 | 3.75k | << " tablet_id=" << rowset_meta->tablet_id() | 4679 | 3.75k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 4680 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4681 | 3.75k | << "] txn_id=" << rowset_meta->txn_id() | 4682 | 3.75k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 4683 | 3.75k | << " rowset_meta_size=" << v.size() | 4684 | 3.75k | << " creation_time=" << rowset_meta->creation_time() | 4685 | 3.75k | << " task_type=" << metrics_context.operation_type; | 4686 | 3.75k | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 4687 | | // unable to calculate file path, can only be deleted by rowset id prefix | 4688 | 650 | num_prepare += 1; | 4689 | 650 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 4690 | 650 | rowset_meta->tablet_id(), | 4691 | 650 | rowset_meta->rowset_id_v2()) != 0) { | 4692 | 0 | return -1; | 4693 | 0 | } | 4694 | 3.10k | } else { | 4695 | 3.10k | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; | 4696 | 3.10k | rowset_keys.emplace_back(k); | 4697 | 3.10k | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); | 4698 | 3.10k | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset | 4699 | 3.10k | ++num_empty_rowset; | 4700 | 3.10k | } | 4701 | 3.10k | } | 4702 | 3.75k | return 0; | 4703 | 3.75k | }; |
|
4704 | | |
4705 | 49 | auto loop_done = [&]() -> int { |
4706 | 49 | std::vector<std::string> rowset_keys_to_delete; |
4707 | | // rowset_id -> rowset_meta |
4708 | | // store rowset id and meta for statistics rs size when delete |
4709 | 49 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; |
4710 | 49 | rowset_keys_to_delete.swap(rowset_keys); |
4711 | 49 | rowsets_to_delete.swap(rowsets); |
4712 | 49 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), |
4713 | 49 | rowsets_to_delete = std::move(rowsets_to_delete)]() { |
4714 | 49 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, |
4715 | 49 | metrics_context) != 0) { |
4716 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; |
4717 | 0 | return; |
4718 | 0 | } |
4719 | 3.10k | for (const auto& [_, rs] : rowsets_to_delete) { |
4720 | 3.10k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
4721 | 0 | return; |
4722 | 0 | } |
4723 | 3.10k | } |
4724 | 49 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { |
4725 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
4726 | 0 | return; |
4727 | 0 | } |
4728 | 49 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); |
4729 | 49 | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEvENKUlvE_clEv Line | Count | Source | 4713 | 7 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4714 | 7 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4715 | 7 | metrics_context) != 0) { | 4716 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4717 | 0 | return; | 4718 | 0 | } | 4719 | 7 | for (const auto& [_, rs] : rowsets_to_delete) { | 4720 | 0 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4721 | 0 | return; | 4722 | 0 | } | 4723 | 0 | } | 4724 | 7 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4725 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4726 | 0 | return; | 4727 | 0 | } | 4728 | 7 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4729 | 7 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEvENKUlvE_clEv Line | Count | Source | 4713 | 42 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4714 | 42 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4715 | 42 | metrics_context) != 0) { | 4716 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4717 | 0 | return; | 4718 | 0 | } | 4719 | 3.10k | for (const auto& [_, rs] : rowsets_to_delete) { | 4720 | 3.10k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4721 | 0 | return; | 4722 | 0 | } | 4723 | 3.10k | } | 4724 | 42 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4725 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4726 | 0 | return; | 4727 | 0 | } | 4728 | 42 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4729 | 42 | }); |
|
4730 | 49 | return 0; |
4731 | 49 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEv Line | Count | Source | 4705 | 7 | auto loop_done = [&]() -> int { | 4706 | 7 | std::vector<std::string> rowset_keys_to_delete; | 4707 | | // rowset_id -> rowset_meta | 4708 | | // store rowset id and meta for statistics rs size when delete | 4709 | 7 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; | 4710 | 7 | rowset_keys_to_delete.swap(rowset_keys); | 4711 | 7 | rowsets_to_delete.swap(rowsets); | 4712 | 7 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), | 4713 | 7 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4714 | 7 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4715 | 7 | metrics_context) != 0) { | 4716 | 7 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4717 | 7 | return; | 4718 | 7 | } | 4719 | 7 | for (const auto& [_, rs] : rowsets_to_delete) { | 4720 | 7 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4721 | 7 | return; | 4722 | 7 | } | 4723 | 7 | } | 4724 | 7 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4725 | 7 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4726 | 7 | return; | 4727 | 7 | } | 4728 | 7 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4729 | 7 | }); | 4730 | 7 | return 0; | 4731 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEv Line | Count | Source | 4705 | 42 | auto loop_done = [&]() -> int { | 4706 | 42 | std::vector<std::string> rowset_keys_to_delete; | 4707 | | // rowset_id -> rowset_meta | 4708 | | // store rowset id and meta for statistics rs size when delete | 4709 | 42 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; | 4710 | 42 | rowset_keys_to_delete.swap(rowset_keys); | 4711 | 42 | rowsets_to_delete.swap(rowsets); | 4712 | 42 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), | 4713 | 42 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4714 | 42 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4715 | 42 | metrics_context) != 0) { | 4716 | 42 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4717 | 42 | return; | 4718 | 42 | } | 4719 | 42 | for (const auto& [_, rs] : rowsets_to_delete) { | 4720 | 42 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4721 | 42 | return; | 4722 | 42 | } | 4723 | 42 | } | 4724 | 42 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4725 | 42 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4726 | 42 | return; | 4727 | 42 | } | 4728 | 42 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4729 | 42 | }); | 4730 | 42 | return 0; | 4731 | 42 | }; |
|
4732 | | |
4733 | 22 | if (config::enable_recycler_stats_metrics) { |
4734 | 0 | scan_and_statistics_rowsets(); |
4735 | 0 | } |
4736 | | // recycle_func and loop_done for scan and recycle |
4737 | 22 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv), |
4738 | 22 | std::move(loop_done)); |
4739 | | |
4740 | 22 | worker_pool->stop(); |
4741 | | |
4742 | 22 | if (!async_recycled_rowset_keys.empty()) { |
4743 | 5 | if (txn_remove(txn_kv_.get(), async_recycled_rowset_keys) != 0) { |
4744 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
4745 | 0 | return -1; |
4746 | 5 | } else { |
4747 | 5 | num_recycled.fetch_add(async_recycled_rowset_keys.size(), std::memory_order_relaxed); |
4748 | 5 | } |
4749 | 5 | } |
4750 | 22 | return ret; |
4751 | 22 | } |
4752 | | |
4753 | 13 | int InstanceRecycler::recycle_restore_jobs() { |
4754 | 13 | const std::string task_name = "recycle_restore_jobs"; |
4755 | 13 | int64_t num_scanned = 0; |
4756 | 13 | int64_t num_expired = 0; |
4757 | 13 | int64_t num_recycled = 0; |
4758 | 13 | int64_t num_aborted = 0; |
4759 | | |
4760 | 13 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4761 | | |
4762 | 13 | JobRestoreTabletKeyInfo restore_job_key_info0 {instance_id_, 0}; |
4763 | 13 | JobRestoreTabletKeyInfo restore_job_key_info1 {instance_id_, INT64_MAX}; |
4764 | 13 | std::string restore_job_key0; |
4765 | 13 | std::string restore_job_key1; |
4766 | 13 | job_restore_tablet_key(restore_job_key_info0, &restore_job_key0); |
4767 | 13 | job_restore_tablet_key(restore_job_key_info1, &restore_job_key1); |
4768 | | |
4769 | 13 | LOG_INFO("begin to recycle restore jobs").tag("instance_id", instance_id_); |
4770 | | |
4771 | 13 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4772 | 13 | register_recycle_task(task_name, start_time); |
4773 | | |
4774 | 13 | DORIS_CLOUD_DEFER { |
4775 | 13 | unregister_recycle_task(task_name); |
4776 | 13 | int64_t cost = |
4777 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4778 | 13 | metrics_context.finish_report(); |
4779 | | |
4780 | 13 | LOG_INFO("recycle restore jobs finished, cost={}s", cost) |
4781 | 13 | .tag("instance_id", instance_id_) |
4782 | 13 | .tag("num_scanned", num_scanned) |
4783 | 13 | .tag("num_expired", num_expired) |
4784 | 13 | .tag("num_recycled", num_recycled) |
4785 | 13 | .tag("num_aborted", num_aborted); |
4786 | 13 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_0clEv Line | Count | Source | 4774 | 13 | DORIS_CLOUD_DEFER { | 4775 | 13 | unregister_recycle_task(task_name); | 4776 | 13 | int64_t cost = | 4777 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4778 | 13 | metrics_context.finish_report(); | 4779 | | | 4780 | 13 | LOG_INFO("recycle restore jobs finished, cost={}s", cost) | 4781 | 13 | .tag("instance_id", instance_id_) | 4782 | 13 | .tag("num_scanned", num_scanned) | 4783 | 13 | .tag("num_expired", num_expired) | 4784 | 13 | .tag("num_recycled", num_recycled) | 4785 | 13 | .tag("num_aborted", num_aborted); | 4786 | 13 | }; |
|
4787 | | |
4788 | 13 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
4789 | | |
4790 | 13 | std::vector<std::string_view> restore_job_keys; |
4791 | 41 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
4792 | 41 | ++num_scanned; |
4793 | 41 | RestoreJobCloudPB restore_job_pb; |
4794 | 41 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { |
4795 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
4796 | 0 | return -1; |
4797 | 0 | } |
4798 | 41 | int64_t expiration = |
4799 | 41 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); |
4800 | 41 | VLOG_DEBUG << "recycle restore job scan, key=" << hex(k) << " num_scanned=" << num_scanned |
4801 | 0 | << " num_expired=" << num_expired << " expiration time=" << expiration |
4802 | 0 | << " job expiration=" << restore_job_pb.expired_at_s() |
4803 | 0 | << " ctime=" << restore_job_pb.ctime_s() << " mtime=" << restore_job_pb.mtime_s() |
4804 | 0 | << " state=" << restore_job_pb.state(); |
4805 | 41 | int64_t current_time = ::time(nullptr); |
4806 | 41 | if (current_time < expiration) { // not expired |
4807 | 0 | return 0; |
4808 | 0 | } |
4809 | 41 | ++num_expired; |
4810 | | |
4811 | 41 | int64_t tablet_id = restore_job_pb.tablet_id(); |
4812 | 41 | LOG(INFO) << "begin to recycle expired restore jobs, instance_id=" << instance_id_ |
4813 | 41 | << " restore_job_pb=" << restore_job_pb.DebugString(); |
4814 | | |
4815 | 41 | std::unique_ptr<Transaction> txn; |
4816 | 41 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
4817 | 41 | if (err != TxnErrorCode::TXN_OK) { |
4818 | 0 | LOG_WARNING("failed to recycle restore job") |
4819 | 0 | .tag("err", err) |
4820 | 0 | .tag("tablet id", tablet_id) |
4821 | 0 | .tag("instance_id", instance_id_) |
4822 | 0 | .tag("reason", "failed to create txn"); |
4823 | 0 | return -1; |
4824 | 0 | } |
4825 | | |
4826 | 41 | std::string val; |
4827 | 41 | err = txn->get(k, &val); |
4828 | 41 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { // maybe recycled, skip it |
4829 | 0 | LOG_INFO("restore job {} has been recycled", tablet_id); |
4830 | 0 | return 0; |
4831 | 0 | } |
4832 | 41 | if (err != TxnErrorCode::TXN_OK) { |
4833 | 0 | LOG_WARNING("failed to get kv"); |
4834 | 0 | return -1; |
4835 | 0 | } |
4836 | 41 | restore_job_pb.Clear(); |
4837 | 41 | if (!restore_job_pb.ParseFromString(val)) { |
4838 | 0 | LOG_WARNING("malformed recycle restore job value").tag("key", hex(k)); |
4839 | 0 | return -1; |
4840 | 0 | } |
4841 | | |
4842 | | // PREPARED or COMMITTED, change state to DROPPED and return |
4843 | 41 | if (restore_job_pb.state() == RestoreJobCloudPB::PREPARED || |
4844 | 41 | restore_job_pb.state() == RestoreJobCloudPB::COMMITTED) { |
4845 | 0 | restore_job_pb.set_state(RestoreJobCloudPB::DROPPED); |
4846 | 0 | restore_job_pb.set_need_recycle_data(true); |
4847 | 0 | txn->put(k, restore_job_pb.SerializeAsString()); |
4848 | 0 | err = txn->commit(); |
4849 | 0 | if (err != TxnErrorCode::TXN_OK) { |
4850 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
4851 | 0 | return -1; |
4852 | 0 | } |
4853 | 0 | num_aborted++; |
4854 | 0 | return 0; |
4855 | 0 | } |
4856 | | |
4857 | | // Change state to RECYCLING |
4858 | 41 | if (restore_job_pb.state() != RestoreJobCloudPB::RECYCLING) { |
4859 | 21 | restore_job_pb.set_state(RestoreJobCloudPB::RECYCLING); |
4860 | 21 | txn->put(k, restore_job_pb.SerializeAsString()); |
4861 | 21 | err = txn->commit(); |
4862 | 21 | if (err != TxnErrorCode::TXN_OK) { |
4863 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
4864 | 0 | return -1; |
4865 | 0 | } |
4866 | 21 | return 0; |
4867 | 21 | } |
4868 | | |
4869 | 20 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); |
4870 | 20 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); |
4871 | | |
4872 | | // Recycle all data associated with the restore job. |
4873 | | // This includes rowsets, segments, and related resources. |
4874 | 20 | bool need_recycle_data = restore_job_pb.need_recycle_data(); |
4875 | 20 | if (need_recycle_data && recycle_tablet(tablet_id, metrics_context) != 0) { |
4876 | 0 | LOG_WARNING("failed to recycle tablet") |
4877 | 0 | .tag("tablet_id", tablet_id) |
4878 | 0 | .tag("instance_id", instance_id_); |
4879 | 0 | return -1; |
4880 | 0 | } |
4881 | | |
4882 | | // delete all restore job rowset kv |
4883 | 20 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); |
4884 | | |
4885 | 20 | err = txn->commit(); |
4886 | 20 | if (err != TxnErrorCode::TXN_OK) { |
4887 | 0 | LOG_WARNING("failed to recycle tablet restore job rowset kv") |
4888 | 0 | .tag("err", err) |
4889 | 0 | .tag("tablet id", tablet_id) |
4890 | 0 | .tag("instance_id", instance_id_) |
4891 | 0 | .tag("reason", "failed to commit txn"); |
4892 | 0 | return -1; |
4893 | 0 | } |
4894 | | |
4895 | 20 | metrics_context.total_recycled_num = ++num_recycled; |
4896 | 20 | metrics_context.report(); |
4897 | 20 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
4898 | 20 | restore_job_keys.push_back(k); |
4899 | | |
4900 | 20 | LOG(INFO) << "finish to recycle expired restore job, key=" << hex(k) |
4901 | 20 | << " tablet_id=" << tablet_id; |
4902 | 20 | return 0; |
4903 | 20 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 4791 | 41 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 4792 | 41 | ++num_scanned; | 4793 | 41 | RestoreJobCloudPB restore_job_pb; | 4794 | 41 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { | 4795 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 4796 | 0 | return -1; | 4797 | 0 | } | 4798 | 41 | int64_t expiration = | 4799 | 41 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); | 4800 | 41 | VLOG_DEBUG << "recycle restore job scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4801 | 0 | << " num_expired=" << num_expired << " expiration time=" << expiration | 4802 | 0 | << " job expiration=" << restore_job_pb.expired_at_s() | 4803 | 0 | << " ctime=" << restore_job_pb.ctime_s() << " mtime=" << restore_job_pb.mtime_s() | 4804 | 0 | << " state=" << restore_job_pb.state(); | 4805 | 41 | int64_t current_time = ::time(nullptr); | 4806 | 41 | if (current_time < expiration) { // not expired | 4807 | 0 | return 0; | 4808 | 0 | } | 4809 | 41 | ++num_expired; | 4810 | | | 4811 | 41 | int64_t tablet_id = restore_job_pb.tablet_id(); | 4812 | 41 | LOG(INFO) << "begin to recycle expired restore jobs, instance_id=" << instance_id_ | 4813 | 41 | << " restore_job_pb=" << restore_job_pb.DebugString(); | 4814 | | | 4815 | 41 | std::unique_ptr<Transaction> txn; | 4816 | 41 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 4817 | 41 | if (err != TxnErrorCode::TXN_OK) { | 4818 | 0 | LOG_WARNING("failed to recycle restore job") | 4819 | 0 | .tag("err", err) | 4820 | 0 | .tag("tablet id", tablet_id) | 4821 | 0 | .tag("instance_id", instance_id_) | 4822 | 0 | .tag("reason", "failed to create txn"); | 4823 | 0 | return -1; | 4824 | 0 | } | 4825 | | | 4826 | 41 | std::string val; | 4827 | 41 | err = txn->get(k, &val); | 4828 | 41 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { // maybe recycled, skip it | 4829 | 0 | LOG_INFO("restore job {} has been recycled", tablet_id); | 4830 | 0 | return 0; | 4831 | 0 | } | 4832 | 41 | if (err != TxnErrorCode::TXN_OK) { | 4833 | 0 | LOG_WARNING("failed to get kv"); | 4834 | 0 | return -1; | 4835 | 0 | } | 4836 | 41 | restore_job_pb.Clear(); | 4837 | 41 | if (!restore_job_pb.ParseFromString(val)) { | 4838 | 0 | LOG_WARNING("malformed recycle restore job value").tag("key", hex(k)); | 4839 | 0 | return -1; | 4840 | 0 | } | 4841 | | | 4842 | | // PREPARED or COMMITTED, change state to DROPPED and return | 4843 | 41 | if (restore_job_pb.state() == RestoreJobCloudPB::PREPARED || | 4844 | 41 | restore_job_pb.state() == RestoreJobCloudPB::COMMITTED) { | 4845 | 0 | restore_job_pb.set_state(RestoreJobCloudPB::DROPPED); | 4846 | 0 | restore_job_pb.set_need_recycle_data(true); | 4847 | 0 | txn->put(k, restore_job_pb.SerializeAsString()); | 4848 | 0 | err = txn->commit(); | 4849 | 0 | if (err != TxnErrorCode::TXN_OK) { | 4850 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 4851 | 0 | return -1; | 4852 | 0 | } | 4853 | 0 | num_aborted++; | 4854 | 0 | return 0; | 4855 | 0 | } | 4856 | | | 4857 | | // Change state to RECYCLING | 4858 | 41 | if (restore_job_pb.state() != RestoreJobCloudPB::RECYCLING) { | 4859 | 21 | restore_job_pb.set_state(RestoreJobCloudPB::RECYCLING); | 4860 | 21 | txn->put(k, restore_job_pb.SerializeAsString()); | 4861 | 21 | err = txn->commit(); | 4862 | 21 | if (err != TxnErrorCode::TXN_OK) { | 4863 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 4864 | 0 | return -1; | 4865 | 0 | } | 4866 | 21 | return 0; | 4867 | 21 | } | 4868 | | | 4869 | 20 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); | 4870 | 20 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); | 4871 | | | 4872 | | // Recycle all data associated with the restore job. | 4873 | | // This includes rowsets, segments, and related resources. | 4874 | 20 | bool need_recycle_data = restore_job_pb.need_recycle_data(); | 4875 | 20 | if (need_recycle_data && recycle_tablet(tablet_id, metrics_context) != 0) { | 4876 | 0 | LOG_WARNING("failed to recycle tablet") | 4877 | 0 | .tag("tablet_id", tablet_id) | 4878 | 0 | .tag("instance_id", instance_id_); | 4879 | 0 | return -1; | 4880 | 0 | } | 4881 | | | 4882 | | // delete all restore job rowset kv | 4883 | 20 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); | 4884 | | | 4885 | 20 | err = txn->commit(); | 4886 | 20 | if (err != TxnErrorCode::TXN_OK) { | 4887 | 0 | LOG_WARNING("failed to recycle tablet restore job rowset kv") | 4888 | 0 | .tag("err", err) | 4889 | 0 | .tag("tablet id", tablet_id) | 4890 | 0 | .tag("instance_id", instance_id_) | 4891 | 0 | .tag("reason", "failed to commit txn"); | 4892 | 0 | return -1; | 4893 | 0 | } | 4894 | | | 4895 | 20 | metrics_context.total_recycled_num = ++num_recycled; | 4896 | 20 | metrics_context.report(); | 4897 | 20 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 4898 | 20 | restore_job_keys.push_back(k); | 4899 | | | 4900 | 20 | LOG(INFO) << "finish to recycle expired restore job, key=" << hex(k) | 4901 | 20 | << " tablet_id=" << tablet_id; | 4902 | 20 | return 0; | 4903 | 20 | }; |
|
4904 | | |
4905 | 13 | auto loop_done = [&restore_job_keys, this]() -> int { |
4906 | 3 | if (restore_job_keys.empty()) return 0; |
4907 | 1 | DORIS_CLOUD_DEFER { |
4908 | 1 | restore_job_keys.clear(); |
4909 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEvENKUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 4907 | 1 | DORIS_CLOUD_DEFER { | 4908 | 1 | restore_job_keys.clear(); | 4909 | 1 | }; |
|
4910 | | |
4911 | 1 | std::unique_ptr<Transaction> txn; |
4912 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
4913 | 1 | if (err != TxnErrorCode::TXN_OK) { |
4914 | 0 | LOG_WARNING("failed to recycle restore job") |
4915 | 0 | .tag("err", err) |
4916 | 0 | .tag("instance_id", instance_id_) |
4917 | 0 | .tag("reason", "failed to create txn"); |
4918 | 0 | return -1; |
4919 | 0 | } |
4920 | 20 | for (auto& k : restore_job_keys) { |
4921 | 20 | txn->remove(k); |
4922 | 20 | } |
4923 | 1 | err = txn->commit(); |
4924 | 1 | if (err != TxnErrorCode::TXN_OK) { |
4925 | 0 | LOG_WARNING("failed to recycle restore job") |
4926 | 0 | .tag("err", err) |
4927 | 0 | .tag("instance_id", instance_id_) |
4928 | 0 | .tag("reason", "failed to commit txn"); |
4929 | 0 | return -1; |
4930 | 0 | } |
4931 | 1 | return 0; |
4932 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEv Line | Count | Source | 4905 | 3 | auto loop_done = [&restore_job_keys, this]() -> int { | 4906 | 3 | if (restore_job_keys.empty()) return 0; | 4907 | 1 | DORIS_CLOUD_DEFER { | 4908 | 1 | restore_job_keys.clear(); | 4909 | 1 | }; | 4910 | | | 4911 | 1 | std::unique_ptr<Transaction> txn; | 4912 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 4913 | 1 | if (err != TxnErrorCode::TXN_OK) { | 4914 | 0 | LOG_WARNING("failed to recycle restore job") | 4915 | 0 | .tag("err", err) | 4916 | 0 | .tag("instance_id", instance_id_) | 4917 | 0 | .tag("reason", "failed to create txn"); | 4918 | 0 | return -1; | 4919 | 0 | } | 4920 | 20 | for (auto& k : restore_job_keys) { | 4921 | 20 | txn->remove(k); | 4922 | 20 | } | 4923 | 1 | err = txn->commit(); | 4924 | 1 | if (err != TxnErrorCode::TXN_OK) { | 4925 | 0 | LOG_WARNING("failed to recycle restore job") | 4926 | 0 | .tag("err", err) | 4927 | 0 | .tag("instance_id", instance_id_) | 4928 | 0 | .tag("reason", "failed to commit txn"); | 4929 | 0 | return -1; | 4930 | 0 | } | 4931 | 1 | return 0; | 4932 | 1 | }; |
|
4933 | | |
4934 | 13 | if (config::enable_recycler_stats_metrics) { |
4935 | 0 | scan_and_statistics_restore_jobs(); |
4936 | 0 | } |
4937 | | |
4938 | 13 | return scan_and_recycle(restore_job_key0, restore_job_key1, std::move(recycle_func), |
4939 | 13 | std::move(loop_done)); |
4940 | 13 | } |
4941 | | |
4942 | 8 | int InstanceRecycler::recycle_versioned_rowsets() { |
4943 | 8 | const std::string task_name = "recycle_rowsets"; |
4944 | 8 | int64_t num_scanned = 0; |
4945 | 8 | int64_t num_expired = 0; |
4946 | 8 | int64_t num_prepare = 0; |
4947 | 8 | int64_t num_compacted = 0; |
4948 | 8 | int64_t num_empty_rowset = 0; |
4949 | 8 | size_t total_rowset_key_size = 0; |
4950 | 8 | size_t total_rowset_value_size = 0; |
4951 | 8 | size_t expired_rowset_size = 0; |
4952 | 8 | std::atomic_long num_recycled = 0; |
4953 | 8 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4954 | | |
4955 | 8 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
4956 | 8 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
4957 | 8 | std::string recyc_rs_key0; |
4958 | 8 | std::string recyc_rs_key1; |
4959 | 8 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
4960 | 8 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
4961 | | |
4962 | 8 | LOG_WARNING("begin to recycle rowsets").tag("instance_id", instance_id_); |
4963 | | |
4964 | 8 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4965 | 8 | register_recycle_task(task_name, start_time); |
4966 | | |
4967 | 8 | DORIS_CLOUD_DEFER { |
4968 | 8 | unregister_recycle_task(task_name); |
4969 | 8 | int64_t cost = |
4970 | 8 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4971 | 8 | metrics_context.finish_report(); |
4972 | 8 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) |
4973 | 8 | .tag("instance_id", instance_id_) |
4974 | 8 | .tag("num_scanned", num_scanned) |
4975 | 8 | .tag("num_expired", num_expired) |
4976 | 8 | .tag("num_recycled", num_recycled) |
4977 | 8 | .tag("num_recycled.prepare", num_prepare) |
4978 | 8 | .tag("num_recycled.compacted", num_compacted) |
4979 | 8 | .tag("num_recycled.empty_rowset", num_empty_rowset) |
4980 | 8 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
4981 | 8 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
4982 | 8 | .tag("expired_rowset_meta_size", expired_rowset_size); |
4983 | 8 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_0clEv Line | Count | Source | 4967 | 8 | DORIS_CLOUD_DEFER { | 4968 | 8 | unregister_recycle_task(task_name); | 4969 | 8 | int64_t cost = | 4970 | 8 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4971 | 8 | metrics_context.finish_report(); | 4972 | 8 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4973 | 8 | .tag("instance_id", instance_id_) | 4974 | 8 | .tag("num_scanned", num_scanned) | 4975 | 8 | .tag("num_expired", num_expired) | 4976 | 8 | .tag("num_recycled", num_recycled) | 4977 | 8 | .tag("num_recycled.prepare", num_prepare) | 4978 | 8 | .tag("num_recycled.compacted", num_compacted) | 4979 | 8 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4980 | 8 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4981 | 8 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4982 | 8 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4983 | 8 | }; |
|
4984 | | |
4985 | 8 | std::vector<std::string> orphan_rowset_keys; |
4986 | | |
4987 | | // Store keys of rowset recycled by background workers |
4988 | 8 | std::mutex async_recycled_rowset_keys_mutex; |
4989 | 8 | std::vector<std::string> async_recycled_rowset_keys; |
4990 | 8 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
4991 | 8 | config::instance_recycler_worker_pool_size, "recycle_rowsets"); |
4992 | 8 | worker_pool->start(); |
4993 | 8 | auto delete_rowset_data_by_prefix = [&](std::string key, const std::string& resource_id, |
4994 | 200 | int64_t tablet_id, const std::string& rowset_id) { |
4995 | | // Try to delete rowset data in background thread |
4996 | 200 | int ret = worker_pool->submit_with_timeout( |
4997 | 200 | [&, resource_id, tablet_id, rowset_id, key]() mutable { |
4998 | 200 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
4999 | 200 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
5000 | 200 | return; |
5001 | 200 | } |
5002 | | // The async recycled rowsets are staled format or has not been used, |
5003 | | // so we don't need to check the rowset ref count key. |
5004 | 0 | std::vector<std::string> keys; |
5005 | 0 | { |
5006 | 0 | std::lock_guard lock(async_recycled_rowset_keys_mutex); |
5007 | 0 | async_recycled_rowset_keys.push_back(std::move(key)); |
5008 | 0 | if (async_recycled_rowset_keys.size() > 100) { |
5009 | 0 | keys.swap(async_recycled_rowset_keys); |
5010 | 0 | } |
5011 | 0 | } |
5012 | 0 | if (keys.empty()) return; |
5013 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { |
5014 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" |
5015 | 0 | << instance_id_; |
5016 | 0 | } else { |
5017 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); |
5018 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, |
5019 | 0 | num_recycled, start_time); |
5020 | 0 | } |
5021 | 0 | }, Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv Line | Count | Source | 4997 | 200 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4998 | 200 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4999 | 200 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 5000 | 200 | return; | 5001 | 200 | } | 5002 | | // The async recycled rowsets are staled format or has not been used, | 5003 | | // so we don't need to check the rowset ref count key. | 5004 | 0 | std::vector<std::string> keys; | 5005 | 0 | { | 5006 | 0 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 5007 | 0 | async_recycled_rowset_keys.push_back(std::move(key)); | 5008 | 0 | if (async_recycled_rowset_keys.size() > 100) { | 5009 | 0 | keys.swap(async_recycled_rowset_keys); | 5010 | 0 | } | 5011 | 0 | } | 5012 | 0 | if (keys.empty()) return; | 5013 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 5014 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 5015 | 0 | << instance_id_; | 5016 | 0 | } else { | 5017 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 5018 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 5019 | 0 | num_recycled, start_time); | 5020 | 0 | } | 5021 | 0 | }, |
|
5022 | 200 | 0); |
5023 | 200 | if (ret == 0) return 0; |
5024 | | // Submit task failed, delete rowset data in current thread |
5025 | 0 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
5026 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
5027 | 0 | return -1; |
5028 | 0 | } |
5029 | 0 | orphan_rowset_keys.push_back(std::move(key)); |
5030 | 0 | return 0; |
5031 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ Line | Count | Source | 4994 | 200 | int64_t tablet_id, const std::string& rowset_id) { | 4995 | | // Try to delete rowset data in background thread | 4996 | 200 | int ret = worker_pool->submit_with_timeout( | 4997 | 200 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4998 | 200 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4999 | 200 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 5000 | 200 | return; | 5001 | 200 | } | 5002 | | // The async recycled rowsets are staled format or has not been used, | 5003 | | // so we don't need to check the rowset ref count key. | 5004 | 200 | std::vector<std::string> keys; | 5005 | 200 | { | 5006 | 200 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 5007 | 200 | async_recycled_rowset_keys.push_back(std::move(key)); | 5008 | 200 | if (async_recycled_rowset_keys.size() > 100) { | 5009 | 200 | keys.swap(async_recycled_rowset_keys); | 5010 | 200 | } | 5011 | 200 | } | 5012 | 200 | if (keys.empty()) return; | 5013 | 200 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 5014 | 200 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 5015 | 200 | << instance_id_; | 5016 | 200 | } else { | 5017 | 200 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 5018 | 200 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 5019 | 200 | num_recycled, start_time); | 5020 | 200 | } | 5021 | 200 | }, | 5022 | 200 | 0); | 5023 | 200 | if (ret == 0) return 0; | 5024 | | // Submit task failed, delete rowset data in current thread | 5025 | 0 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 5026 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 5027 | 0 | return -1; | 5028 | 0 | } | 5029 | 0 | orphan_rowset_keys.push_back(std::move(key)); | 5030 | 0 | return 0; | 5031 | 0 | }; |
|
5032 | | |
5033 | 8 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5034 | | |
5035 | 1.01k | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { |
5036 | 1.01k | ++num_scanned; |
5037 | 1.01k | total_rowset_key_size += k.size(); |
5038 | 1.01k | total_rowset_value_size += v.size(); |
5039 | 1.01k | RecycleRowsetPB rowset; |
5040 | 1.01k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
5041 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
5042 | 0 | return -1; |
5043 | 0 | } |
5044 | | |
5045 | 1.01k | int final_expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
5046 | | |
5047 | 1.01k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
5048 | 0 | << " num_expired=" << num_expired << " expiration=" << final_expiration |
5049 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); |
5050 | 1.01k | int64_t current_time = ::time(nullptr); |
5051 | 1.01k | if (current_time < final_expiration) { // not expired |
5052 | 0 | return 0; |
5053 | 0 | } |
5054 | 1.01k | ++num_expired; |
5055 | 1.01k | expired_rowset_size += v.size(); |
5056 | 1.01k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` |
5057 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible |
5058 | | // in old version, keep this key-value pair and it needs to be checked manually |
5059 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
5060 | 0 | return -1; |
5061 | 0 | } |
5062 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { |
5063 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
5064 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
5065 | 0 | << hex(k) << " value=" << proto_to_json(rowset); |
5066 | 0 | orphan_rowset_keys.emplace_back(k); |
5067 | 0 | return -1; |
5068 | 0 | } |
5069 | | // decode rowset_id |
5070 | 0 | auto k1 = k; |
5071 | 0 | k1.remove_prefix(1); |
5072 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5073 | 0 | decode_key(&k1, &out); |
5074 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
5075 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
5076 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5077 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id; |
5078 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), |
5079 | 0 | rowset.tablet_id(), rowset_id) != 0) { |
5080 | 0 | return -1; |
5081 | 0 | } |
5082 | 0 | return 0; |
5083 | 0 | } |
5084 | | // TODO(plat1ko): check rowset not referenced |
5085 | 1.01k | auto rowset_meta = rowset.mutable_rowset_meta(); |
5086 | 1.01k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible |
5087 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { |
5088 | 0 | LOG_INFO("recycle rowset that has empty resource id"); |
5089 | 0 | } else { |
5090 | | // other situations, keep this key-value pair and it needs to be checked manually |
5091 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
5092 | 0 | return -1; |
5093 | 0 | } |
5094 | 0 | } |
5095 | 1.01k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5096 | 1.01k | << " tablet_id=" << rowset_meta->tablet_id() |
5097 | 1.01k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" |
5098 | 1.01k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
5099 | 1.01k | << "] txn_id=" << rowset_meta->txn_id() |
5100 | 1.01k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) |
5101 | 1.01k | << " rowset_meta_size=" << v.size() |
5102 | 1.01k | << " creation_time=" << rowset_meta->creation_time(); |
5103 | 1.01k | if (rowset.type() == RecycleRowsetPB::PREPARE) { |
5104 | | // unable to calculate file path, can only be deleted by rowset id prefix |
5105 | 200 | num_prepare += 1; |
5106 | 200 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), |
5107 | 200 | rowset_meta->tablet_id(), |
5108 | 200 | rowset_meta->rowset_id_v2()) != 0) { |
5109 | 0 | return -1; |
5110 | 0 | } |
5111 | 813 | } else { |
5112 | 813 | bool is_compacted = rowset.type() == RecycleRowsetPB::COMPACT; |
5113 | 813 | worker_pool->submit( |
5114 | 813 | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { |
5115 | 813 | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { |
5116 | 800 | return; |
5117 | 800 | } |
5118 | 13 | num_compacted += is_compacted; |
5119 | 13 | num_recycled.fetch_add(1, std::memory_order_relaxed); |
5120 | 13 | if (rowset_meta.num_segments() == 0) { |
5121 | 0 | ++num_empty_rowset; |
5122 | 0 | } |
5123 | 13 | }); Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ENKUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ENKUlvE_clEv Line | Count | Source | 5114 | 813 | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { | 5115 | 813 | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { | 5116 | 800 | return; | 5117 | 800 | } | 5118 | 13 | num_compacted += is_compacted; | 5119 | 13 | num_recycled.fetch_add(1, std::memory_order_relaxed); | 5120 | 13 | if (rowset_meta.num_segments() == 0) { | 5121 | 0 | ++num_empty_rowset; | 5122 | 0 | } | 5123 | 13 | }); |
|
5124 | 813 | } |
5125 | 1.01k | return 0; |
5126 | 1.01k | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5035 | 1.01k | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5036 | 1.01k | ++num_scanned; | 5037 | 1.01k | total_rowset_key_size += k.size(); | 5038 | 1.01k | total_rowset_value_size += v.size(); | 5039 | 1.01k | RecycleRowsetPB rowset; | 5040 | 1.01k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5041 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 5042 | 0 | return -1; | 5043 | 0 | } | 5044 | | | 5045 | 1.01k | int final_expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5046 | | | 5047 | 1.01k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5048 | 0 | << " num_expired=" << num_expired << " expiration=" << final_expiration | 5049 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 5050 | 1.01k | int64_t current_time = ::time(nullptr); | 5051 | 1.01k | if (current_time < final_expiration) { // not expired | 5052 | 0 | return 0; | 5053 | 0 | } | 5054 | 1.01k | ++num_expired; | 5055 | 1.01k | expired_rowset_size += v.size(); | 5056 | 1.01k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 5057 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 5058 | | // in old version, keep this key-value pair and it needs to be checked manually | 5059 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 5060 | 0 | return -1; | 5061 | 0 | } | 5062 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { | 5063 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 5064 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 5065 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 5066 | 0 | orphan_rowset_keys.emplace_back(k); | 5067 | 0 | return -1; | 5068 | 0 | } | 5069 | | // decode rowset_id | 5070 | 0 | auto k1 = k; | 5071 | 0 | k1.remove_prefix(1); | 5072 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5073 | 0 | decode_key(&k1, &out); | 5074 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 5075 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 5076 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5077 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id; | 5078 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 5079 | 0 | rowset.tablet_id(), rowset_id) != 0) { | 5080 | 0 | return -1; | 5081 | 0 | } | 5082 | 0 | return 0; | 5083 | 0 | } | 5084 | | // TODO(plat1ko): check rowset not referenced | 5085 | 1.01k | auto rowset_meta = rowset.mutable_rowset_meta(); | 5086 | 1.01k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 5087 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 5088 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 5089 | 0 | } else { | 5090 | | // other situations, keep this key-value pair and it needs to be checked manually | 5091 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 5092 | 0 | return -1; | 5093 | 0 | } | 5094 | 0 | } | 5095 | 1.01k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5096 | 1.01k | << " tablet_id=" << rowset_meta->tablet_id() | 5097 | 1.01k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 5098 | 1.01k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 5099 | 1.01k | << "] txn_id=" << rowset_meta->txn_id() | 5100 | 1.01k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 5101 | 1.01k | << " rowset_meta_size=" << v.size() | 5102 | 1.01k | << " creation_time=" << rowset_meta->creation_time(); | 5103 | 1.01k | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 5104 | | // unable to calculate file path, can only be deleted by rowset id prefix | 5105 | 200 | num_prepare += 1; | 5106 | 200 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 5107 | 200 | rowset_meta->tablet_id(), | 5108 | 200 | rowset_meta->rowset_id_v2()) != 0) { | 5109 | 0 | return -1; | 5110 | 0 | } | 5111 | 813 | } else { | 5112 | 813 | bool is_compacted = rowset.type() == RecycleRowsetPB::COMPACT; | 5113 | 813 | worker_pool->submit( | 5114 | 813 | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { | 5115 | 813 | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { | 5116 | 813 | return; | 5117 | 813 | } | 5118 | 813 | num_compacted += is_compacted; | 5119 | 813 | num_recycled.fetch_add(1, std::memory_order_relaxed); | 5120 | 813 | if (rowset_meta.num_segments() == 0) { | 5121 | 813 | ++num_empty_rowset; | 5122 | 813 | } | 5123 | 813 | }); | 5124 | 813 | } | 5125 | 1.01k | return 0; | 5126 | 1.01k | }; |
|
5127 | | |
5128 | 8 | if (config::enable_recycler_stats_metrics) { |
5129 | 0 | scan_and_statistics_rowsets(); |
5130 | 0 | } |
5131 | | |
5132 | 8 | auto loop_done = [&]() -> int { |
5133 | 5 | if (txn_remove(txn_kv_.get(), orphan_rowset_keys)) { |
5134 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
5135 | 0 | } |
5136 | 5 | orphan_rowset_keys.clear(); |
5137 | 5 | return 0; |
5138 | 5 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_2clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_2clEv Line | Count | Source | 5132 | 5 | auto loop_done = [&]() -> int { | 5133 | 5 | if (txn_remove(txn_kv_.get(), orphan_rowset_keys)) { | 5134 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 5135 | 0 | } | 5136 | 5 | orphan_rowset_keys.clear(); | 5137 | 5 | return 0; | 5138 | 5 | }; |
|
5139 | | |
5140 | | // recycle_func and loop_done for scan and recycle |
5141 | 8 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv), |
5142 | 8 | std::move(loop_done)); |
5143 | | |
5144 | 8 | worker_pool->stop(); |
5145 | | |
5146 | 8 | if (!async_recycled_rowset_keys.empty()) { |
5147 | 0 | if (txn_remove(txn_kv_.get(), async_recycled_rowset_keys) != 0) { |
5148 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
5149 | 0 | return -1; |
5150 | 0 | } else { |
5151 | 0 | num_recycled.fetch_add(async_recycled_rowset_keys.size(), std::memory_order_relaxed); |
5152 | 0 | } |
5153 | 0 | } |
5154 | 8 | return ret; |
5155 | 8 | } |
5156 | | |
5157 | | int InstanceRecycler::recycle_rowset_meta_and_data(std::string_view recycle_rowset_key, |
5158 | | const RowsetMetaCloudPB& rowset_meta, |
5159 | 813 | std::string_view non_versioned_rowset_key) { |
5160 | 813 | constexpr int MAX_RETRY = 10; |
5161 | 813 | int64_t tablet_id = rowset_meta.tablet_id(); |
5162 | 813 | const std::string& rowset_id = rowset_meta.rowset_id_v2(); |
5163 | 813 | std::string_view reference_instance_id = instance_id_; |
5164 | 813 | if (rowset_meta.has_reference_instance_id()) { |
5165 | 8 | reference_instance_id = rowset_meta.reference_instance_id(); |
5166 | 8 | } |
5167 | | |
5168 | 813 | AnnotateTag tablet_id_tag("tablet_id", tablet_id); |
5169 | 813 | AnnotateTag rowset_id_tag("rowset_id", rowset_id); |
5170 | 813 | AnnotateTag rowset_key_tag("recycle_rowset_key", hex(recycle_rowset_key)); |
5171 | 813 | AnnotateTag instance_id_tag("instance_id", instance_id_); |
5172 | 813 | AnnotateTag ref_instance_id_tag("ref_instance_id", reference_instance_id); |
5173 | 813 | for (int i = 0; i < MAX_RETRY; ++i) { |
5174 | 813 | std::unique_ptr<Transaction> txn; |
5175 | 813 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5176 | 813 | if (err != TxnErrorCode::TXN_OK) { |
5177 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
5178 | 0 | return -1; |
5179 | 0 | } |
5180 | | |
5181 | 813 | std::string rowset_ref_count_key = |
5182 | 813 | versioned::data_rowset_ref_count_key({reference_instance_id, tablet_id, rowset_id}); |
5183 | 813 | int64_t ref_count = 0; |
5184 | 813 | { |
5185 | 813 | std::string value; |
5186 | 813 | TxnErrorCode err = txn->get(rowset_ref_count_key, &value); |
5187 | 813 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
5188 | | // This is the old version rowset, we could recycle it directly. |
5189 | 802 | ref_count = 1; |
5190 | 802 | } else if (err != TxnErrorCode::TXN_OK) { |
5191 | 0 | LOG_WARNING("failed to get rowset ref count key").tag("err", err); |
5192 | 0 | return -1; |
5193 | 11 | } else if (!txn->decode_atomic_int(value, &ref_count)) { |
5194 | 0 | LOG_WARNING("failed to decode rowset data ref count").tag("value", hex(value)); |
5195 | 0 | return -1; |
5196 | 0 | } |
5197 | 813 | } |
5198 | | |
5199 | 813 | if (ref_count == 1) { |
5200 | | // It would not be added since it is recycling. |
5201 | 810 | if (delete_rowset_data(rowset_meta) != 0) { |
5202 | 800 | LOG_WARNING("failed to delete rowset data"); |
5203 | 800 | return -1; |
5204 | 800 | } |
5205 | | |
5206 | | // Reset the transaction to avoid timeout. |
5207 | 10 | err = txn_kv_->create_txn(&txn); |
5208 | 10 | if (err != TxnErrorCode::TXN_OK) { |
5209 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
5210 | 0 | return -1; |
5211 | 0 | } |
5212 | 10 | txn->remove(rowset_ref_count_key); |
5213 | 10 | LOG_INFO("delete rowset data ref count key") |
5214 | 10 | .tag("txn_id", rowset_meta.txn_id()) |
5215 | 10 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
5216 | | |
5217 | 10 | std::string dbm_start_key = |
5218 | 10 | meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id, 0, 0}); |
5219 | 10 | std::string dbm_end_key = meta_delete_bitmap_key( |
5220 | 10 | {reference_instance_id, tablet_id, rowset_id, |
5221 | 10 | std::numeric_limits<int64_t>::max(), std::numeric_limits<int64_t>::max()}); |
5222 | 10 | txn->remove(dbm_start_key, dbm_end_key); |
5223 | 10 | LOG_INFO("remove delete bitmap kv") |
5224 | 10 | .tag("begin", hex(dbm_start_key)) |
5225 | 10 | .tag("end", hex(dbm_end_key)); |
5226 | | |
5227 | 10 | std::string versioned_dbm_start_key = versioned::meta_delete_bitmap_key( |
5228 | 10 | {reference_instance_id, tablet_id, rowset_id}); |
5229 | 10 | std::string versioned_dbm_end_key = versioned_dbm_start_key; |
5230 | 10 | encode_int64(INT64_MAX, &versioned_dbm_end_key); |
5231 | 10 | txn->remove(versioned_dbm_start_key, versioned_dbm_end_key); |
5232 | 10 | LOG_INFO("remove versioned delete bitmap kv") |
5233 | 10 | .tag("begin", hex(versioned_dbm_start_key)) |
5234 | 10 | .tag("end", hex(versioned_dbm_end_key)); |
5235 | | |
5236 | 10 | std::string meta_rowset_key_begin = |
5237 | 10 | versioned::meta_rowset_key({reference_instance_id, tablet_id, rowset_id}); |
5238 | 10 | std::string meta_rowset_key_end = meta_rowset_key_begin; |
5239 | 10 | encode_int64(INT64_MAX, &meta_rowset_key_end); |
5240 | 10 | txn->remove(meta_rowset_key_begin, meta_rowset_key_end); |
5241 | 10 | LOG_INFO("remove meta rowset key").tag("key", hex(meta_rowset_key_begin)); |
5242 | 10 | } else { |
5243 | | // Decrease the rowset ref count. |
5244 | | // |
5245 | | // The read conflict range will protect the rowset ref count key, if any conflict happens, |
5246 | | // we will retry and check whether the rowset ref count is 1 and the data need to be deleted. |
5247 | 3 | txn->atomic_add(rowset_ref_count_key, -1); |
5248 | 3 | LOG_INFO("decrease rowset data ref count") |
5249 | 3 | .tag("txn_id", rowset_meta.txn_id()) |
5250 | 3 | .tag("ref_count", ref_count - 1) |
5251 | 3 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
5252 | 3 | } |
5253 | | |
5254 | 13 | if (!recycle_rowset_key.empty()) { // empty when recycle ref rowsets for deleted instance |
5255 | 13 | txn->remove(recycle_rowset_key); |
5256 | 13 | LOG_INFO("remove recycle rowset key").tag("key", hex(recycle_rowset_key)); |
5257 | 13 | } |
5258 | 13 | if (!non_versioned_rowset_key.empty()) { |
5259 | 0 | txn->remove(non_versioned_rowset_key); |
5260 | 0 | LOG_INFO("remove non versioned rowset key").tag("key", hex(non_versioned_rowset_key)); |
5261 | 0 | } |
5262 | | |
5263 | 13 | err = txn->commit(); |
5264 | 13 | if (err == TxnErrorCode::TXN_CONFLICT) { // unlikely |
5265 | | // The rowset ref count key has been changed, we need to retry. |
5266 | 0 | VLOG_DEBUG << "decrease rowset ref count but txn conflict, retry" |
5267 | 0 | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id |
5268 | 0 | << ", ref_count=" << ref_count << ", retry=" << i; |
5269 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
5270 | 0 | continue; |
5271 | 13 | } else if (err != TxnErrorCode::TXN_OK) { |
5272 | 0 | LOG_WARNING("failed to recycle rowset meta and data").tag("err", err); |
5273 | 0 | return -1; |
5274 | 0 | } |
5275 | 13 | LOG_INFO("recycle rowset meta and data success"); |
5276 | 13 | return 0; |
5277 | 13 | } |
5278 | 0 | LOG_WARNING("failed to recycle rowset meta and data after retry") |
5279 | 0 | .tag("tablet_id", tablet_id) |
5280 | 0 | .tag("rowset_id", rowset_id) |
5281 | 0 | .tag("retry", MAX_RETRY); |
5282 | 0 | return -1; |
5283 | 813 | } |
5284 | | |
5285 | 29 | int InstanceRecycler::recycle_tmp_rowsets() { |
5286 | 29 | const std::string task_name = "recycle_tmp_rowsets"; |
5287 | 29 | int64_t num_scanned = 0; |
5288 | 29 | int64_t num_expired = 0; |
5289 | 29 | std::atomic_long num_recycled = 0; |
5290 | 29 | size_t expired_rowset_size = 0; |
5291 | 29 | size_t total_rowset_key_size = 0; |
5292 | 29 | size_t total_rowset_value_size = 0; |
5293 | 29 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5294 | | |
5295 | 29 | MetaRowsetTmpKeyInfo tmp_rs_key_info0 {instance_id_, 0, 0}; |
5296 | 29 | MetaRowsetTmpKeyInfo tmp_rs_key_info1 {instance_id_, INT64_MAX, 0}; |
5297 | 29 | std::string tmp_rs_key0; |
5298 | 29 | std::string tmp_rs_key1; |
5299 | 29 | meta_rowset_tmp_key(tmp_rs_key_info0, &tmp_rs_key0); |
5300 | 29 | meta_rowset_tmp_key(tmp_rs_key_info1, &tmp_rs_key1); |
5301 | | |
5302 | 29 | LOG_WARNING("begin to recycle tmp rowsets").tag("instance_id", instance_id_); |
5303 | | |
5304 | 29 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5305 | 29 | register_recycle_task(task_name, start_time); |
5306 | | |
5307 | 29 | DORIS_CLOUD_DEFER { |
5308 | 29 | unregister_recycle_task(task_name); |
5309 | 29 | int64_t cost = |
5310 | 29 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5311 | 29 | metrics_context.finish_report(); |
5312 | 29 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) |
5313 | 29 | .tag("instance_id", instance_id_) |
5314 | 29 | .tag("num_scanned", num_scanned) |
5315 | 29 | .tag("num_expired", num_expired) |
5316 | 29 | .tag("num_recycled", num_recycled) |
5317 | 29 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
5318 | 29 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
5319 | 29 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); |
5320 | 29 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_0clEv Line | Count | Source | 5307 | 12 | DORIS_CLOUD_DEFER { | 5308 | 12 | unregister_recycle_task(task_name); | 5309 | 12 | int64_t cost = | 5310 | 12 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5311 | 12 | metrics_context.finish_report(); | 5312 | 12 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) | 5313 | 12 | .tag("instance_id", instance_id_) | 5314 | 12 | .tag("num_scanned", num_scanned) | 5315 | 12 | .tag("num_expired", num_expired) | 5316 | 12 | .tag("num_recycled", num_recycled) | 5317 | 12 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 5318 | 12 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 5319 | 12 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); | 5320 | 12 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_0clEv Line | Count | Source | 5307 | 17 | DORIS_CLOUD_DEFER { | 5308 | 17 | unregister_recycle_task(task_name); | 5309 | 17 | int64_t cost = | 5310 | 17 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5311 | 17 | metrics_context.finish_report(); | 5312 | 17 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) | 5313 | 17 | .tag("instance_id", instance_id_) | 5314 | 17 | .tag("num_scanned", num_scanned) | 5315 | 17 | .tag("num_expired", num_expired) | 5316 | 17 | .tag("num_recycled", num_recycled) | 5317 | 17 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 5318 | 17 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 5319 | 17 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); | 5320 | 17 | }; |
|
5321 | | |
5322 | | // Elements in `tmp_rowset_keys` has the same lifetime as `it` |
5323 | | |
5324 | 29 | std::vector<std::string> tmp_rowset_keys; |
5325 | 29 | std::vector<std::string> tmp_rowset_ref_count_keys; |
5326 | | |
5327 | | // rowset_id -> rowset_meta |
5328 | | // store tmp_rowset id and meta for statistics rs size when delete |
5329 | 29 | std::map<std::string, doris::RowsetMetaCloudPB> tmp_rowsets; |
5330 | 29 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
5331 | 29 | config::instance_recycler_worker_pool_size, "recycle_tmp_rowsets"); |
5332 | 29 | worker_pool->start(); |
5333 | | |
5334 | 29 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5335 | | |
5336 | 29 | auto handle_rowset_kv = [&num_scanned, &num_expired, &tmp_rowset_keys, &tmp_rowsets, |
5337 | 29 | &expired_rowset_size, &total_rowset_key_size, &total_rowset_value_size, |
5338 | 29 | &earlest_ts, &tmp_rowset_ref_count_keys, this, |
5339 | 102k | &metrics_context](std::string_view k, std::string_view v) -> int { |
5340 | 102k | ++num_scanned; |
5341 | 102k | total_rowset_key_size += k.size(); |
5342 | 102k | total_rowset_value_size += v.size(); |
5343 | 102k | doris::RowsetMetaCloudPB rowset; |
5344 | 102k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
5345 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); |
5346 | 0 | return -1; |
5347 | 0 | } |
5348 | 102k | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
5349 | 102k | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
5350 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration |
5351 | 0 | << " txn_expiration=" << rowset.txn_expiration() |
5352 | 0 | << " rowset_creation_time=" << rowset.creation_time(); |
5353 | 102k | int64_t current_time = ::time(nullptr); |
5354 | 102k | if (current_time < expiration) { // not expired |
5355 | 0 | return 0; |
5356 | 0 | } |
5357 | | |
5358 | 102k | if (config::enable_mark_delete_rowset_before_recycle) { |
5359 | 102k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); |
5360 | 102k | if (mark_ret == -1) { |
5361 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ |
5362 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" |
5363 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5364 | 0 | return -1; |
5365 | 102k | } else if (mark_ret == 1) { |
5366 | 51.0k | LOG(INFO) |
5367 | 51.0k | << "rowset already marked as recycled, recycler will delete data and kv at " |
5368 | 51.0k | "next turn, instance_id=" |
5369 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5370 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5371 | 51.0k | return 0; |
5372 | 51.0k | } |
5373 | 102k | } |
5374 | | |
5375 | 51.0k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { |
5376 | 51.0k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" |
5377 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5378 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5379 | | |
5380 | 51.0k | int ret = abort_txn_or_job_for_recycle(rowset); |
5381 | 51.0k | if (ret != 0) { |
5382 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" |
5383 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5384 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5385 | 0 | return ret; |
5386 | 0 | } |
5387 | 51.0k | } |
5388 | | |
5389 | 51.0k | ++num_expired; |
5390 | 51.0k | expired_rowset_size += v.size(); |
5391 | 51.0k | if (!rowset.has_resource_id()) { |
5392 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible |
5393 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); |
5394 | 0 | return -1; |
5395 | 0 | } |
5396 | | // might be a delete pred rowset |
5397 | 0 | tmp_rowset_keys.emplace_back(k); |
5398 | 0 | return 0; |
5399 | 0 | } |
5400 | | // TODO(plat1ko): check rowset not referenced |
5401 | 51.0k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5402 | 51.0k | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() |
5403 | 51.0k | << " version=[" << rowset.start_version() << '-' << rowset.end_version() |
5404 | 51.0k | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() |
5405 | 51.0k | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned |
5406 | 51.0k | << " num_expired=" << num_expired |
5407 | 51.0k | << " task_type=" << metrics_context.operation_type; |
5408 | | |
5409 | 51.0k | tmp_rowset_keys.emplace_back(k.data(), k.size()); |
5410 | | // Remove the rowset ref count key directly since it has not been used. |
5411 | 51.0k | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( |
5412 | 51.0k | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); |
5413 | 51.0k | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ |
5414 | 51.0k | << "key=" << hex(rowset_ref_count_key); |
5415 | 51.0k | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); |
5416 | | |
5417 | 51.0k | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); |
5418 | 51.0k | return 0; |
5419 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5339 | 16 | &metrics_context](std::string_view k, std::string_view v) -> int { | 5340 | 16 | ++num_scanned; | 5341 | 16 | total_rowset_key_size += k.size(); | 5342 | 16 | total_rowset_value_size += v.size(); | 5343 | 16 | doris::RowsetMetaCloudPB rowset; | 5344 | 16 | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5345 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); | 5346 | 0 | return -1; | 5347 | 0 | } | 5348 | 16 | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5349 | 16 | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5350 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 5351 | 0 | << " txn_expiration=" << rowset.txn_expiration() | 5352 | 0 | << " rowset_creation_time=" << rowset.creation_time(); | 5353 | 16 | int64_t current_time = ::time(nullptr); | 5354 | 16 | if (current_time < expiration) { // not expired | 5355 | 0 | return 0; | 5356 | 0 | } | 5357 | | | 5358 | 16 | if (config::enable_mark_delete_rowset_before_recycle) { | 5359 | 16 | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 5360 | 16 | if (mark_ret == -1) { | 5361 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 5362 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" | 5363 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5364 | 0 | return -1; | 5365 | 16 | } else if (mark_ret == 1) { | 5366 | 9 | LOG(INFO) | 5367 | 9 | << "rowset already marked as recycled, recycler will delete data and kv at " | 5368 | 9 | "next turn, instance_id=" | 5369 | 9 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5370 | 9 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5371 | 9 | return 0; | 5372 | 9 | } | 5373 | 16 | } | 5374 | | | 5375 | 7 | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 5376 | 7 | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 5377 | 7 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5378 | 7 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5379 | | | 5380 | 7 | int ret = abort_txn_or_job_for_recycle(rowset); | 5381 | 7 | if (ret != 0) { | 5382 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 5383 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5384 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5385 | 0 | return ret; | 5386 | 0 | } | 5387 | 7 | } | 5388 | | | 5389 | 7 | ++num_expired; | 5390 | 7 | expired_rowset_size += v.size(); | 5391 | 7 | if (!rowset.has_resource_id()) { | 5392 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible | 5393 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); | 5394 | 0 | return -1; | 5395 | 0 | } | 5396 | | // might be a delete pred rowset | 5397 | 0 | tmp_rowset_keys.emplace_back(k); | 5398 | 0 | return 0; | 5399 | 0 | } | 5400 | | // TODO(plat1ko): check rowset not referenced | 5401 | 7 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5402 | 7 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() | 5403 | 7 | << " version=[" << rowset.start_version() << '-' << rowset.end_version() | 5404 | 7 | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() | 5405 | 7 | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned | 5406 | 7 | << " num_expired=" << num_expired | 5407 | 7 | << " task_type=" << metrics_context.operation_type; | 5408 | | | 5409 | 7 | tmp_rowset_keys.emplace_back(k.data(), k.size()); | 5410 | | // Remove the rowset ref count key directly since it has not been used. | 5411 | 7 | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( | 5412 | 7 | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); | 5413 | 7 | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ | 5414 | 7 | << "key=" << hex(rowset_ref_count_key); | 5415 | 7 | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); | 5416 | | | 5417 | 7 | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); | 5418 | 7 | return 0; | 5419 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5339 | 102k | &metrics_context](std::string_view k, std::string_view v) -> int { | 5340 | 102k | ++num_scanned; | 5341 | 102k | total_rowset_key_size += k.size(); | 5342 | 102k | total_rowset_value_size += v.size(); | 5343 | 102k | doris::RowsetMetaCloudPB rowset; | 5344 | 102k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5345 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); | 5346 | 0 | return -1; | 5347 | 0 | } | 5348 | 102k | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5349 | 102k | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5350 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 5351 | 0 | << " txn_expiration=" << rowset.txn_expiration() | 5352 | 0 | << " rowset_creation_time=" << rowset.creation_time(); | 5353 | 102k | int64_t current_time = ::time(nullptr); | 5354 | 102k | if (current_time < expiration) { // not expired | 5355 | 0 | return 0; | 5356 | 0 | } | 5357 | | | 5358 | 102k | if (config::enable_mark_delete_rowset_before_recycle) { | 5359 | 102k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 5360 | 102k | if (mark_ret == -1) { | 5361 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 5362 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" | 5363 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5364 | 0 | return -1; | 5365 | 102k | } else if (mark_ret == 1) { | 5366 | 51.0k | LOG(INFO) | 5367 | 51.0k | << "rowset already marked as recycled, recycler will delete data and kv at " | 5368 | 51.0k | "next turn, instance_id=" | 5369 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5370 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5371 | 51.0k | return 0; | 5372 | 51.0k | } | 5373 | 102k | } | 5374 | | | 5375 | 51.0k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 5376 | 51.0k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 5377 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5378 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5379 | | | 5380 | 51.0k | int ret = abort_txn_or_job_for_recycle(rowset); | 5381 | 51.0k | if (ret != 0) { | 5382 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 5383 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5384 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5385 | 0 | return ret; | 5386 | 0 | } | 5387 | 51.0k | } | 5388 | | | 5389 | 51.0k | ++num_expired; | 5390 | 51.0k | expired_rowset_size += v.size(); | 5391 | 51.0k | if (!rowset.has_resource_id()) { | 5392 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible | 5393 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); | 5394 | 0 | return -1; | 5395 | 0 | } | 5396 | | // might be a delete pred rowset | 5397 | 0 | tmp_rowset_keys.emplace_back(k); | 5398 | 0 | return 0; | 5399 | 0 | } | 5400 | | // TODO(plat1ko): check rowset not referenced | 5401 | 51.0k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5402 | 51.0k | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() | 5403 | 51.0k | << " version=[" << rowset.start_version() << '-' << rowset.end_version() | 5404 | 51.0k | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() | 5405 | 51.0k | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned | 5406 | 51.0k | << " num_expired=" << num_expired | 5407 | 51.0k | << " task_type=" << metrics_context.operation_type; | 5408 | | | 5409 | 51.0k | tmp_rowset_keys.emplace_back(k.data(), k.size()); | 5410 | | // Remove the rowset ref count key directly since it has not been used. | 5411 | 51.0k | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( | 5412 | 51.0k | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); | 5413 | 51.0k | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ | 5414 | 51.0k | << "key=" << hex(rowset_ref_count_key); | 5415 | 51.0k | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); | 5416 | | | 5417 | 51.0k | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); | 5418 | 51.0k | return 0; | 5419 | 51.0k | }; |
|
5420 | | |
5421 | | // TODO bacth delete |
5422 | 51.0k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
5423 | 51.0k | std::string dbm_start_key = |
5424 | 51.0k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); |
5425 | 51.0k | std::string dbm_end_key = dbm_start_key; |
5426 | 51.0k | encode_int64(INT64_MAX, &dbm_end_key); |
5427 | 51.0k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); |
5428 | 51.0k | if (ret != 0) { |
5429 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" |
5430 | 0 | << instance_id_ << ", tablet_id=" << tablet_id |
5431 | 0 | << ", rowset_id=" << rowset_id; |
5432 | 0 | } |
5433 | 51.0k | return ret; |
5434 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_3clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5422 | 7 | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5423 | 7 | std::string dbm_start_key = | 5424 | 7 | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 5425 | 7 | std::string dbm_end_key = dbm_start_key; | 5426 | 7 | encode_int64(INT64_MAX, &dbm_end_key); | 5427 | 7 | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 5428 | 7 | if (ret != 0) { | 5429 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 5430 | 0 | << instance_id_ << ", tablet_id=" << tablet_id | 5431 | 0 | << ", rowset_id=" << rowset_id; | 5432 | 0 | } | 5433 | 7 | return ret; | 5434 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_3clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5422 | 51.0k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5423 | 51.0k | std::string dbm_start_key = | 5424 | 51.0k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 5425 | 51.0k | std::string dbm_end_key = dbm_start_key; | 5426 | 51.0k | encode_int64(INT64_MAX, &dbm_end_key); | 5427 | 51.0k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 5428 | 51.0k | if (ret != 0) { | 5429 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 5430 | 0 | << instance_id_ << ", tablet_id=" << tablet_id | 5431 | 0 | << ", rowset_id=" << rowset_id; | 5432 | 0 | } | 5433 | 51.0k | return ret; | 5434 | 51.0k | }; |
|
5435 | | |
5436 | 51.0k | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
5437 | 51.0k | auto delete_bitmap_start = |
5438 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); |
5439 | 51.0k | auto delete_bitmap_end = |
5440 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); |
5441 | 51.0k | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); |
5442 | 51.0k | if (ret != 0) { |
5443 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ |
5444 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; |
5445 | 0 | } |
5446 | 51.0k | return ret; |
5447 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5436 | 7 | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5437 | 7 | auto delete_bitmap_start = | 5438 | 7 | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); | 5439 | 7 | auto delete_bitmap_end = | 5440 | 7 | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); | 5441 | 7 | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); | 5442 | 7 | if (ret != 0) { | 5443 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ | 5444 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; | 5445 | 0 | } | 5446 | 7 | return ret; | 5447 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5436 | 51.0k | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5437 | 51.0k | auto delete_bitmap_start = | 5438 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); | 5439 | 51.0k | auto delete_bitmap_end = | 5440 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); | 5441 | 51.0k | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); | 5442 | 51.0k | if (ret != 0) { | 5443 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ | 5444 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; | 5445 | 0 | } | 5446 | 51.0k | return ret; | 5447 | 51.0k | }; |
|
5448 | | |
5449 | 29 | auto loop_done = [&]() -> int { |
5450 | 26 | DORIS_CLOUD_DEFER { |
5451 | 26 | tmp_rowset_keys.clear(); |
5452 | 26 | tmp_rowsets.clear(); |
5453 | 26 | tmp_rowset_ref_count_keys.clear(); |
5454 | 26 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5450 | 12 | DORIS_CLOUD_DEFER { | 5451 | 12 | tmp_rowset_keys.clear(); | 5452 | 12 | tmp_rowsets.clear(); | 5453 | 12 | tmp_rowset_ref_count_keys.clear(); | 5454 | 12 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5450 | 14 | DORIS_CLOUD_DEFER { | 5451 | 14 | tmp_rowset_keys.clear(); | 5452 | 14 | tmp_rowsets.clear(); | 5453 | 14 | tmp_rowset_ref_count_keys.clear(); | 5454 | 14 | }; |
|
5455 | 26 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, |
5456 | 26 | tmp_rowsets_to_delete = tmp_rowsets, |
5457 | 26 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { |
5458 | 26 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, |
5459 | 26 | metrics_context) != 0) { |
5460 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; |
5461 | 0 | return; |
5462 | 0 | } |
5463 | 51.0k | for (const auto& [_, rs] : tmp_rowsets_to_delete) { |
5464 | 51.0k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
5465 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" |
5466 | 0 | << rs.ShortDebugString(); |
5467 | 0 | return; |
5468 | 0 | } |
5469 | 51.0k | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
5470 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" |
5471 | 0 | << rs.ShortDebugString(); |
5472 | 0 | return; |
5473 | 0 | } |
5474 | 51.0k | } |
5475 | 26 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { |
5476 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; |
5477 | 0 | return; |
5478 | 0 | } |
5479 | 26 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { |
5480 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; |
5481 | 0 | return; |
5482 | 0 | } |
5483 | 26 | num_recycled += tmp_rowset_keys.size(); |
5484 | 26 | return; |
5485 | 26 | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5457 | 12 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5458 | 12 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5459 | 12 | metrics_context) != 0) { | 5460 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5461 | 0 | return; | 5462 | 0 | } | 5463 | 12 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5464 | 7 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5465 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5466 | 0 | << rs.ShortDebugString(); | 5467 | 0 | return; | 5468 | 0 | } | 5469 | 7 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5470 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5471 | 0 | << rs.ShortDebugString(); | 5472 | 0 | return; | 5473 | 0 | } | 5474 | 7 | } | 5475 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5476 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5477 | 0 | return; | 5478 | 0 | } | 5479 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5480 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5481 | 0 | return; | 5482 | 0 | } | 5483 | 12 | num_recycled += tmp_rowset_keys.size(); | 5484 | 12 | return; | 5485 | 12 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5457 | 14 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5458 | 14 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5459 | 14 | metrics_context) != 0) { | 5460 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5461 | 0 | return; | 5462 | 0 | } | 5463 | 51.0k | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5464 | 51.0k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5465 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5466 | 0 | << rs.ShortDebugString(); | 5467 | 0 | return; | 5468 | 0 | } | 5469 | 51.0k | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5470 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5471 | 0 | << rs.ShortDebugString(); | 5472 | 0 | return; | 5473 | 0 | } | 5474 | 51.0k | } | 5475 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5476 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5477 | 0 | return; | 5478 | 0 | } | 5479 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5480 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5481 | 0 | return; | 5482 | 0 | } | 5483 | 14 | num_recycled += tmp_rowset_keys.size(); | 5484 | 14 | return; | 5485 | 14 | }); |
|
5486 | 26 | return 0; |
5487 | 26 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEv Line | Count | Source | 5449 | 12 | auto loop_done = [&]() -> int { | 5450 | 12 | DORIS_CLOUD_DEFER { | 5451 | 12 | tmp_rowset_keys.clear(); | 5452 | 12 | tmp_rowsets.clear(); | 5453 | 12 | tmp_rowset_ref_count_keys.clear(); | 5454 | 12 | }; | 5455 | 12 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, | 5456 | 12 | tmp_rowsets_to_delete = tmp_rowsets, | 5457 | 12 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5458 | 12 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5459 | 12 | metrics_context) != 0) { | 5460 | 12 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5461 | 12 | return; | 5462 | 12 | } | 5463 | 12 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5464 | 12 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5465 | 12 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5466 | 12 | << rs.ShortDebugString(); | 5467 | 12 | return; | 5468 | 12 | } | 5469 | 12 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5470 | 12 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5471 | 12 | << rs.ShortDebugString(); | 5472 | 12 | return; | 5473 | 12 | } | 5474 | 12 | } | 5475 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5476 | 12 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5477 | 12 | return; | 5478 | 12 | } | 5479 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5480 | 12 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5481 | 12 | return; | 5482 | 12 | } | 5483 | 12 | num_recycled += tmp_rowset_keys.size(); | 5484 | 12 | return; | 5485 | 12 | }); | 5486 | 12 | return 0; | 5487 | 12 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEv Line | Count | Source | 5449 | 14 | auto loop_done = [&]() -> int { | 5450 | 14 | DORIS_CLOUD_DEFER { | 5451 | 14 | tmp_rowset_keys.clear(); | 5452 | 14 | tmp_rowsets.clear(); | 5453 | 14 | tmp_rowset_ref_count_keys.clear(); | 5454 | 14 | }; | 5455 | 14 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, | 5456 | 14 | tmp_rowsets_to_delete = tmp_rowsets, | 5457 | 14 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5458 | 14 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5459 | 14 | metrics_context) != 0) { | 5460 | 14 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5461 | 14 | return; | 5462 | 14 | } | 5463 | 14 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5464 | 14 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5465 | 14 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5466 | 14 | << rs.ShortDebugString(); | 5467 | 14 | return; | 5468 | 14 | } | 5469 | 14 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5470 | 14 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5471 | 14 | << rs.ShortDebugString(); | 5472 | 14 | return; | 5473 | 14 | } | 5474 | 14 | } | 5475 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5476 | 14 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5477 | 14 | return; | 5478 | 14 | } | 5479 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5480 | 14 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5481 | 14 | return; | 5482 | 14 | } | 5483 | 14 | num_recycled += tmp_rowset_keys.size(); | 5484 | 14 | return; | 5485 | 14 | }); | 5486 | 14 | return 0; | 5487 | 14 | }; |
|
5488 | | |
5489 | 29 | if (config::enable_recycler_stats_metrics) { |
5490 | 0 | scan_and_statistics_tmp_rowsets(); |
5491 | 0 | } |
5492 | | // recycle_func and loop_done for scan and recycle |
5493 | 29 | int ret = scan_and_recycle(tmp_rs_key0, tmp_rs_key1, std::move(handle_rowset_kv), |
5494 | 29 | std::move(loop_done)); |
5495 | | |
5496 | 29 | worker_pool->stop(); |
5497 | 29 | return ret; |
5498 | 29 | } |
5499 | | |
5500 | | int InstanceRecycler::scan_and_recycle( |
5501 | | std::string begin, std::string_view end, |
5502 | | std::function<int(std::string_view k, std::string_view v)> recycle_func, |
5503 | 253 | std::function<int()> loop_done) { |
5504 | 253 | LOG(INFO) << "begin scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) << ")"; |
5505 | 253 | int ret = 0; |
5506 | 253 | int64_t cnt = 0; |
5507 | 253 | int get_range_retried = 0; |
5508 | 253 | std::string err; |
5509 | 253 | DORIS_CLOUD_DEFER_COPY(begin, end) { |
5510 | 253 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) |
5511 | 253 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried |
5512 | 253 | << " ret=" << ret << " err=" << err; |
5513 | 253 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16scan_and_recycleENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_ESt8functionIFiS9_S9_EESA_IFivEEENK3$_0clEv Line | Count | Source | 5509 | 31 | DORIS_CLOUD_DEFER_COPY(begin, end) { | 5510 | 31 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) | 5511 | 31 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried | 5512 | 31 | << " ret=" << ret << " err=" << err; | 5513 | 31 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16scan_and_recycleENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_ESt8functionIFiS9_S9_EESA_IFivEEENK3$_0clEv Line | Count | Source | 5509 | 222 | DORIS_CLOUD_DEFER_COPY(begin, end) { | 5510 | 222 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) | 5511 | 222 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried | 5512 | 222 | << " ret=" << ret << " err=" << err; | 5513 | 222 | }; |
|
5514 | | |
5515 | 253 | std::unique_ptr<RangeGetIterator> it; |
5516 | 306 | do { |
5517 | 306 | if (get_range_retried > 1000) { |
5518 | 0 | err = "txn_get exceeds max retry, may not scan all keys"; |
5519 | 0 | ret = -1; |
5520 | 0 | return -1; |
5521 | 0 | } |
5522 | 306 | int get_ret = txn_get(txn_kv_.get(), begin, end, it); |
5523 | 306 | if (get_ret != 0) { // txn kv may complain "Request for future version" |
5524 | 0 | LOG(WARNING) << "failed to get kv, range=[" << hex(begin) << "," << hex(end) |
5525 | 0 | << ") num_scanned=" << cnt << " txn_get_ret=" << get_ret |
5526 | 0 | << " get_range_retried=" << get_range_retried; |
5527 | 0 | ++get_range_retried; |
5528 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
5529 | 0 | continue; // try again |
5530 | 0 | } |
5531 | 306 | if (!it->has_next()) { |
5532 | 134 | LOG(INFO) << "no keys in the given range=[" << hex(begin) << "," << hex(end) << ")"; |
5533 | 134 | break; // scan finished |
5534 | 134 | } |
5535 | 149k | while (it->has_next()) { |
5536 | 149k | ++cnt; |
5537 | | // recycle corresponding resources |
5538 | 149k | auto [k, v] = it->next(); |
5539 | 149k | if (!it->has_next()) { |
5540 | 172 | begin = k; |
5541 | 172 | VLOG_DEBUG << "iterator has no more kvs. key=" << hex(k); |
5542 | 172 | } |
5543 | | // if we want to continue scanning, the recycle_func should not return non-zero |
5544 | 149k | if (recycle_func(k, v) != 0) { |
5545 | 4.00k | err = "recycle_func error"; |
5546 | 4.00k | ret = -1; |
5547 | 4.00k | } |
5548 | 149k | } |
5549 | 172 | begin.push_back('\x00'); // Update to next smallest key for iteration |
5550 | | // if we want to continue scanning, the recycle_func should not return non-zero |
5551 | 172 | if (loop_done && loop_done() != 0) { |
5552 | 3 | err = "loop_done error"; |
5553 | 3 | ret = -1; |
5554 | 3 | } |
5555 | 172 | } while (it->more() && !stopped()); |
5556 | 253 | return ret; |
5557 | 253 | } |
5558 | | |
5559 | 19 | int InstanceRecycler::abort_timeout_txn() { |
5560 | 19 | const std::string task_name = "abort_timeout_txn"; |
5561 | 19 | int64_t num_scanned = 0; |
5562 | 19 | int64_t num_timeout = 0; |
5563 | 19 | int64_t num_abort = 0; |
5564 | 19 | int64_t num_advance = 0; |
5565 | 19 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5566 | | |
5567 | 19 | TxnRunningKeyInfo txn_running_key_info0 {instance_id_, 0, 0}; |
5568 | 19 | TxnRunningKeyInfo txn_running_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
5569 | 19 | std::string begin_txn_running_key; |
5570 | 19 | std::string end_txn_running_key; |
5571 | 19 | txn_running_key(txn_running_key_info0, &begin_txn_running_key); |
5572 | 19 | txn_running_key(txn_running_key_info1, &end_txn_running_key); |
5573 | | |
5574 | 19 | LOG_WARNING("begin to abort timeout txn").tag("instance_id", instance_id_); |
5575 | | |
5576 | 19 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5577 | 19 | register_recycle_task(task_name, start_time); |
5578 | | |
5579 | 19 | DORIS_CLOUD_DEFER { |
5580 | 19 | unregister_recycle_task(task_name); |
5581 | 19 | int64_t cost = |
5582 | 19 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5583 | 19 | metrics_context.finish_report(); |
5584 | 19 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) |
5585 | 19 | .tag("instance_id", instance_id_) |
5586 | 19 | .tag("num_scanned", num_scanned) |
5587 | 19 | .tag("num_timeout", num_timeout) |
5588 | 19 | .tag("num_abort", num_abort) |
5589 | 19 | .tag("num_advance", num_advance); |
5590 | 19 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_0clEv Line | Count | Source | 5579 | 3 | DORIS_CLOUD_DEFER { | 5580 | 3 | unregister_recycle_task(task_name); | 5581 | 3 | int64_t cost = | 5582 | 3 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5583 | 3 | metrics_context.finish_report(); | 5584 | 3 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) | 5585 | 3 | .tag("instance_id", instance_id_) | 5586 | 3 | .tag("num_scanned", num_scanned) | 5587 | 3 | .tag("num_timeout", num_timeout) | 5588 | 3 | .tag("num_abort", num_abort) | 5589 | 3 | .tag("num_advance", num_advance); | 5590 | 3 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_0clEv Line | Count | Source | 5579 | 16 | DORIS_CLOUD_DEFER { | 5580 | 16 | unregister_recycle_task(task_name); | 5581 | 16 | int64_t cost = | 5582 | 16 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5583 | 16 | metrics_context.finish_report(); | 5584 | 16 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) | 5585 | 16 | .tag("instance_id", instance_id_) | 5586 | 16 | .tag("num_scanned", num_scanned) | 5587 | 16 | .tag("num_timeout", num_timeout) | 5588 | 16 | .tag("num_abort", num_abort) | 5589 | 16 | .tag("num_advance", num_advance); | 5590 | 16 | }; |
|
5591 | | |
5592 | 19 | int64_t current_time = |
5593 | 19 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
5594 | | |
5595 | 19 | auto handle_txn_running_kv = [&num_scanned, &num_timeout, &num_abort, &num_advance, |
5596 | 19 | ¤t_time, &metrics_context, |
5597 | 19 | this](std::string_view k, std::string_view v) -> int { |
5598 | 9 | ++num_scanned; |
5599 | | |
5600 | 9 | std::unique_ptr<Transaction> txn; |
5601 | 9 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5602 | 9 | if (err != TxnErrorCode::TXN_OK) { |
5603 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); |
5604 | 0 | return -1; |
5605 | 0 | } |
5606 | 9 | std::string_view k1 = k; |
5607 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id |
5608 | 9 | k1.remove_prefix(1); // Remove key space |
5609 | 9 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5610 | 9 | if (decode_key(&k1, &out) != 0) { |
5611 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); |
5612 | 0 | return -1; |
5613 | 0 | } |
5614 | 9 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
5615 | 9 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
5616 | 9 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; |
5617 | | // Update txn_info |
5618 | 9 | std::string txn_inf_key, txn_inf_val; |
5619 | 9 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); |
5620 | 9 | err = txn->get(txn_inf_key, &txn_inf_val); |
5621 | 9 | if (err != TxnErrorCode::TXN_OK) { |
5622 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); |
5623 | 0 | return -1; |
5624 | 0 | } |
5625 | 9 | TxnInfoPB txn_info; |
5626 | 9 | if (!txn_info.ParseFromString(txn_inf_val)) { |
5627 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); |
5628 | 0 | return -1; |
5629 | 0 | } |
5630 | | |
5631 | 9 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { |
5632 | 3 | txn.reset(); |
5633 | 3 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); |
5634 | 3 | std::shared_ptr<TxnLazyCommitTask> task = |
5635 | 3 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); |
5636 | 3 | std::pair<MetaServiceCode, std::string> ret = task->wait(); |
5637 | 3 | if (ret.first != MetaServiceCode::OK) { |
5638 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first |
5639 | 0 | << "msg=" << ret.second; |
5640 | 0 | return -1; |
5641 | 0 | } |
5642 | 3 | ++num_advance; |
5643 | 3 | return 0; |
5644 | 6 | } else { |
5645 | 6 | TxnRunningPB txn_running_pb; |
5646 | 6 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { |
5647 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); |
5648 | 0 | return -1; |
5649 | 0 | } |
5650 | 6 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { |
5651 | 4 | return 0; |
5652 | 4 | } |
5653 | 2 | ++num_timeout; |
5654 | | |
5655 | 2 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); |
5656 | 2 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); |
5657 | 2 | txn_info.set_finish_time(current_time); |
5658 | 2 | txn_info.set_reason("timeout"); |
5659 | 2 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); |
5660 | 2 | txn_inf_val.clear(); |
5661 | 2 | if (!txn_info.SerializeToString(&txn_inf_val)) { |
5662 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); |
5663 | 0 | return -1; |
5664 | 0 | } |
5665 | 2 | txn->put(txn_inf_key, txn_inf_val); |
5666 | 2 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); |
5667 | | // Put recycle txn key |
5668 | 2 | std::string recyc_txn_key, recyc_txn_val; |
5669 | 2 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); |
5670 | 2 | RecycleTxnPB recycle_txn_pb; |
5671 | 2 | recycle_txn_pb.set_creation_time(current_time); |
5672 | 2 | recycle_txn_pb.set_label(txn_info.label()); |
5673 | 2 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { |
5674 | 0 | LOG_WARNING("failed to serialize txn recycle info") |
5675 | 0 | .tag("key", hex(k)) |
5676 | 0 | .tag("db_id", db_id) |
5677 | 0 | .tag("txn_id", txn_id); |
5678 | 0 | return -1; |
5679 | 0 | } |
5680 | 2 | txn->put(recyc_txn_key, recyc_txn_val); |
5681 | | // Remove txn running key |
5682 | 2 | txn->remove(k); |
5683 | 2 | err = txn->commit(); |
5684 | 2 | if (err != TxnErrorCode::TXN_OK) { |
5685 | 0 | LOG_WARNING("failed to commit txn err={}", err) |
5686 | 0 | .tag("key", hex(k)) |
5687 | 0 | .tag("db_id", db_id) |
5688 | 0 | .tag("txn_id", txn_id); |
5689 | 0 | return -1; |
5690 | 0 | } |
5691 | 2 | metrics_context.total_recycled_num = ++num_abort; |
5692 | 2 | metrics_context.report(); |
5693 | 2 | } |
5694 | | |
5695 | 2 | return 0; |
5696 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5597 | 3 | this](std::string_view k, std::string_view v) -> int { | 5598 | 3 | ++num_scanned; | 5599 | | | 5600 | 3 | std::unique_ptr<Transaction> txn; | 5601 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5602 | 3 | if (err != TxnErrorCode::TXN_OK) { | 5603 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5604 | 0 | return -1; | 5605 | 0 | } | 5606 | 3 | std::string_view k1 = k; | 5607 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id | 5608 | 3 | k1.remove_prefix(1); // Remove key space | 5609 | 3 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5610 | 3 | if (decode_key(&k1, &out) != 0) { | 5611 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); | 5612 | 0 | return -1; | 5613 | 0 | } | 5614 | 3 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5615 | 3 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5616 | 3 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5617 | | // Update txn_info | 5618 | 3 | std::string txn_inf_key, txn_inf_val; | 5619 | 3 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); | 5620 | 3 | err = txn->get(txn_inf_key, &txn_inf_val); | 5621 | 3 | if (err != TxnErrorCode::TXN_OK) { | 5622 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); | 5623 | 0 | return -1; | 5624 | 0 | } | 5625 | 3 | TxnInfoPB txn_info; | 5626 | 3 | if (!txn_info.ParseFromString(txn_inf_val)) { | 5627 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); | 5628 | 0 | return -1; | 5629 | 0 | } | 5630 | | | 5631 | 3 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { | 5632 | 3 | txn.reset(); | 5633 | 3 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); | 5634 | 3 | std::shared_ptr<TxnLazyCommitTask> task = | 5635 | 3 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); | 5636 | 3 | std::pair<MetaServiceCode, std::string> ret = task->wait(); | 5637 | 3 | if (ret.first != MetaServiceCode::OK) { | 5638 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first | 5639 | 0 | << "msg=" << ret.second; | 5640 | 0 | return -1; | 5641 | 0 | } | 5642 | 3 | ++num_advance; | 5643 | 3 | return 0; | 5644 | 3 | } else { | 5645 | 0 | TxnRunningPB txn_running_pb; | 5646 | 0 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { | 5647 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5648 | 0 | return -1; | 5649 | 0 | } | 5650 | 0 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { | 5651 | 0 | return 0; | 5652 | 0 | } | 5653 | 0 | ++num_timeout; | 5654 | |
| 5655 | 0 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); | 5656 | 0 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); | 5657 | 0 | txn_info.set_finish_time(current_time); | 5658 | 0 | txn_info.set_reason("timeout"); | 5659 | 0 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); | 5660 | 0 | txn_inf_val.clear(); | 5661 | 0 | if (!txn_info.SerializeToString(&txn_inf_val)) { | 5662 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); | 5663 | 0 | return -1; | 5664 | 0 | } | 5665 | 0 | txn->put(txn_inf_key, txn_inf_val); | 5666 | 0 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); | 5667 | | // Put recycle txn key | 5668 | 0 | std::string recyc_txn_key, recyc_txn_val; | 5669 | 0 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); | 5670 | 0 | RecycleTxnPB recycle_txn_pb; | 5671 | 0 | recycle_txn_pb.set_creation_time(current_time); | 5672 | 0 | recycle_txn_pb.set_label(txn_info.label()); | 5673 | 0 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { | 5674 | 0 | LOG_WARNING("failed to serialize txn recycle info") | 5675 | 0 | .tag("key", hex(k)) | 5676 | 0 | .tag("db_id", db_id) | 5677 | 0 | .tag("txn_id", txn_id); | 5678 | 0 | return -1; | 5679 | 0 | } | 5680 | 0 | txn->put(recyc_txn_key, recyc_txn_val); | 5681 | | // Remove txn running key | 5682 | 0 | txn->remove(k); | 5683 | 0 | err = txn->commit(); | 5684 | 0 | if (err != TxnErrorCode::TXN_OK) { | 5685 | 0 | LOG_WARNING("failed to commit txn err={}", err) | 5686 | 0 | .tag("key", hex(k)) | 5687 | 0 | .tag("db_id", db_id) | 5688 | 0 | .tag("txn_id", txn_id); | 5689 | 0 | return -1; | 5690 | 0 | } | 5691 | 0 | metrics_context.total_recycled_num = ++num_abort; | 5692 | 0 | metrics_context.report(); | 5693 | 0 | } | 5694 | | | 5695 | 0 | return 0; | 5696 | 3 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5597 | 6 | this](std::string_view k, std::string_view v) -> int { | 5598 | 6 | ++num_scanned; | 5599 | | | 5600 | 6 | std::unique_ptr<Transaction> txn; | 5601 | 6 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5602 | 6 | if (err != TxnErrorCode::TXN_OK) { | 5603 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5604 | 0 | return -1; | 5605 | 0 | } | 5606 | 6 | std::string_view k1 = k; | 5607 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id | 5608 | 6 | k1.remove_prefix(1); // Remove key space | 5609 | 6 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5610 | 6 | if (decode_key(&k1, &out) != 0) { | 5611 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); | 5612 | 0 | return -1; | 5613 | 0 | } | 5614 | 6 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5615 | 6 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5616 | 6 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5617 | | // Update txn_info | 5618 | 6 | std::string txn_inf_key, txn_inf_val; | 5619 | 6 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); | 5620 | 6 | err = txn->get(txn_inf_key, &txn_inf_val); | 5621 | 6 | if (err != TxnErrorCode::TXN_OK) { | 5622 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); | 5623 | 0 | return -1; | 5624 | 0 | } | 5625 | 6 | TxnInfoPB txn_info; | 5626 | 6 | if (!txn_info.ParseFromString(txn_inf_val)) { | 5627 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); | 5628 | 0 | return -1; | 5629 | 0 | } | 5630 | | | 5631 | 6 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { | 5632 | 0 | txn.reset(); | 5633 | 0 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); | 5634 | 0 | std::shared_ptr<TxnLazyCommitTask> task = | 5635 | 0 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); | 5636 | 0 | std::pair<MetaServiceCode, std::string> ret = task->wait(); | 5637 | 0 | if (ret.first != MetaServiceCode::OK) { | 5638 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first | 5639 | 0 | << "msg=" << ret.second; | 5640 | 0 | return -1; | 5641 | 0 | } | 5642 | 0 | ++num_advance; | 5643 | 0 | return 0; | 5644 | 6 | } else { | 5645 | 6 | TxnRunningPB txn_running_pb; | 5646 | 6 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { | 5647 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5648 | 0 | return -1; | 5649 | 0 | } | 5650 | 6 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { | 5651 | 4 | return 0; | 5652 | 4 | } | 5653 | 2 | ++num_timeout; | 5654 | | | 5655 | 2 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); | 5656 | 2 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); | 5657 | 2 | txn_info.set_finish_time(current_time); | 5658 | 2 | txn_info.set_reason("timeout"); | 5659 | 2 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); | 5660 | 2 | txn_inf_val.clear(); | 5661 | 2 | if (!txn_info.SerializeToString(&txn_inf_val)) { | 5662 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); | 5663 | 0 | return -1; | 5664 | 0 | } | 5665 | 2 | txn->put(txn_inf_key, txn_inf_val); | 5666 | 2 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); | 5667 | | // Put recycle txn key | 5668 | 2 | std::string recyc_txn_key, recyc_txn_val; | 5669 | 2 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); | 5670 | 2 | RecycleTxnPB recycle_txn_pb; | 5671 | 2 | recycle_txn_pb.set_creation_time(current_time); | 5672 | 2 | recycle_txn_pb.set_label(txn_info.label()); | 5673 | 2 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { | 5674 | 0 | LOG_WARNING("failed to serialize txn recycle info") | 5675 | 0 | .tag("key", hex(k)) | 5676 | 0 | .tag("db_id", db_id) | 5677 | 0 | .tag("txn_id", txn_id); | 5678 | 0 | return -1; | 5679 | 0 | } | 5680 | 2 | txn->put(recyc_txn_key, recyc_txn_val); | 5681 | | // Remove txn running key | 5682 | 2 | txn->remove(k); | 5683 | 2 | err = txn->commit(); | 5684 | 2 | if (err != TxnErrorCode::TXN_OK) { | 5685 | 0 | LOG_WARNING("failed to commit txn err={}", err) | 5686 | 0 | .tag("key", hex(k)) | 5687 | 0 | .tag("db_id", db_id) | 5688 | 0 | .tag("txn_id", txn_id); | 5689 | 0 | return -1; | 5690 | 0 | } | 5691 | 2 | metrics_context.total_recycled_num = ++num_abort; | 5692 | 2 | metrics_context.report(); | 5693 | 2 | } | 5694 | | | 5695 | 2 | return 0; | 5696 | 6 | }; |
|
5697 | | |
5698 | 19 | if (config::enable_recycler_stats_metrics) { |
5699 | 0 | scan_and_statistics_abort_timeout_txn(); |
5700 | 0 | } |
5701 | | // recycle_func and loop_done for scan and recycle |
5702 | 19 | return scan_and_recycle(begin_txn_running_key, end_txn_running_key, |
5703 | 19 | std::move(handle_txn_running_kv)); |
5704 | 19 | } |
5705 | | |
5706 | 19 | int InstanceRecycler::recycle_expired_txn_label() { |
5707 | 19 | const std::string task_name = "recycle_expired_txn_label"; |
5708 | 19 | int64_t num_scanned = 0; |
5709 | 19 | int64_t num_expired = 0; |
5710 | 19 | int64_t num_recycled = 0; |
5711 | 19 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5712 | 19 | int ret = 0; |
5713 | | |
5714 | 19 | RecycleTxnKeyInfo recycle_txn_key_info0 {instance_id_, 0, 0}; |
5715 | 19 | RecycleTxnKeyInfo recycle_txn_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
5716 | 19 | std::string begin_recycle_txn_key; |
5717 | 19 | std::string end_recycle_txn_key; |
5718 | 19 | recycle_txn_key(recycle_txn_key_info0, &begin_recycle_txn_key); |
5719 | 19 | recycle_txn_key(recycle_txn_key_info1, &end_recycle_txn_key); |
5720 | 19 | std::vector<std::string> recycle_txn_info_keys; |
5721 | | |
5722 | 19 | LOG_WARNING("begin to recycle expired txn").tag("instance_id", instance_id_); |
5723 | | |
5724 | 19 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5725 | 19 | register_recycle_task(task_name, start_time); |
5726 | 19 | DORIS_CLOUD_DEFER { |
5727 | 19 | unregister_recycle_task(task_name); |
5728 | 19 | int64_t cost = |
5729 | 19 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5730 | 19 | metrics_context.finish_report(); |
5731 | 19 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) |
5732 | 19 | .tag("instance_id", instance_id_) |
5733 | 19 | .tag("num_scanned", num_scanned) |
5734 | 19 | .tag("num_expired", num_expired) |
5735 | 19 | .tag("num_recycled", num_recycled); |
5736 | 19 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_0clEv Line | Count | Source | 5726 | 1 | DORIS_CLOUD_DEFER { | 5727 | 1 | unregister_recycle_task(task_name); | 5728 | 1 | int64_t cost = | 5729 | 1 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5730 | 1 | metrics_context.finish_report(); | 5731 | 1 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) | 5732 | 1 | .tag("instance_id", instance_id_) | 5733 | 1 | .tag("num_scanned", num_scanned) | 5734 | 1 | .tag("num_expired", num_expired) | 5735 | 1 | .tag("num_recycled", num_recycled); | 5736 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_0clEv Line | Count | Source | 5726 | 18 | DORIS_CLOUD_DEFER { | 5727 | 18 | unregister_recycle_task(task_name); | 5728 | 18 | int64_t cost = | 5729 | 18 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5730 | 18 | metrics_context.finish_report(); | 5731 | 18 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) | 5732 | 18 | .tag("instance_id", instance_id_) | 5733 | 18 | .tag("num_scanned", num_scanned) | 5734 | 18 | .tag("num_expired", num_expired) | 5735 | 18 | .tag("num_recycled", num_recycled); | 5736 | 18 | }; |
|
5737 | | |
5738 | 19 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5739 | | |
5740 | 19 | SyncExecutor<int> concurrent_delete_executor( |
5741 | 19 | _thread_pool_group.s3_producer_pool, |
5742 | 19 | fmt::format("recycle expired txn label, instance id {}", instance_id_), |
5743 | 23.0k | [](const int& ret) { return ret != 0; });recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_2clERKi Line | Count | Source | 5743 | 1 | [](const int& ret) { return ret != 0; }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_2clERKi Line | Count | Source | 5743 | 23.0k | [](const int& ret) { return ret != 0; }); |
|
5744 | | |
5745 | 19 | int64_t current_time_ms = |
5746 | 19 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
5747 | | |
5748 | 30.0k | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { |
5749 | 30.0k | ++num_scanned; |
5750 | 30.0k | RecycleTxnPB recycle_txn_pb; |
5751 | 30.0k | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { |
5752 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); |
5753 | 0 | return -1; |
5754 | 0 | } |
5755 | 30.0k | if ((config::force_immediate_recycle) || |
5756 | 30.0k | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || |
5757 | 30.0k | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= |
5758 | 30.0k | current_time_ms)) { |
5759 | 23.0k | VLOG_DEBUG << "found recycle txn, key=" << hex(k); |
5760 | 23.0k | num_expired++; |
5761 | 23.0k | recycle_txn_info_keys.emplace_back(k); |
5762 | 23.0k | } |
5763 | 30.0k | return 0; |
5764 | 30.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5748 | 1 | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5749 | 1 | ++num_scanned; | 5750 | 1 | RecycleTxnPB recycle_txn_pb; | 5751 | 1 | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { | 5752 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5753 | 0 | return -1; | 5754 | 0 | } | 5755 | 1 | if ((config::force_immediate_recycle) || | 5756 | 1 | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || | 5757 | 1 | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= | 5758 | 1 | current_time_ms)) { | 5759 | 1 | VLOG_DEBUG << "found recycle txn, key=" << hex(k); | 5760 | 1 | num_expired++; | 5761 | 1 | recycle_txn_info_keys.emplace_back(k); | 5762 | 1 | } | 5763 | 1 | return 0; | 5764 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5748 | 30.0k | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5749 | 30.0k | ++num_scanned; | 5750 | 30.0k | RecycleTxnPB recycle_txn_pb; | 5751 | 30.0k | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { | 5752 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5753 | 0 | return -1; | 5754 | 0 | } | 5755 | 30.0k | if ((config::force_immediate_recycle) || | 5756 | 30.0k | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || | 5757 | 30.0k | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= | 5758 | 30.0k | current_time_ms)) { | 5759 | 23.0k | VLOG_DEBUG << "found recycle txn, key=" << hex(k); | 5760 | 23.0k | num_expired++; | 5761 | 23.0k | recycle_txn_info_keys.emplace_back(k); | 5762 | 23.0k | } | 5763 | 30.0k | return 0; | 5764 | 30.0k | }; |
|
5765 | | |
5766 | | // int 0 for success, 1 for conflict, -1 for error |
5767 | 23.0k | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { |
5768 | 23.0k | std::string_view k1 = k; |
5769 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id |
5770 | 23.0k | k1.remove_prefix(1); // Remove key space |
5771 | 23.0k | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5772 | 23.0k | int ret = decode_key(&k1, &out); |
5773 | 23.0k | if (ret != 0) { |
5774 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); |
5775 | 0 | return -1; |
5776 | 0 | } |
5777 | 23.0k | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
5778 | 23.0k | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
5779 | 23.0k | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; |
5780 | 23.0k | std::unique_ptr<Transaction> txn; |
5781 | 23.0k | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5782 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5783 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); |
5784 | 0 | return -1; |
5785 | 0 | } |
5786 | | // Remove txn index kv |
5787 | 23.0k | auto index_key = txn_index_key({instance_id_, txn_id}); |
5788 | 23.0k | txn->remove(index_key); |
5789 | | // Remove txn info kv |
5790 | 23.0k | std::string info_key, info_val; |
5791 | 23.0k | txn_info_key({instance_id_, db_id, txn_id}, &info_key); |
5792 | 23.0k | err = txn->get(info_key, &info_val); |
5793 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5794 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); |
5795 | 0 | return -1; |
5796 | 0 | } |
5797 | 23.0k | TxnInfoPB txn_info; |
5798 | 23.0k | if (!txn_info.ParseFromString(info_val)) { |
5799 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); |
5800 | 0 | return -1; |
5801 | 0 | } |
5802 | 23.0k | txn->remove(info_key); |
5803 | | // Remove sub txn index kvs |
5804 | 23.0k | std::vector<std::string> sub_txn_index_keys; |
5805 | 23.0k | for (auto sub_txn_id : txn_info.sub_txn_ids()) { |
5806 | 22.9k | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); |
5807 | 22.9k | sub_txn_index_keys.push_back(sub_txn_index_key); |
5808 | 22.9k | } |
5809 | 23.0k | for (auto& sub_txn_index_key : sub_txn_index_keys) { |
5810 | 22.9k | txn->remove(sub_txn_index_key); |
5811 | 22.9k | } |
5812 | | // Update txn label |
5813 | 23.0k | std::string label_key, label_val; |
5814 | 23.0k | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); |
5815 | 23.0k | err = txn->get(label_key, &label_val); |
5816 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5817 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key |
5818 | 0 | << " err=" << err; |
5819 | 0 | return -1; |
5820 | 0 | } |
5821 | 23.0k | TxnLabelPB txn_label; |
5822 | 23.0k | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { |
5823 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); |
5824 | 0 | return -1; |
5825 | 0 | } |
5826 | 23.0k | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); |
5827 | 23.0k | if (it != txn_label.txn_ids().end()) { |
5828 | 23.0k | txn_label.mutable_txn_ids()->erase(it); |
5829 | 23.0k | } |
5830 | 23.0k | if (txn_label.txn_ids().empty()) { |
5831 | 23.0k | txn->remove(label_key); |
5832 | 23.0k | TEST_SYNC_POINT_CALLBACK( |
5833 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); |
5834 | 23.0k | } else { |
5835 | 73 | if (!txn_label.SerializeToString(&label_val)) { |
5836 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); |
5837 | 0 | return -1; |
5838 | 0 | } |
5839 | 73 | TEST_SYNC_POINT_CALLBACK( |
5840 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); |
5841 | 73 | txn->atomic_set_ver_value(label_key, label_val); |
5842 | 73 | TEST_SYNC_POINT_CALLBACK( |
5843 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); |
5844 | 73 | } |
5845 | | // Remove recycle txn kv |
5846 | 23.0k | txn->remove(k); |
5847 | 23.0k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); |
5848 | 23.0k | err = txn->commit(); |
5849 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5850 | 62 | if (err == TxnErrorCode::TXN_CONFLICT) { |
5851 | 62 | TEST_SYNC_POINT_CALLBACK( |
5852 | 62 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); |
5853 | | // log the txn_id and label |
5854 | 62 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id |
5855 | 62 | << " txn_label_pb=" << txn_label.ShortDebugString() |
5856 | 62 | << " txn_label=" << txn_info.label(); |
5857 | 62 | return 1; |
5858 | 62 | } |
5859 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); |
5860 | 0 | return -1; |
5861 | 62 | } |
5862 | 23.0k | metrics_context.total_recycled_num = ++num_recycled; |
5863 | 23.0k | metrics_context.report(); |
5864 | | |
5865 | 23.0k | LOG(INFO) << "recycle expired txn, key=" << hex(k); |
5866 | 23.0k | return 0; |
5867 | 23.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_4clERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5767 | 1 | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { | 5768 | 1 | std::string_view k1 = k; | 5769 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id | 5770 | 1 | k1.remove_prefix(1); // Remove key space | 5771 | 1 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5772 | 1 | int ret = decode_key(&k1, &out); | 5773 | 1 | if (ret != 0) { | 5774 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); | 5775 | 0 | return -1; | 5776 | 0 | } | 5777 | 1 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5778 | 1 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5779 | 1 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5780 | 1 | std::unique_ptr<Transaction> txn; | 5781 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5782 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5783 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5784 | 0 | return -1; | 5785 | 0 | } | 5786 | | // Remove txn index kv | 5787 | 1 | auto index_key = txn_index_key({instance_id_, txn_id}); | 5788 | 1 | txn->remove(index_key); | 5789 | | // Remove txn info kv | 5790 | 1 | std::string info_key, info_val; | 5791 | 1 | txn_info_key({instance_id_, db_id, txn_id}, &info_key); | 5792 | 1 | err = txn->get(info_key, &info_val); | 5793 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5794 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); | 5795 | 0 | return -1; | 5796 | 0 | } | 5797 | 1 | TxnInfoPB txn_info; | 5798 | 1 | if (!txn_info.ParseFromString(info_val)) { | 5799 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); | 5800 | 0 | return -1; | 5801 | 0 | } | 5802 | 1 | txn->remove(info_key); | 5803 | | // Remove sub txn index kvs | 5804 | 1 | std::vector<std::string> sub_txn_index_keys; | 5805 | 1 | for (auto sub_txn_id : txn_info.sub_txn_ids()) { | 5806 | 0 | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); | 5807 | 0 | sub_txn_index_keys.push_back(sub_txn_index_key); | 5808 | 0 | } | 5809 | 1 | for (auto& sub_txn_index_key : sub_txn_index_keys) { | 5810 | 0 | txn->remove(sub_txn_index_key); | 5811 | 0 | } | 5812 | | // Update txn label | 5813 | 1 | std::string label_key, label_val; | 5814 | 1 | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); | 5815 | 1 | err = txn->get(label_key, &label_val); | 5816 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5817 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key | 5818 | 0 | << " err=" << err; | 5819 | 0 | return -1; | 5820 | 0 | } | 5821 | 1 | TxnLabelPB txn_label; | 5822 | 1 | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { | 5823 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); | 5824 | 0 | return -1; | 5825 | 0 | } | 5826 | 1 | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); | 5827 | 1 | if (it != txn_label.txn_ids().end()) { | 5828 | 1 | txn_label.mutable_txn_ids()->erase(it); | 5829 | 1 | } | 5830 | 1 | if (txn_label.txn_ids().empty()) { | 5831 | 1 | txn->remove(label_key); | 5832 | 1 | TEST_SYNC_POINT_CALLBACK( | 5833 | 1 | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); | 5834 | 1 | } else { | 5835 | 0 | if (!txn_label.SerializeToString(&label_val)) { | 5836 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); | 5837 | 0 | return -1; | 5838 | 0 | } | 5839 | 0 | TEST_SYNC_POINT_CALLBACK( | 5840 | 0 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); | 5841 | 0 | txn->atomic_set_ver_value(label_key, label_val); | 5842 | 0 | TEST_SYNC_POINT_CALLBACK( | 5843 | 0 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); | 5844 | 0 | } | 5845 | | // Remove recycle txn kv | 5846 | 1 | txn->remove(k); | 5847 | 1 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); | 5848 | 1 | err = txn->commit(); | 5849 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5850 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { | 5851 | 0 | TEST_SYNC_POINT_CALLBACK( | 5852 | 0 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); | 5853 | | // log the txn_id and label | 5854 | 0 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id | 5855 | 0 | << " txn_label_pb=" << txn_label.ShortDebugString() | 5856 | 0 | << " txn_label=" << txn_info.label(); | 5857 | 0 | return 1; | 5858 | 0 | } | 5859 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); | 5860 | 0 | return -1; | 5861 | 0 | } | 5862 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 5863 | 1 | metrics_context.report(); | 5864 | | | 5865 | 1 | LOG(INFO) << "recycle expired txn, key=" << hex(k); | 5866 | 1 | return 0; | 5867 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_4clERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5767 | 23.0k | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { | 5768 | 23.0k | std::string_view k1 = k; | 5769 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id | 5770 | 23.0k | k1.remove_prefix(1); // Remove key space | 5771 | 23.0k | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5772 | 23.0k | int ret = decode_key(&k1, &out); | 5773 | 23.0k | if (ret != 0) { | 5774 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); | 5775 | 0 | return -1; | 5776 | 0 | } | 5777 | 23.0k | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5778 | 23.0k | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5779 | 23.0k | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5780 | 23.0k | std::unique_ptr<Transaction> txn; | 5781 | 23.0k | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5782 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5783 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5784 | 0 | return -1; | 5785 | 0 | } | 5786 | | // Remove txn index kv | 5787 | 23.0k | auto index_key = txn_index_key({instance_id_, txn_id}); | 5788 | 23.0k | txn->remove(index_key); | 5789 | | // Remove txn info kv | 5790 | 23.0k | std::string info_key, info_val; | 5791 | 23.0k | txn_info_key({instance_id_, db_id, txn_id}, &info_key); | 5792 | 23.0k | err = txn->get(info_key, &info_val); | 5793 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5794 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); | 5795 | 0 | return -1; | 5796 | 0 | } | 5797 | 23.0k | TxnInfoPB txn_info; | 5798 | 23.0k | if (!txn_info.ParseFromString(info_val)) { | 5799 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); | 5800 | 0 | return -1; | 5801 | 0 | } | 5802 | 23.0k | txn->remove(info_key); | 5803 | | // Remove sub txn index kvs | 5804 | 23.0k | std::vector<std::string> sub_txn_index_keys; | 5805 | 23.0k | for (auto sub_txn_id : txn_info.sub_txn_ids()) { | 5806 | 22.9k | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); | 5807 | 22.9k | sub_txn_index_keys.push_back(sub_txn_index_key); | 5808 | 22.9k | } | 5809 | 23.0k | for (auto& sub_txn_index_key : sub_txn_index_keys) { | 5810 | 22.9k | txn->remove(sub_txn_index_key); | 5811 | 22.9k | } | 5812 | | // Update txn label | 5813 | 23.0k | std::string label_key, label_val; | 5814 | 23.0k | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); | 5815 | 23.0k | err = txn->get(label_key, &label_val); | 5816 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5817 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key | 5818 | 0 | << " err=" << err; | 5819 | 0 | return -1; | 5820 | 0 | } | 5821 | 23.0k | TxnLabelPB txn_label; | 5822 | 23.0k | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { | 5823 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); | 5824 | 0 | return -1; | 5825 | 0 | } | 5826 | 23.0k | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); | 5827 | 23.0k | if (it != txn_label.txn_ids().end()) { | 5828 | 23.0k | txn_label.mutable_txn_ids()->erase(it); | 5829 | 23.0k | } | 5830 | 23.0k | if (txn_label.txn_ids().empty()) { | 5831 | 23.0k | txn->remove(label_key); | 5832 | 23.0k | TEST_SYNC_POINT_CALLBACK( | 5833 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); | 5834 | 23.0k | } else { | 5835 | 73 | if (!txn_label.SerializeToString(&label_val)) { | 5836 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); | 5837 | 0 | return -1; | 5838 | 0 | } | 5839 | 73 | TEST_SYNC_POINT_CALLBACK( | 5840 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); | 5841 | 73 | txn->atomic_set_ver_value(label_key, label_val); | 5842 | 73 | TEST_SYNC_POINT_CALLBACK( | 5843 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); | 5844 | 73 | } | 5845 | | // Remove recycle txn kv | 5846 | 23.0k | txn->remove(k); | 5847 | 23.0k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); | 5848 | 23.0k | err = txn->commit(); | 5849 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5850 | 62 | if (err == TxnErrorCode::TXN_CONFLICT) { | 5851 | 62 | TEST_SYNC_POINT_CALLBACK( | 5852 | 62 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); | 5853 | | // log the txn_id and label | 5854 | 62 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id | 5855 | 62 | << " txn_label_pb=" << txn_label.ShortDebugString() | 5856 | 62 | << " txn_label=" << txn_info.label(); | 5857 | 62 | return 1; | 5858 | 62 | } | 5859 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); | 5860 | 0 | return -1; | 5861 | 62 | } | 5862 | 23.0k | metrics_context.total_recycled_num = ++num_recycled; | 5863 | 23.0k | metrics_context.report(); | 5864 | | | 5865 | 23.0k | LOG(INFO) << "recycle expired txn, key=" << hex(k); | 5866 | 23.0k | return 0; | 5867 | 23.0k | }; |
|
5868 | | |
5869 | 19 | auto loop_done = [&]() -> int { |
5870 | 10 | DORIS_CLOUD_DEFER { |
5871 | 10 | recycle_txn_info_keys.clear(); |
5872 | 10 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5870 | 1 | DORIS_CLOUD_DEFER { | 5871 | 1 | recycle_txn_info_keys.clear(); | 5872 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5870 | 9 | DORIS_CLOUD_DEFER { | 5871 | 9 | recycle_txn_info_keys.clear(); | 5872 | 9 | }; |
|
5873 | 10 | TEST_SYNC_POINT_CALLBACK( |
5874 | 10 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", |
5875 | 10 | &recycle_txn_info_keys); |
5876 | 23.0k | for (const auto& k : recycle_txn_info_keys) { |
5877 | 23.0k | concurrent_delete_executor.add([&]() { |
5878 | 23.0k | int ret = delete_recycle_txn_kv(k); |
5879 | 23.0k | if (ret == 1) { |
5880 | 18 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); |
5881 | 54 | for (int i = 1; i <= max_retry; ++i) { |
5882 | 54 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); |
5883 | 54 | ret = delete_recycle_txn_kv(k); |
5884 | | // clang-format off |
5885 | 54 | TEST_SYNC_POINT_CALLBACK( |
5886 | 54 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); |
5887 | | // clang-format off |
5888 | 54 | if (ret != 1) { |
5889 | 18 | break; |
5890 | 18 | } |
5891 | | // random sleep 0-100 ms to retry |
5892 | 36 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); |
5893 | 36 | } |
5894 | 18 | } |
5895 | 23.0k | if (ret != 0) { |
5896 | 9 | LOG_WARNING("failed to delete recycle txn kv") |
5897 | 9 | .tag("instance id", instance_id_) |
5898 | 9 | .tag("key", hex(k)); |
5899 | 9 | return -1; |
5900 | 9 | } |
5901 | 23.0k | return 0; |
5902 | 23.0k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5877 | 1 | concurrent_delete_executor.add([&]() { | 5878 | 1 | int ret = delete_recycle_txn_kv(k); | 5879 | 1 | if (ret == 1) { | 5880 | 0 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5881 | 0 | for (int i = 1; i <= max_retry; ++i) { | 5882 | 0 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5883 | 0 | ret = delete_recycle_txn_kv(k); | 5884 | | // clang-format off | 5885 | 0 | TEST_SYNC_POINT_CALLBACK( | 5886 | 0 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5887 | | // clang-format off | 5888 | 0 | if (ret != 1) { | 5889 | 0 | break; | 5890 | 0 | } | 5891 | | // random sleep 0-100 ms to retry | 5892 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5893 | 0 | } | 5894 | 0 | } | 5895 | 1 | if (ret != 0) { | 5896 | 0 | LOG_WARNING("failed to delete recycle txn kv") | 5897 | 0 | .tag("instance id", instance_id_) | 5898 | 0 | .tag("key", hex(k)); | 5899 | 0 | return -1; | 5900 | 0 | } | 5901 | 1 | return 0; | 5902 | 1 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5877 | 23.0k | concurrent_delete_executor.add([&]() { | 5878 | 23.0k | int ret = delete_recycle_txn_kv(k); | 5879 | 23.0k | if (ret == 1) { | 5880 | 18 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5881 | 54 | for (int i = 1; i <= max_retry; ++i) { | 5882 | 54 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5883 | 54 | ret = delete_recycle_txn_kv(k); | 5884 | | // clang-format off | 5885 | 54 | TEST_SYNC_POINT_CALLBACK( | 5886 | 54 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5887 | | // clang-format off | 5888 | 54 | if (ret != 1) { | 5889 | 18 | break; | 5890 | 18 | } | 5891 | | // random sleep 0-100 ms to retry | 5892 | 36 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5893 | 36 | } | 5894 | 18 | } | 5895 | 23.0k | if (ret != 0) { | 5896 | 9 | LOG_WARNING("failed to delete recycle txn kv") | 5897 | 9 | .tag("instance id", instance_id_) | 5898 | 9 | .tag("key", hex(k)); | 5899 | 9 | return -1; | 5900 | 9 | } | 5901 | 23.0k | return 0; | 5902 | 23.0k | }); |
|
5903 | 23.0k | } |
5904 | 10 | bool finished = true; |
5905 | 10 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
5906 | 23.0k | for (int r : rets) { |
5907 | 23.0k | if (r != 0) { |
5908 | 9 | ret = -1; |
5909 | 9 | } |
5910 | 23.0k | } |
5911 | | |
5912 | 10 | ret = finished ? ret : -1; |
5913 | | |
5914 | 10 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); |
5915 | | |
5916 | 10 | if (ret != 0) { |
5917 | 3 | LOG_WARNING("recycle txn kv ret!=0") |
5918 | 3 | .tag("finished", finished) |
5919 | 3 | .tag("ret", ret) |
5920 | 3 | .tag("instance_id", instance_id_); |
5921 | 3 | return ret; |
5922 | 3 | } |
5923 | 7 | return ret; |
5924 | 10 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEv Line | Count | Source | 5869 | 1 | auto loop_done = [&]() -> int { | 5870 | 1 | DORIS_CLOUD_DEFER { | 5871 | 1 | recycle_txn_info_keys.clear(); | 5872 | 1 | }; | 5873 | 1 | TEST_SYNC_POINT_CALLBACK( | 5874 | 1 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", | 5875 | 1 | &recycle_txn_info_keys); | 5876 | 1 | for (const auto& k : recycle_txn_info_keys) { | 5877 | 1 | concurrent_delete_executor.add([&]() { | 5878 | 1 | int ret = delete_recycle_txn_kv(k); | 5879 | 1 | if (ret == 1) { | 5880 | 1 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5881 | 1 | for (int i = 1; i <= max_retry; ++i) { | 5882 | 1 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5883 | 1 | ret = delete_recycle_txn_kv(k); | 5884 | | // clang-format off | 5885 | 1 | TEST_SYNC_POINT_CALLBACK( | 5886 | 1 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5887 | | // clang-format off | 5888 | 1 | if (ret != 1) { | 5889 | 1 | break; | 5890 | 1 | } | 5891 | | // random sleep 0-100 ms to retry | 5892 | 1 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5893 | 1 | } | 5894 | 1 | } | 5895 | 1 | if (ret != 0) { | 5896 | 1 | LOG_WARNING("failed to delete recycle txn kv") | 5897 | 1 | .tag("instance id", instance_id_) | 5898 | 1 | .tag("key", hex(k)); | 5899 | 1 | return -1; | 5900 | 1 | } | 5901 | 1 | return 0; | 5902 | 1 | }); | 5903 | 1 | } | 5904 | 1 | bool finished = true; | 5905 | 1 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); | 5906 | 1 | for (int r : rets) { | 5907 | 1 | if (r != 0) { | 5908 | 0 | ret = -1; | 5909 | 0 | } | 5910 | 1 | } | 5911 | | | 5912 | 1 | ret = finished ? ret : -1; | 5913 | | | 5914 | 1 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); | 5915 | | | 5916 | 1 | if (ret != 0) { | 5917 | 0 | LOG_WARNING("recycle txn kv ret!=0") | 5918 | 0 | .tag("finished", finished) | 5919 | 0 | .tag("ret", ret) | 5920 | 0 | .tag("instance_id", instance_id_); | 5921 | 0 | return ret; | 5922 | 0 | } | 5923 | 1 | return ret; | 5924 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEv Line | Count | Source | 5869 | 9 | auto loop_done = [&]() -> int { | 5870 | 9 | DORIS_CLOUD_DEFER { | 5871 | 9 | recycle_txn_info_keys.clear(); | 5872 | 9 | }; | 5873 | 9 | TEST_SYNC_POINT_CALLBACK( | 5874 | 9 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", | 5875 | 9 | &recycle_txn_info_keys); | 5876 | 23.0k | for (const auto& k : recycle_txn_info_keys) { | 5877 | 23.0k | concurrent_delete_executor.add([&]() { | 5878 | 23.0k | int ret = delete_recycle_txn_kv(k); | 5879 | 23.0k | if (ret == 1) { | 5880 | 23.0k | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5881 | 23.0k | for (int i = 1; i <= max_retry; ++i) { | 5882 | 23.0k | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5883 | 23.0k | ret = delete_recycle_txn_kv(k); | 5884 | | // clang-format off | 5885 | 23.0k | TEST_SYNC_POINT_CALLBACK( | 5886 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5887 | | // clang-format off | 5888 | 23.0k | if (ret != 1) { | 5889 | 23.0k | break; | 5890 | 23.0k | } | 5891 | | // random sleep 0-100 ms to retry | 5892 | 23.0k | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5893 | 23.0k | } | 5894 | 23.0k | } | 5895 | 23.0k | if (ret != 0) { | 5896 | 23.0k | LOG_WARNING("failed to delete recycle txn kv") | 5897 | 23.0k | .tag("instance id", instance_id_) | 5898 | 23.0k | .tag("key", hex(k)); | 5899 | 23.0k | return -1; | 5900 | 23.0k | } | 5901 | 23.0k | return 0; | 5902 | 23.0k | }); | 5903 | 23.0k | } | 5904 | 9 | bool finished = true; | 5905 | 9 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); | 5906 | 23.0k | for (int r : rets) { | 5907 | 23.0k | if (r != 0) { | 5908 | 9 | ret = -1; | 5909 | 9 | } | 5910 | 23.0k | } | 5911 | | | 5912 | 9 | ret = finished ? ret : -1; | 5913 | | | 5914 | 9 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); | 5915 | | | 5916 | 9 | if (ret != 0) { | 5917 | 3 | LOG_WARNING("recycle txn kv ret!=0") | 5918 | 3 | .tag("finished", finished) | 5919 | 3 | .tag("ret", ret) | 5920 | 3 | .tag("instance_id", instance_id_); | 5921 | 3 | return ret; | 5922 | 3 | } | 5923 | 6 | return ret; | 5924 | 9 | }; |
|
5925 | | |
5926 | 19 | if (config::enable_recycler_stats_metrics) { |
5927 | 0 | scan_and_statistics_expired_txn_label(); |
5928 | 0 | } |
5929 | | // recycle_func and loop_done for scan and recycle |
5930 | 19 | return scan_and_recycle(begin_recycle_txn_key, end_recycle_txn_key, |
5931 | 19 | std::move(handle_recycle_txn_kv), std::move(loop_done)); |
5932 | 19 | } |
5933 | | |
5934 | | struct CopyJobIdTuple { |
5935 | | std::string instance_id; |
5936 | | std::string stage_id; |
5937 | | long table_id; |
5938 | | std::string copy_id; |
5939 | | std::string stage_path; |
5940 | | }; |
5941 | | struct BatchObjStoreAccessor { |
5942 | | BatchObjStoreAccessor(std::shared_ptr<StorageVaultAccessor> accessor, uint64_t& batch_count, |
5943 | | TxnKv* txn_kv) |
5944 | 3 | : accessor_(std::move(accessor)), batch_count_(batch_count), txn_kv_(txn_kv) {}; |
5945 | 3 | ~BatchObjStoreAccessor() { |
5946 | 3 | if (!paths_.empty()) { |
5947 | 3 | consume(); |
5948 | 3 | } |
5949 | 3 | } |
5950 | | |
5951 | | /** |
5952 | | * To implicitely do batch work and submit the batch delete task to s3 |
5953 | | * The s3 delete opreations would be done in batches, and then delete CopyJobPB key one by one |
5954 | | * |
5955 | | * @param copy_job The protubuf struct consists of the copy job files. |
5956 | | * @param key The copy job's key on fdb, the key is originally occupied by fdb range iterator, to make sure |
5957 | | * it would last until we finish the delete task, here we need pass one string value |
5958 | | * @param cope_job_id_tuple One tuple {log_trace instance_id, stage_id, table_id, query_id, stage_path} to print log |
5959 | | */ |
5960 | 5 | void add(CopyJobPB copy_job, std::string key, const CopyJobIdTuple cope_job_id_tuple) { |
5961 | 5 | auto& [instance_id, stage_id, table_id, copy_id, path] = cope_job_id_tuple; |
5962 | 5 | auto& file_keys = copy_file_keys_[key]; |
5963 | 5 | file_keys.log_trace = |
5964 | 5 | fmt::format("instance_id={}, stage_id={}, table_id={}, query_id={}, path={}", |
5965 | 5 | instance_id, stage_id, table_id, copy_id, path); |
5966 | 5 | std::string_view log_trace = file_keys.log_trace; |
5967 | 2.03k | for (const auto& file : copy_job.object_files()) { |
5968 | 2.03k | auto relative_path = file.relative_path(); |
5969 | 2.03k | paths_.push_back(relative_path); |
5970 | 2.03k | file_keys.keys.push_back(copy_file_key( |
5971 | 2.03k | {instance_id, stage_id, table_id, file.relative_path(), file.etag()})); |
5972 | 2.03k | LOG_INFO(log_trace) |
5973 | 2.03k | .tag("relative_path", relative_path) |
5974 | 2.03k | .tag("batch_count", batch_count_); |
5975 | 2.03k | } |
5976 | 5 | LOG_INFO(log_trace) |
5977 | 5 | .tag("objects_num", copy_job.object_files().size()) |
5978 | 5 | .tag("batch_count", batch_count_); |
5979 | | // TODO(AlexYue): If the size is 1001, it would be one delete with 1000 objects and one delete request with only one object(**ATTN**: DOESN'T |
5980 | | // recommend using delete objects when objects num is less than 10) |
5981 | 5 | if (paths_.size() < 1000) { |
5982 | 3 | return; |
5983 | 3 | } |
5984 | 2 | consume(); |
5985 | 2 | } |
5986 | | |
5987 | | private: |
5988 | 5 | void consume() { |
5989 | 5 | DORIS_CLOUD_DEFER { |
5990 | 5 | paths_.clear(); |
5991 | 5 | copy_file_keys_.clear(); |
5992 | 5 | batch_count_++; |
5993 | | |
5994 | 5 | LOG_WARNING("begin to delete {} internal stage objects in batch {}", paths_.size(), |
5995 | 5 | batch_count_); |
5996 | 5 | }; |
5997 | | |
5998 | 5 | StopWatch sw; |
5999 | | // TODO(yuejing): 在accessor的delete_objets的实现里可以考虑如果_paths数量不超过10个的话,就直接发10个delete objection operation而不是发post |
6000 | 5 | if (0 != accessor_->delete_files(paths_)) { |
6001 | 2 | LOG_WARNING("failed to delete {} internal stage objects in batch {} and it takes {} us", |
6002 | 2 | paths_.size(), batch_count_, sw.elapsed_us()); |
6003 | 2 | return; |
6004 | 2 | } |
6005 | 3 | LOG_WARNING("succeed to delete {} internal stage objects in batch {} and it takes {} us", |
6006 | 3 | paths_.size(), batch_count_, sw.elapsed_us()); |
6007 | | // delete fdb's keys |
6008 | 3 | for (auto& file_keys : copy_file_keys_) { |
6009 | 3 | auto& [log_trace, keys] = file_keys.second; |
6010 | 3 | std::unique_ptr<Transaction> txn; |
6011 | 3 | if (txn_kv_->create_txn(&txn) != cloud::TxnErrorCode::TXN_OK) { |
6012 | 0 | LOG(WARNING) << "failed to create txn"; |
6013 | 0 | continue; |
6014 | 0 | } |
6015 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. |
6016 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are |
6017 | | // limited, should not cause the txn commit failed. |
6018 | 1.02k | for (const auto& key : keys) { |
6019 | 1.02k | txn->remove(key); |
6020 | 1.02k | LOG_INFO("remove copy_file_key={}, {}", hex(key), log_trace); |
6021 | 1.02k | } |
6022 | 3 | txn->remove(file_keys.first); |
6023 | 3 | if (auto ret = txn->commit(); ret != cloud::TxnErrorCode::TXN_OK) { |
6024 | 0 | LOG(WARNING) << "failed to commit txn ret is " << ret; |
6025 | 0 | continue; |
6026 | 0 | } |
6027 | 3 | } |
6028 | 3 | } |
6029 | | std::shared_ptr<StorageVaultAccessor> accessor_; |
6030 | | // the path of the s3 files to be deleted |
6031 | | std::vector<std::string> paths_; |
6032 | | struct CopyFiles { |
6033 | | std::string log_trace; |
6034 | | std::vector<std::string> keys; |
6035 | | }; |
6036 | | // pair<std::string, std::vector<std::string>> |
6037 | | // first: instance_id_ stage_id table_id query_id |
6038 | | // second: keys to be deleted |
6039 | | // <fdb key, <{instance_id_ stage_id table_id query_id}, file keys to be deleted>> |
6040 | | std::unordered_map<std::string, CopyFiles> copy_file_keys_; |
6041 | | // used to distinguish different batch tasks, the task log consists of thread ID and batch number |
6042 | | // which can together uniquely identifies different tasks for tracing log |
6043 | | uint64_t& batch_count_; |
6044 | | TxnKv* txn_kv_; |
6045 | | }; |
6046 | | |
6047 | 13 | int InstanceRecycler::recycle_copy_jobs() { |
6048 | 13 | int64_t num_scanned = 0; |
6049 | 13 | int64_t num_finished = 0; |
6050 | 13 | int64_t num_expired = 0; |
6051 | 13 | int64_t num_recycled = 0; |
6052 | | // Used for INTERNAL stage's copy jobs to tag each batch for log trace |
6053 | 13 | uint64_t batch_count = 0; |
6054 | 13 | const std::string task_name = "recycle_copy_jobs"; |
6055 | 13 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
6056 | | |
6057 | 13 | LOG_WARNING("begin to recycle copy jobs").tag("instance_id", instance_id_); |
6058 | | |
6059 | 13 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6060 | 13 | register_recycle_task(task_name, start_time); |
6061 | | |
6062 | 13 | DORIS_CLOUD_DEFER { |
6063 | 13 | unregister_recycle_task(task_name); |
6064 | 13 | int64_t cost = |
6065 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6066 | 13 | metrics_context.finish_report(); |
6067 | 13 | LOG_WARNING("recycle copy jobs finished, cost={}s", cost) |
6068 | 13 | .tag("instance_id", instance_id_) |
6069 | 13 | .tag("num_scanned", num_scanned) |
6070 | 13 | .tag("num_finished", num_finished) |
6071 | 13 | .tag("num_expired", num_expired) |
6072 | 13 | .tag("num_recycled", num_recycled); |
6073 | 13 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_0clEv Line | Count | Source | 6062 | 13 | DORIS_CLOUD_DEFER { | 6063 | 13 | unregister_recycle_task(task_name); | 6064 | 13 | int64_t cost = | 6065 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6066 | 13 | metrics_context.finish_report(); | 6067 | 13 | LOG_WARNING("recycle copy jobs finished, cost={}s", cost) | 6068 | 13 | .tag("instance_id", instance_id_) | 6069 | 13 | .tag("num_scanned", num_scanned) | 6070 | 13 | .tag("num_finished", num_finished) | 6071 | 13 | .tag("num_expired", num_expired) | 6072 | 13 | .tag("num_recycled", num_recycled); | 6073 | 13 | }; |
|
6074 | | |
6075 | 13 | CopyJobKeyInfo key_info0 {instance_id_, "", 0, "", 0}; |
6076 | 13 | CopyJobKeyInfo key_info1 {instance_id_, "\xff", 0, "", 0}; |
6077 | 13 | std::string key0; |
6078 | 13 | std::string key1; |
6079 | 13 | copy_job_key(key_info0, &key0); |
6080 | 13 | copy_job_key(key_info1, &key1); |
6081 | 13 | std::unordered_map<std::string, std::shared_ptr<BatchObjStoreAccessor>> stage_accessor_map; |
6082 | 13 | auto recycle_func = [&start_time, &num_scanned, &num_finished, &num_expired, &num_recycled, |
6083 | 13 | &batch_count, &stage_accessor_map, &task_name, &metrics_context, |
6084 | 16 | this](std::string_view k, std::string_view v) -> int { |
6085 | 16 | ++num_scanned; |
6086 | 16 | CopyJobPB copy_job; |
6087 | 16 | if (!copy_job.ParseFromArray(v.data(), v.size())) { |
6088 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); |
6089 | 0 | return -1; |
6090 | 0 | } |
6091 | | |
6092 | | // decode copy job key |
6093 | 16 | auto k1 = k; |
6094 | 16 | k1.remove_prefix(1); |
6095 | 16 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6096 | 16 | decode_key(&k1, &out); |
6097 | | // 0x01 "copy" ${instance_id} "job" ${stage_id} ${table_id} ${copy_id} ${group_id} |
6098 | | // -> CopyJobPB |
6099 | 16 | const auto& stage_id = std::get<std::string>(std::get<0>(out[3])); |
6100 | 16 | const auto& table_id = std::get<int64_t>(std::get<0>(out[4])); |
6101 | 16 | const auto& copy_id = std::get<std::string>(std::get<0>(out[5])); |
6102 | | |
6103 | 16 | bool check_storage = true; |
6104 | 16 | if (copy_job.job_status() == CopyJobPB::FINISH) { |
6105 | 12 | ++num_finished; |
6106 | | |
6107 | 12 | if (copy_job.stage_type() == StagePB::INTERNAL) { |
6108 | 7 | auto it = stage_accessor_map.find(stage_id); |
6109 | 7 | std::shared_ptr<BatchObjStoreAccessor> accessor; |
6110 | 7 | std::string_view path; |
6111 | 7 | if (it != stage_accessor_map.end()) { |
6112 | 2 | accessor = it->second; |
6113 | 5 | } else { |
6114 | 5 | std::shared_ptr<StorageVaultAccessor> inner_accessor; |
6115 | 5 | auto ret = init_copy_job_accessor(stage_id, copy_job.stage_type(), |
6116 | 5 | &inner_accessor); |
6117 | 5 | if (ret < 0) { // error |
6118 | 0 | LOG_WARNING("Failed to init_copy_job_accessor due to error code {}", ret); |
6119 | 0 | return -1; |
6120 | 5 | } else if (ret == 0) { |
6121 | 3 | path = inner_accessor->uri(); |
6122 | 3 | accessor = std::make_shared<BatchObjStoreAccessor>( |
6123 | 3 | inner_accessor, batch_count, txn_kv_.get()); |
6124 | 3 | stage_accessor_map.emplace(stage_id, accessor); |
6125 | 3 | } else { // stage not found, skip check storage |
6126 | 2 | check_storage = false; |
6127 | 2 | } |
6128 | 5 | } |
6129 | 7 | if (check_storage) { |
6130 | | // TODO delete objects with key and etag is not supported |
6131 | 5 | accessor->add(std::move(copy_job), std::string(k), |
6132 | 5 | {instance_id_, stage_id, table_id, copy_id, std::string(path)}); |
6133 | 5 | return 0; |
6134 | 5 | } |
6135 | 7 | } else if (copy_job.stage_type() == StagePB::EXTERNAL) { |
6136 | 5 | int64_t current_time = |
6137 | 5 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6138 | 5 | if (copy_job.finish_time_ms() > 0) { |
6139 | 2 | if (!config::force_immediate_recycle && |
6140 | 2 | current_time < copy_job.finish_time_ms() + |
6141 | 2 | config::copy_job_max_retention_second * 1000) { |
6142 | 1 | return 0; |
6143 | 1 | } |
6144 | 3 | } else { |
6145 | | // For compatibility, copy job does not contain finish time before 2.2.2, use start time |
6146 | 3 | if (!config::force_immediate_recycle && |
6147 | 3 | current_time < copy_job.start_time_ms() + |
6148 | 3 | config::copy_job_max_retention_second * 1000) { |
6149 | 1 | return 0; |
6150 | 1 | } |
6151 | 3 | } |
6152 | 5 | } |
6153 | 12 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { |
6154 | 4 | int64_t current_time = |
6155 | 4 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6156 | | // if copy job is timeout: delete all copy file kvs and copy job kv |
6157 | 4 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { |
6158 | 2 | return 0; |
6159 | 2 | } |
6160 | 2 | ++num_expired; |
6161 | 2 | } |
6162 | | |
6163 | | // delete all copy files |
6164 | 7 | std::vector<std::string> copy_file_keys; |
6165 | 70 | for (auto& file : copy_job.object_files()) { |
6166 | 70 | copy_file_keys.push_back(copy_file_key( |
6167 | 70 | {instance_id_, stage_id, table_id, file.relative_path(), file.etag()})); |
6168 | 70 | } |
6169 | 7 | std::unique_ptr<Transaction> txn; |
6170 | 7 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
6171 | 0 | LOG(WARNING) << "failed to create txn"; |
6172 | 0 | return -1; |
6173 | 0 | } |
6174 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. |
6175 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are |
6176 | | // limited, should not cause the txn commit failed. |
6177 | 70 | for (const auto& key : copy_file_keys) { |
6178 | 70 | txn->remove(key); |
6179 | 70 | LOG(INFO) << "remove copy_file_key=" << hex(key) << ", instance_id=" << instance_id_ |
6180 | 70 | << ", stage_id=" << stage_id << ", table_id=" << table_id |
6181 | 70 | << ", query_id=" << copy_id; |
6182 | 70 | } |
6183 | 7 | txn->remove(k); |
6184 | 7 | TxnErrorCode err = txn->commit(); |
6185 | 7 | if (err != TxnErrorCode::TXN_OK) { |
6186 | 0 | LOG(WARNING) << "failed to commit txn, err=" << err; |
6187 | 0 | return -1; |
6188 | 0 | } |
6189 | | |
6190 | 7 | metrics_context.total_recycled_num = ++num_recycled; |
6191 | 7 | metrics_context.report(); |
6192 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
6193 | 7 | return 0; |
6194 | 7 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 6084 | 16 | this](std::string_view k, std::string_view v) -> int { | 6085 | 16 | ++num_scanned; | 6086 | 16 | CopyJobPB copy_job; | 6087 | 16 | if (!copy_job.ParseFromArray(v.data(), v.size())) { | 6088 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); | 6089 | 0 | return -1; | 6090 | 0 | } | 6091 | | | 6092 | | // decode copy job key | 6093 | 16 | auto k1 = k; | 6094 | 16 | k1.remove_prefix(1); | 6095 | 16 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 6096 | 16 | decode_key(&k1, &out); | 6097 | | // 0x01 "copy" ${instance_id} "job" ${stage_id} ${table_id} ${copy_id} ${group_id} | 6098 | | // -> CopyJobPB | 6099 | 16 | const auto& stage_id = std::get<std::string>(std::get<0>(out[3])); | 6100 | 16 | const auto& table_id = std::get<int64_t>(std::get<0>(out[4])); | 6101 | 16 | const auto& copy_id = std::get<std::string>(std::get<0>(out[5])); | 6102 | | | 6103 | 16 | bool check_storage = true; | 6104 | 16 | if (copy_job.job_status() == CopyJobPB::FINISH) { | 6105 | 12 | ++num_finished; | 6106 | | | 6107 | 12 | if (copy_job.stage_type() == StagePB::INTERNAL) { | 6108 | 7 | auto it = stage_accessor_map.find(stage_id); | 6109 | 7 | std::shared_ptr<BatchObjStoreAccessor> accessor; | 6110 | 7 | std::string_view path; | 6111 | 7 | if (it != stage_accessor_map.end()) { | 6112 | 2 | accessor = it->second; | 6113 | 5 | } else { | 6114 | 5 | std::shared_ptr<StorageVaultAccessor> inner_accessor; | 6115 | 5 | auto ret = init_copy_job_accessor(stage_id, copy_job.stage_type(), | 6116 | 5 | &inner_accessor); | 6117 | 5 | if (ret < 0) { // error | 6118 | 0 | LOG_WARNING("Failed to init_copy_job_accessor due to error code {}", ret); | 6119 | 0 | return -1; | 6120 | 5 | } else if (ret == 0) { | 6121 | 3 | path = inner_accessor->uri(); | 6122 | 3 | accessor = std::make_shared<BatchObjStoreAccessor>( | 6123 | 3 | inner_accessor, batch_count, txn_kv_.get()); | 6124 | 3 | stage_accessor_map.emplace(stage_id, accessor); | 6125 | 3 | } else { // stage not found, skip check storage | 6126 | 2 | check_storage = false; | 6127 | 2 | } | 6128 | 5 | } | 6129 | 7 | if (check_storage) { | 6130 | | // TODO delete objects with key and etag is not supported | 6131 | 5 | accessor->add(std::move(copy_job), std::string(k), | 6132 | 5 | {instance_id_, stage_id, table_id, copy_id, std::string(path)}); | 6133 | 5 | return 0; | 6134 | 5 | } | 6135 | 7 | } else if (copy_job.stage_type() == StagePB::EXTERNAL) { | 6136 | 5 | int64_t current_time = | 6137 | 5 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); | 6138 | 5 | if (copy_job.finish_time_ms() > 0) { | 6139 | 2 | if (!config::force_immediate_recycle && | 6140 | 2 | current_time < copy_job.finish_time_ms() + | 6141 | 2 | config::copy_job_max_retention_second * 1000) { | 6142 | 1 | return 0; | 6143 | 1 | } | 6144 | 3 | } else { | 6145 | | // For compatibility, copy job does not contain finish time before 2.2.2, use start time | 6146 | 3 | if (!config::force_immediate_recycle && | 6147 | 3 | current_time < copy_job.start_time_ms() + | 6148 | 3 | config::copy_job_max_retention_second * 1000) { | 6149 | 1 | return 0; | 6150 | 1 | } | 6151 | 3 | } | 6152 | 5 | } | 6153 | 12 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { | 6154 | 4 | int64_t current_time = | 6155 | 4 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); | 6156 | | // if copy job is timeout: delete all copy file kvs and copy job kv | 6157 | 4 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { | 6158 | 2 | return 0; | 6159 | 2 | } | 6160 | 2 | ++num_expired; | 6161 | 2 | } | 6162 | | | 6163 | | // delete all copy files | 6164 | 7 | std::vector<std::string> copy_file_keys; | 6165 | 70 | for (auto& file : copy_job.object_files()) { | 6166 | 70 | copy_file_keys.push_back(copy_file_key( | 6167 | 70 | {instance_id_, stage_id, table_id, file.relative_path(), file.etag()})); | 6168 | 70 | } | 6169 | 7 | std::unique_ptr<Transaction> txn; | 6170 | 7 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 6171 | 0 | LOG(WARNING) << "failed to create txn"; | 6172 | 0 | return -1; | 6173 | 0 | } | 6174 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. | 6175 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are | 6176 | | // limited, should not cause the txn commit failed. | 6177 | 70 | for (const auto& key : copy_file_keys) { | 6178 | 70 | txn->remove(key); | 6179 | 70 | LOG(INFO) << "remove copy_file_key=" << hex(key) << ", instance_id=" << instance_id_ | 6180 | 70 | << ", stage_id=" << stage_id << ", table_id=" << table_id | 6181 | 70 | << ", query_id=" << copy_id; | 6182 | 70 | } | 6183 | 7 | txn->remove(k); | 6184 | 7 | TxnErrorCode err = txn->commit(); | 6185 | 7 | if (err != TxnErrorCode::TXN_OK) { | 6186 | 0 | LOG(WARNING) << "failed to commit txn, err=" << err; | 6187 | 0 | return -1; | 6188 | 0 | } | 6189 | | | 6190 | 7 | metrics_context.total_recycled_num = ++num_recycled; | 6191 | 7 | metrics_context.report(); | 6192 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 6193 | 7 | return 0; | 6194 | 7 | }; |
|
6195 | | |
6196 | 13 | if (config::enable_recycler_stats_metrics) { |
6197 | 0 | scan_and_statistics_copy_jobs(); |
6198 | 0 | } |
6199 | | // recycle_func and loop_done for scan and recycle |
6200 | 13 | return scan_and_recycle(key0, key1, std::move(recycle_func)); |
6201 | 13 | } |
6202 | | |
6203 | | int InstanceRecycler::init_copy_job_accessor(const std::string& stage_id, |
6204 | | const StagePB::StageType& stage_type, |
6205 | 5 | std::shared_ptr<StorageVaultAccessor>* accessor) { |
6206 | 5 | #ifdef UNIT_TEST |
6207 | | // In unit test, external use the same accessor as the internal stage |
6208 | 5 | auto it = accessor_map_.find(stage_id); |
6209 | 5 | if (it != accessor_map_.end()) { |
6210 | 3 | *accessor = it->second; |
6211 | 3 | } else { |
6212 | 2 | std::cout << "UT can not find accessor with stage_id: " << stage_id << std::endl; |
6213 | 2 | return 1; |
6214 | 2 | } |
6215 | | #else |
6216 | | // init s3 accessor and add to accessor map |
6217 | | auto stage_it = |
6218 | | std::find_if(instance_info_.stages().begin(), instance_info_.stages().end(), |
6219 | | [&stage_id](auto&& stage) { return stage.stage_id() == stage_id; }); |
6220 | | |
6221 | | if (stage_it == instance_info_.stages().end()) { |
6222 | | LOG(INFO) << "Recycle nonexisted stage copy jobs. instance_id=" << instance_id_ |
6223 | | << ", stage_id=" << stage_id << ", stage_type=" << stage_type; |
6224 | | return 1; |
6225 | | } |
6226 | | |
6227 | | const auto& object_store_info = stage_it->obj_info(); |
6228 | | auto stage_access_type = stage_it->has_access_type() ? stage_it->access_type() : StagePB::AKSK; |
6229 | | |
6230 | | S3Conf s3_conf; |
6231 | | if (stage_type == StagePB::EXTERNAL) { |
6232 | | if (stage_access_type == StagePB::AKSK) { |
6233 | | auto conf = S3Conf::from_obj_store_info(object_store_info); |
6234 | | if (!conf) { |
6235 | | return -1; |
6236 | | } |
6237 | | |
6238 | | s3_conf = std::move(*conf); |
6239 | | } else if (stage_access_type == StagePB::BUCKET_ACL) { |
6240 | | auto conf = S3Conf::from_obj_store_info(object_store_info, true /* skip_aksk */); |
6241 | | if (!conf) { |
6242 | | return -1; |
6243 | | } |
6244 | | |
6245 | | s3_conf = std::move(*conf); |
6246 | | if (instance_info_.ram_user().has_encryption_info()) { |
6247 | | AkSkPair plain_ak_sk_pair; |
6248 | | int ret = decrypt_ak_sk_helper( |
6249 | | instance_info_.ram_user().ak(), instance_info_.ram_user().sk(), |
6250 | | instance_info_.ram_user().encryption_info(), &plain_ak_sk_pair); |
6251 | | if (ret != 0) { |
6252 | | LOG(WARNING) << "fail to decrypt ak sk. instance_id: " << instance_id_ |
6253 | | << " ram_user: " << proto_to_json(instance_info_.ram_user()); |
6254 | | return -1; |
6255 | | } |
6256 | | s3_conf.ak = std::move(plain_ak_sk_pair.first); |
6257 | | s3_conf.sk = std::move(plain_ak_sk_pair.second); |
6258 | | } else { |
6259 | | s3_conf.ak = instance_info_.ram_user().ak(); |
6260 | | s3_conf.sk = instance_info_.ram_user().sk(); |
6261 | | } |
6262 | | } else { |
6263 | | LOG(INFO) << "Unsupported stage access type=" << stage_access_type |
6264 | | << ", instance_id=" << instance_id_ << ", stage_id=" << stage_id; |
6265 | | return -1; |
6266 | | } |
6267 | | } else if (stage_type == StagePB::INTERNAL) { |
6268 | | int idx = stoi(object_store_info.id()); |
6269 | | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6270 | | LOG(WARNING) << "invalid idx: " << idx; |
6271 | | return -1; |
6272 | | } |
6273 | | |
6274 | | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6275 | | auto conf = S3Conf::from_obj_store_info(old_obj); |
6276 | | if (!conf) { |
6277 | | return -1; |
6278 | | } |
6279 | | |
6280 | | s3_conf = std::move(*conf); |
6281 | | s3_conf.prefix = object_store_info.prefix(); |
6282 | | } else { |
6283 | | LOG(WARNING) << "unknown stage type " << stage_type; |
6284 | | return -1; |
6285 | | } |
6286 | | |
6287 | | std::shared_ptr<S3Accessor> s3_accessor; |
6288 | | int ret = S3Accessor::create(std::move(s3_conf), &s3_accessor); |
6289 | | if (ret != 0) { |
6290 | | LOG(WARNING) << "failed to init s3 accessor ret=" << ret; |
6291 | | return -1; |
6292 | | } |
6293 | | |
6294 | | *accessor = std::move(s3_accessor); |
6295 | | #endif |
6296 | 3 | return 0; |
6297 | 5 | } |
6298 | | |
6299 | 11 | int InstanceRecycler::recycle_stage() { |
6300 | 11 | int64_t num_scanned = 0; |
6301 | 11 | int64_t num_recycled = 0; |
6302 | 11 | const std::string task_name = "recycle_stage"; |
6303 | 11 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
6304 | | |
6305 | 11 | LOG_WARNING("begin to recycle stage").tag("instance_id", instance_id_); |
6306 | | |
6307 | 11 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6308 | 11 | register_recycle_task(task_name, start_time); |
6309 | | |
6310 | 11 | DORIS_CLOUD_DEFER { |
6311 | 11 | unregister_recycle_task(task_name); |
6312 | 11 | int64_t cost = |
6313 | 11 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6314 | 11 | metrics_context.finish_report(); |
6315 | 11 | LOG_WARNING("recycle stage, cost={}s", cost) |
6316 | 11 | .tag("instance_id", instance_id_) |
6317 | 11 | .tag("num_scanned", num_scanned) |
6318 | 11 | .tag("num_recycled", num_recycled); |
6319 | 11 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_0clEv Line | Count | Source | 6310 | 11 | DORIS_CLOUD_DEFER { | 6311 | 11 | unregister_recycle_task(task_name); | 6312 | 11 | int64_t cost = | 6313 | 11 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6314 | 11 | metrics_context.finish_report(); | 6315 | 11 | LOG_WARNING("recycle stage, cost={}s", cost) | 6316 | 11 | .tag("instance_id", instance_id_) | 6317 | 11 | .tag("num_scanned", num_scanned) | 6318 | 11 | .tag("num_recycled", num_recycled); | 6319 | 11 | }; |
|
6320 | | |
6321 | 11 | RecycleStageKeyInfo key_info0 {instance_id_, ""}; |
6322 | 11 | RecycleStageKeyInfo key_info1 {instance_id_, "\xff"}; |
6323 | 11 | std::string key0 = recycle_stage_key(key_info0); |
6324 | 11 | std::string key1 = recycle_stage_key(key_info1); |
6325 | | |
6326 | 11 | std::vector<std::string_view> stage_keys; |
6327 | 11 | auto recycle_func = [&start_time, &num_scanned, &num_recycled, &stage_keys, &metrics_context, |
6328 | 11 | this](std::string_view k, std::string_view v) -> int { |
6329 | 1 | ++num_scanned; |
6330 | 1 | RecycleStagePB recycle_stage; |
6331 | 1 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { |
6332 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); |
6333 | 0 | return -1; |
6334 | 0 | } |
6335 | | |
6336 | 1 | int idx = stoi(recycle_stage.stage().obj_info().id()); |
6337 | 1 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6338 | 0 | LOG(WARNING) << "invalid idx: " << idx; |
6339 | 0 | return -1; |
6340 | 0 | } |
6341 | | |
6342 | 1 | std::shared_ptr<StorageVaultAccessor> accessor; |
6343 | 1 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( |
6344 | 1 | [&] { |
6345 | 1 | auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6346 | 1 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6347 | 1 | if (!s3_conf) { |
6348 | 1 | return -1; |
6349 | 1 | } |
6350 | | |
6351 | 1 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); |
6352 | 1 | std::shared_ptr<S3Accessor> s3_accessor; |
6353 | 1 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); |
6354 | 1 | if (ret != 0) { |
6355 | 1 | return -1; |
6356 | 1 | } |
6357 | | |
6358 | 1 | accessor = std::move(s3_accessor); |
6359 | 1 | return 0; |
6360 | 1 | }(), |
6361 | 1 | "recycle_stage:get_accessor", &accessor); |
6362 | | |
6363 | 1 | if (ret != 0) { |
6364 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; |
6365 | 0 | return ret; |
6366 | 0 | } |
6367 | | |
6368 | 1 | LOG_WARNING("begin to delete objects of dropped internal stage") |
6369 | 1 | .tag("instance_id", instance_id_) |
6370 | 1 | .tag("stage_id", recycle_stage.stage().stage_id()) |
6371 | 1 | .tag("user_name", recycle_stage.stage().mysql_user_name()[0]) |
6372 | 1 | .tag("user_id", recycle_stage.stage().mysql_user_id()[0]) |
6373 | 1 | .tag("obj_info_id", idx) |
6374 | 1 | .tag("prefix", recycle_stage.stage().obj_info().prefix()); |
6375 | 1 | ret = accessor->delete_all(); |
6376 | 1 | if (ret != 0) { |
6377 | 0 | LOG(WARNING) << "failed to delete objects of dropped internal stage. instance_id=" |
6378 | 0 | << instance_id_ << ", stage_id=" << recycle_stage.stage().stage_id() |
6379 | 0 | << ", prefix=" << recycle_stage.stage().obj_info().prefix() |
6380 | 0 | << ", ret=" << ret; |
6381 | 0 | return -1; |
6382 | 0 | } |
6383 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
6384 | 1 | metrics_context.report(); |
6385 | 1 | check_recycle_task(instance_id_, "recycle_stage", num_scanned, num_recycled, start_time); |
6386 | 1 | stage_keys.push_back(k); |
6387 | 1 | return 0; |
6388 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 6328 | 1 | this](std::string_view k, std::string_view v) -> int { | 6329 | 1 | ++num_scanned; | 6330 | 1 | RecycleStagePB recycle_stage; | 6331 | 1 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { | 6332 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); | 6333 | 0 | return -1; | 6334 | 0 | } | 6335 | | | 6336 | 1 | int idx = stoi(recycle_stage.stage().obj_info().id()); | 6337 | 1 | if (idx > instance_info_.obj_info().size() || idx < 1) { | 6338 | 0 | LOG(WARNING) << "invalid idx: " << idx; | 6339 | 0 | return -1; | 6340 | 0 | } | 6341 | | | 6342 | 1 | std::shared_ptr<StorageVaultAccessor> accessor; | 6343 | 1 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( | 6344 | 1 | [&] { | 6345 | 1 | auto& old_obj = instance_info_.obj_info()[idx - 1]; | 6346 | 1 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); | 6347 | 1 | if (!s3_conf) { | 6348 | 1 | return -1; | 6349 | 1 | } | 6350 | | | 6351 | 1 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); | 6352 | 1 | std::shared_ptr<S3Accessor> s3_accessor; | 6353 | 1 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); | 6354 | 1 | if (ret != 0) { | 6355 | 1 | return -1; | 6356 | 1 | } | 6357 | | | 6358 | 1 | accessor = std::move(s3_accessor); | 6359 | 1 | return 0; | 6360 | 1 | }(), | 6361 | 1 | "recycle_stage:get_accessor", &accessor); | 6362 | | | 6363 | 1 | if (ret != 0) { | 6364 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; | 6365 | 0 | return ret; | 6366 | 0 | } | 6367 | | | 6368 | 1 | LOG_WARNING("begin to delete objects of dropped internal stage") | 6369 | 1 | .tag("instance_id", instance_id_) | 6370 | 1 | .tag("stage_id", recycle_stage.stage().stage_id()) | 6371 | 1 | .tag("user_name", recycle_stage.stage().mysql_user_name()[0]) | 6372 | 1 | .tag("user_id", recycle_stage.stage().mysql_user_id()[0]) | 6373 | 1 | .tag("obj_info_id", idx) | 6374 | 1 | .tag("prefix", recycle_stage.stage().obj_info().prefix()); | 6375 | 1 | ret = accessor->delete_all(); | 6376 | 1 | if (ret != 0) { | 6377 | 0 | LOG(WARNING) << "failed to delete objects of dropped internal stage. instance_id=" | 6378 | 0 | << instance_id_ << ", stage_id=" << recycle_stage.stage().stage_id() | 6379 | 0 | << ", prefix=" << recycle_stage.stage().obj_info().prefix() | 6380 | 0 | << ", ret=" << ret; | 6381 | 0 | return -1; | 6382 | 0 | } | 6383 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 6384 | 1 | metrics_context.report(); | 6385 | 1 | check_recycle_task(instance_id_, "recycle_stage", num_scanned, num_recycled, start_time); | 6386 | 1 | stage_keys.push_back(k); | 6387 | 1 | return 0; | 6388 | 1 | }; |
|
6389 | | |
6390 | 11 | auto loop_done = [&stage_keys, this]() -> int { |
6391 | 1 | if (stage_keys.empty()) return 0; |
6392 | 1 | DORIS_CLOUD_DEFER { |
6393 | 1 | stage_keys.clear(); |
6394 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEvENKUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 6392 | 1 | DORIS_CLOUD_DEFER { | 6393 | 1 | stage_keys.clear(); | 6394 | 1 | }; |
|
6395 | 1 | if (0 != txn_remove(txn_kv_.get(), stage_keys)) { |
6396 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; |
6397 | 0 | return -1; |
6398 | 0 | } |
6399 | 1 | return 0; |
6400 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEv Line | Count | Source | 6390 | 1 | auto loop_done = [&stage_keys, this]() -> int { | 6391 | 1 | if (stage_keys.empty()) return 0; | 6392 | 1 | DORIS_CLOUD_DEFER { | 6393 | 1 | stage_keys.clear(); | 6394 | 1 | }; | 6395 | 1 | if (0 != txn_remove(txn_kv_.get(), stage_keys)) { | 6396 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 6397 | 0 | return -1; | 6398 | 0 | } | 6399 | 1 | return 0; | 6400 | 1 | }; |
|
6401 | 11 | if (config::enable_recycler_stats_metrics) { |
6402 | 0 | scan_and_statistics_stage(); |
6403 | 0 | } |
6404 | | // recycle_func and loop_done for scan and recycle |
6405 | 11 | return scan_and_recycle(key0, key1, std::move(recycle_func), std::move(loop_done)); |
6406 | 11 | } |
6407 | | |
6408 | 10 | int InstanceRecycler::recycle_expired_stage_objects() { |
6409 | 10 | LOG_WARNING("begin to recycle expired stage objects").tag("instance_id", instance_id_); |
6410 | | |
6411 | 10 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6412 | 10 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_stage_objects"); |
6413 | | |
6414 | 10 | DORIS_CLOUD_DEFER { |
6415 | 10 | int64_t cost = |
6416 | 10 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6417 | 10 | metrics_context.finish_report(); |
6418 | 10 | LOG_WARNING("recycle expired stage objects, cost={}s", cost) |
6419 | 10 | .tag("instance_id", instance_id_); |
6420 | 10 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler29recycle_expired_stage_objectsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler29recycle_expired_stage_objectsEvENK3$_0clEv Line | Count | Source | 6414 | 10 | DORIS_CLOUD_DEFER { | 6415 | 10 | int64_t cost = | 6416 | 10 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6417 | 10 | metrics_context.finish_report(); | 6418 | 10 | LOG_WARNING("recycle expired stage objects, cost={}s", cost) | 6419 | 10 | .tag("instance_id", instance_id_); | 6420 | 10 | }; |
|
6421 | | |
6422 | 10 | int ret = 0; |
6423 | | |
6424 | 10 | if (config::enable_recycler_stats_metrics) { |
6425 | 0 | scan_and_statistics_expired_stage_objects(); |
6426 | 0 | } |
6427 | | |
6428 | 10 | for (const auto& stage : instance_info_.stages()) { |
6429 | 0 | std::stringstream ss; |
6430 | 0 | ss << "instance_id=" << instance_id_ << ", stage_id=" << stage.stage_id() << ", user_name=" |
6431 | 0 | << (stage.mysql_user_name().empty() ? "null" : stage.mysql_user_name().at(0)) |
6432 | 0 | << ", user_id=" << (stage.mysql_user_id().empty() ? "null" : stage.mysql_user_id().at(0)) |
6433 | 0 | << ", prefix=" << stage.obj_info().prefix(); |
6434 | |
|
6435 | 0 | if (stopped()) { |
6436 | 0 | break; |
6437 | 0 | } |
6438 | 0 | if (stage.type() == StagePB::EXTERNAL) { |
6439 | 0 | continue; |
6440 | 0 | } |
6441 | 0 | int idx = stoi(stage.obj_info().id()); |
6442 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6443 | 0 | LOG(WARNING) << "invalid idx: " << idx << ", id: " << stage.obj_info().id(); |
6444 | 0 | continue; |
6445 | 0 | } |
6446 | | |
6447 | 0 | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6448 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6449 | 0 | if (!s3_conf) { |
6450 | 0 | LOG(WARNING) << "failed to init s3_conf with obj_info=" << old_obj.ShortDebugString(); |
6451 | 0 | continue; |
6452 | 0 | } |
6453 | | |
6454 | 0 | s3_conf->prefix = stage.obj_info().prefix(); |
6455 | 0 | std::shared_ptr<S3Accessor> accessor; |
6456 | 0 | int ret1 = S3Accessor::create(*s3_conf, &accessor); |
6457 | 0 | if (ret1 != 0) { |
6458 | 0 | LOG(WARNING) << "failed to init s3 accessor ret=" << ret1 << " " << ss.str(); |
6459 | 0 | ret = -1; |
6460 | 0 | continue; |
6461 | 0 | } |
6462 | | |
6463 | 0 | if (s3_conf->prefix.find("/stage/") == std::string::npos) { |
6464 | 0 | LOG(WARNING) << "try to delete illegal prefix, which is catastrophic, " << ss.str(); |
6465 | 0 | ret = -1; |
6466 | 0 | continue; |
6467 | 0 | } |
6468 | | |
6469 | 0 | LOG(INFO) << "recycle expired stage objects, " << ss.str(); |
6470 | 0 | int64_t expiration_time = |
6471 | 0 | duration_cast<seconds>(system_clock::now().time_since_epoch()).count() - |
6472 | 0 | config::internal_stage_objects_expire_time_second; |
6473 | 0 | if (config::force_immediate_recycle) { |
6474 | 0 | expiration_time = INT64_MAX; |
6475 | 0 | } |
6476 | 0 | ret1 = accessor->delete_all(expiration_time); |
6477 | 0 | if (ret1 != 0) { |
6478 | 0 | LOG(WARNING) << "failed to recycle expired stage objects, ret=" << ret1 << " " |
6479 | 0 | << ss.str(); |
6480 | 0 | ret = -1; |
6481 | 0 | continue; |
6482 | 0 | } |
6483 | 0 | metrics_context.total_recycled_num++; |
6484 | 0 | metrics_context.report(); |
6485 | 0 | } |
6486 | 10 | return ret; |
6487 | 10 | } |
6488 | | |
6489 | 180 | void InstanceRecycler::register_recycle_task(const std::string& task_name, int64_t start_time) { |
6490 | 180 | std::lock_guard lock(recycle_tasks_mutex); |
6491 | 180 | running_recycle_tasks[task_name] = start_time; |
6492 | 180 | } |
6493 | | |
6494 | 180 | void InstanceRecycler::unregister_recycle_task(const std::string& task_name) { |
6495 | 180 | std::lock_guard lock(recycle_tasks_mutex); |
6496 | 180 | DCHECK(running_recycle_tasks[task_name] > 0); |
6497 | 180 | running_recycle_tasks.erase(task_name); |
6498 | 180 | } |
6499 | | |
6500 | 21 | bool InstanceRecycler::check_recycle_tasks() { |
6501 | 21 | std::map<std::string, int64_t> tmp_running_recycle_tasks; |
6502 | 21 | { |
6503 | 21 | std::lock_guard lock(recycle_tasks_mutex); |
6504 | 21 | tmp_running_recycle_tasks = running_recycle_tasks; |
6505 | 21 | } |
6506 | | |
6507 | 21 | bool found = false; |
6508 | 21 | int64_t now = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6509 | 21 | for (auto& [task_name, start_time] : tmp_running_recycle_tasks) { |
6510 | 20 | int64_t cost = now - start_time; |
6511 | 20 | if (cost > config::recycle_task_threshold_seconds) [[unlikely]] { |
6512 | 20 | LOG_INFO("recycle task cost too much time cost={}s", cost) |
6513 | 20 | .tag("instance_id", instance_id_) |
6514 | 20 | .tag("task", task_name); |
6515 | 20 | found = true; |
6516 | 20 | } |
6517 | 20 | } |
6518 | | |
6519 | 21 | return found; |
6520 | 21 | } |
6521 | | |
6522 | | // Scan and statistics indexes that need to be recycled |
6523 | 0 | int InstanceRecycler::scan_and_statistics_indexes() { |
6524 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_indexes"); |
6525 | |
|
6526 | 0 | RecycleIndexKeyInfo index_key_info0 {instance_id_, 0}; |
6527 | 0 | RecycleIndexKeyInfo index_key_info1 {instance_id_, INT64_MAX}; |
6528 | 0 | std::string index_key0; |
6529 | 0 | std::string index_key1; |
6530 | 0 | recycle_index_key(index_key_info0, &index_key0); |
6531 | 0 | recycle_index_key(index_key_info1, &index_key1); |
6532 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6533 | |
|
6534 | 0 | auto handle_index_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6535 | 0 | RecycleIndexPB index_pb; |
6536 | 0 | if (!index_pb.ParseFromArray(v.data(), v.size())) { |
6537 | 0 | return 0; |
6538 | 0 | } |
6539 | 0 | int64_t current_time = ::time(nullptr); |
6540 | 0 | if (current_time < |
6541 | 0 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired |
6542 | 0 | return 0; |
6543 | 0 | } |
6544 | | // decode index_id |
6545 | 0 | auto k1 = k; |
6546 | 0 | k1.remove_prefix(1); |
6547 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6548 | 0 | decode_key(&k1, &out); |
6549 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB |
6550 | 0 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); |
6551 | 0 | std::unique_ptr<Transaction> txn; |
6552 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6553 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6554 | 0 | return 0; |
6555 | 0 | } |
6556 | 0 | std::string val; |
6557 | 0 | err = txn->get(k, &val); |
6558 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
6559 | 0 | return 0; |
6560 | 0 | } |
6561 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6562 | 0 | return 0; |
6563 | 0 | } |
6564 | 0 | index_pb.Clear(); |
6565 | 0 | if (!index_pb.ParseFromString(val)) { |
6566 | 0 | return 0; |
6567 | 0 | } |
6568 | 0 | if (scan_tablets_and_statistics(index_pb.table_id(), index_id, metrics_context) != 0) { |
6569 | 0 | return 0; |
6570 | 0 | } |
6571 | 0 | metrics_context.total_need_recycle_num++; |
6572 | 0 | return 0; |
6573 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_and_statistics_indexesEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_and_statistics_indexesEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6574 | |
|
6575 | 0 | int ret = scan_and_recycle(index_key0, index_key1, std::move(handle_index_kv)); |
6576 | 0 | metrics_context.report(true); |
6577 | 0 | segment_metrics_context_.report(true); |
6578 | 0 | tablet_metrics_context_.report(true); |
6579 | 0 | return ret; |
6580 | 0 | } |
6581 | | |
6582 | | // Scan and statistics partitions that need to be recycled |
6583 | 0 | int InstanceRecycler::scan_and_statistics_partitions() { |
6584 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_partitions"); |
6585 | |
|
6586 | 0 | RecyclePartKeyInfo part_key_info0 {instance_id_, 0}; |
6587 | 0 | RecyclePartKeyInfo part_key_info1 {instance_id_, INT64_MAX}; |
6588 | 0 | std::string part_key0; |
6589 | 0 | std::string part_key1; |
6590 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6591 | |
|
6592 | 0 | recycle_partition_key(part_key_info0, &part_key0); |
6593 | 0 | recycle_partition_key(part_key_info1, &part_key1); |
6594 | 0 | auto handle_partition_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6595 | 0 | RecyclePartitionPB part_pb; |
6596 | 0 | if (!part_pb.ParseFromArray(v.data(), v.size())) { |
6597 | 0 | return 0; |
6598 | 0 | } |
6599 | 0 | int64_t current_time = ::time(nullptr); |
6600 | 0 | if (current_time < |
6601 | 0 | calculate_partition_expired_time(instance_id_, part_pb, &earlest_ts)) { // not expired |
6602 | 0 | return 0; |
6603 | 0 | } |
6604 | | // decode partition_id |
6605 | 0 | auto k1 = k; |
6606 | 0 | k1.remove_prefix(1); |
6607 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6608 | 0 | decode_key(&k1, &out); |
6609 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB |
6610 | 0 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); |
6611 | | // Change state to RECYCLING |
6612 | 0 | std::unique_ptr<Transaction> txn; |
6613 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6614 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6615 | 0 | return 0; |
6616 | 0 | } |
6617 | 0 | std::string val; |
6618 | 0 | err = txn->get(k, &val); |
6619 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
6620 | 0 | return 0; |
6621 | 0 | } |
6622 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6623 | 0 | return 0; |
6624 | 0 | } |
6625 | 0 | part_pb.Clear(); |
6626 | 0 | if (!part_pb.ParseFromString(val)) { |
6627 | 0 | return 0; |
6628 | 0 | } |
6629 | | // Partitions with PREPARED state MUST have no data |
6630 | 0 | bool is_empty_tablet = part_pb.state() == RecyclePartitionPB::PREPARED; |
6631 | 0 | int ret = 0; |
6632 | 0 | for (int64_t index_id : part_pb.index_id()) { |
6633 | 0 | if (scan_tablets_and_statistics(part_pb.table_id(), index_id, metrics_context, |
6634 | 0 | partition_id, is_empty_tablet) != 0) { |
6635 | 0 | ret = 0; |
6636 | 0 | } |
6637 | 0 | } |
6638 | 0 | metrics_context.total_need_recycle_num++; |
6639 | 0 | return ret; |
6640 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler30scan_and_statistics_partitionsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler30scan_and_statistics_partitionsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6641 | |
|
6642 | 0 | int ret = scan_and_recycle(part_key0, part_key1, std::move(handle_partition_kv)); |
6643 | 0 | metrics_context.report(true); |
6644 | 0 | segment_metrics_context_.report(true); |
6645 | 0 | tablet_metrics_context_.report(true); |
6646 | 0 | return ret; |
6647 | 0 | } |
6648 | | |
6649 | | // Scan and statistics rowsets that need to be recycled |
6650 | 0 | int InstanceRecycler::scan_and_statistics_rowsets() { |
6651 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_rowsets"); |
6652 | 0 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
6653 | 0 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
6654 | 0 | std::string recyc_rs_key0; |
6655 | 0 | std::string recyc_rs_key1; |
6656 | 0 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
6657 | 0 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
6658 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6659 | |
|
6660 | 0 | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6661 | 0 | RecycleRowsetPB rowset; |
6662 | 0 | if (!rowset.ParseFromArray(v.data(), v.size())) { |
6663 | 0 | return 0; |
6664 | 0 | } |
6665 | 0 | auto* rowset_meta = rowset.mutable_rowset_meta(); |
6666 | 0 | int64_t current_time = ::time(nullptr); |
6667 | 0 | if (current_time < |
6668 | 0 | calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts)) { // not expired |
6669 | 0 | return 0; |
6670 | 0 | } |
6671 | | |
6672 | 0 | if (!rowset.has_type()) { |
6673 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { |
6674 | 0 | return 0; |
6675 | 0 | } |
6676 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { |
6677 | 0 | return 0; |
6678 | 0 | } |
6679 | 0 | metrics_context.total_need_recycle_num++; |
6680 | 0 | metrics_context.total_need_recycle_data_size += rowset.rowset_meta().total_disk_size(); |
6681 | 0 | segment_metrics_context_.total_need_recycle_num += rowset.rowset_meta().num_segments(); |
6682 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset.rowset_meta().total_disk_size(); |
6683 | 0 | return 0; |
6684 | 0 | } |
6685 | | |
6686 | 0 | if(!rowset_meta->has_is_recycled() || !rowset_meta->is_recycled()) { |
6687 | 0 | return 0; |
6688 | 0 | } |
6689 | | |
6690 | 0 | if (!rowset_meta->has_resource_id()) [[unlikely]] { |
6691 | 0 | if (rowset.type() == RecycleRowsetPB::PREPARE || rowset_meta->num_segments() != 0) { |
6692 | 0 | return 0; |
6693 | 0 | } |
6694 | 0 | } |
6695 | 0 | metrics_context.total_need_recycle_num++; |
6696 | 0 | metrics_context.total_need_recycle_data_size += rowset_meta->total_disk_size(); |
6697 | 0 | segment_metrics_context_.total_need_recycle_num += rowset_meta->num_segments(); |
6698 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset_meta->total_disk_size(); |
6699 | 0 | return 0; |
6700 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_and_statistics_rowsetsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler27scan_and_statistics_rowsetsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6701 | 0 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv)); |
6702 | 0 | metrics_context.report(true); |
6703 | 0 | segment_metrics_context_.report(true); |
6704 | 0 | return ret; |
6705 | 0 | } |
6706 | | |
6707 | | // Scan and statistics tmp_rowsets that need to be recycled |
6708 | 0 | int InstanceRecycler::scan_and_statistics_tmp_rowsets() { |
6709 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_tmp_rowsets"); |
6710 | 0 | MetaRowsetTmpKeyInfo tmp_rs_key_info0 {instance_id_, 0, 0}; |
6711 | 0 | MetaRowsetTmpKeyInfo tmp_rs_key_info1 {instance_id_, INT64_MAX, 0}; |
6712 | 0 | std::string tmp_rs_key0; |
6713 | 0 | std::string tmp_rs_key1; |
6714 | 0 | meta_rowset_tmp_key(tmp_rs_key_info0, &tmp_rs_key0); |
6715 | 0 | meta_rowset_tmp_key(tmp_rs_key_info1, &tmp_rs_key1); |
6716 | |
|
6717 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6718 | |
|
6719 | 0 | auto handle_tmp_rowsets_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6720 | 0 | doris::RowsetMetaCloudPB rowset; |
6721 | 0 | if (!rowset.ParseFromArray(v.data(), v.size())) { |
6722 | 0 | return 0; |
6723 | 0 | } |
6724 | 0 | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
6725 | 0 | int64_t current_time = ::time(nullptr); |
6726 | 0 | if (current_time < expiration) { |
6727 | 0 | return 0; |
6728 | 0 | } |
6729 | | |
6730 | 0 | DCHECK_GT(rowset.txn_id(), 0) |
6731 | 0 | << "txn_id=" << rowset.txn_id() << " rowset=" << rowset.ShortDebugString(); |
6732 | |
|
6733 | 0 | if(!rowset.has_is_recycled() || !rowset.is_recycled()) { |
6734 | 0 | return 0; |
6735 | 0 | } |
6736 | | |
6737 | 0 | if (!rowset.has_resource_id()) { |
6738 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible |
6739 | 0 | return 0; |
6740 | 0 | } |
6741 | 0 | return 0; |
6742 | 0 | } |
6743 | | |
6744 | 0 | metrics_context.total_need_recycle_num++; |
6745 | 0 | metrics_context.total_need_recycle_data_size += rowset.total_disk_size(); |
6746 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset.total_disk_size(); |
6747 | 0 | segment_metrics_context_.total_need_recycle_num += rowset.num_segments(); |
6748 | 0 | return 0; |
6749 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler31scan_and_statistics_tmp_rowsetsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler31scan_and_statistics_tmp_rowsetsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6750 | 0 | int ret = scan_and_recycle(tmp_rs_key0, tmp_rs_key1, std::move(handle_tmp_rowsets_kv)); |
6751 | 0 | metrics_context.report(true); |
6752 | 0 | segment_metrics_context_.report(true); |
6753 | 0 | return ret; |
6754 | 0 | } |
6755 | | |
6756 | | // Scan and statistics abort_timeout_txn that need to be recycled |
6757 | 0 | int InstanceRecycler::scan_and_statistics_abort_timeout_txn() { |
6758 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "abort_timeout_txn"); |
6759 | |
|
6760 | 0 | TxnRunningKeyInfo txn_running_key_info0 {instance_id_, 0, 0}; |
6761 | 0 | TxnRunningKeyInfo txn_running_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
6762 | 0 | std::string begin_txn_running_key; |
6763 | 0 | std::string end_txn_running_key; |
6764 | 0 | txn_running_key(txn_running_key_info0, &begin_txn_running_key); |
6765 | 0 | txn_running_key(txn_running_key_info1, &end_txn_running_key); |
6766 | |
|
6767 | 0 | int64_t current_time = |
6768 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6769 | |
|
6770 | 0 | auto handle_abort_timeout_txn_kv = [&metrics_context, ¤t_time, this]( |
6771 | 0 | std::string_view k, std::string_view v) -> int { |
6772 | 0 | std::unique_ptr<Transaction> txn; |
6773 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6774 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6775 | 0 | return 0; |
6776 | 0 | } |
6777 | 0 | std::string_view k1 = k; |
6778 | 0 | k1.remove_prefix(1); |
6779 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6780 | 0 | if (decode_key(&k1, &out) != 0) { |
6781 | 0 | return 0; |
6782 | 0 | } |
6783 | 0 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
6784 | 0 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
6785 | | // Update txn_info |
6786 | 0 | std::string txn_inf_key, txn_inf_val; |
6787 | 0 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); |
6788 | 0 | err = txn->get(txn_inf_key, &txn_inf_val); |
6789 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6790 | 0 | return 0; |
6791 | 0 | } |
6792 | 0 | TxnInfoPB txn_info; |
6793 | 0 | if (!txn_info.ParseFromString(txn_inf_val)) { |
6794 | 0 | return 0; |
6795 | 0 | } |
6796 | | |
6797 | 0 | if (TxnStatusPB::TXN_STATUS_COMMITTED != txn_info.status()) { |
6798 | 0 | TxnRunningPB txn_running_pb; |
6799 | 0 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { |
6800 | 0 | return 0; |
6801 | 0 | } |
6802 | 0 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { |
6803 | 0 | return 0; |
6804 | 0 | } |
6805 | 0 | metrics_context.total_need_recycle_num++; |
6806 | 0 | } |
6807 | 0 | return 0; |
6808 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler37scan_and_statistics_abort_timeout_txnEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler37scan_and_statistics_abort_timeout_txnEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6809 | |
|
6810 | 0 | int ret = scan_and_recycle(begin_txn_running_key, end_txn_running_key, std::move(handle_abort_timeout_txn_kv)); |
6811 | 0 | metrics_context.report(true); |
6812 | 0 | return ret; |
6813 | 0 | } |
6814 | | |
6815 | | // Scan and statistics expired_txn_label that need to be recycled |
6816 | 0 | int InstanceRecycler::scan_and_statistics_expired_txn_label() { |
6817 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_txn_label"); |
6818 | |
|
6819 | 0 | RecycleTxnKeyInfo recycle_txn_key_info0 {instance_id_, 0, 0}; |
6820 | 0 | RecycleTxnKeyInfo recycle_txn_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
6821 | 0 | std::string begin_recycle_txn_key; |
6822 | 0 | std::string end_recycle_txn_key; |
6823 | 0 | recycle_txn_key(recycle_txn_key_info0, &begin_recycle_txn_key); |
6824 | 0 | recycle_txn_key(recycle_txn_key_info1, &end_recycle_txn_key); |
6825 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6826 | 0 | int64_t current_time_ms = |
6827 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6828 | | |
6829 | | // for calculate the total num or bytes of recyled objects |
6830 | 0 | auto handle_expired_txn_label_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6831 | 0 | RecycleTxnPB recycle_txn_pb; |
6832 | 0 | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { |
6833 | 0 | return 0; |
6834 | 0 | } |
6835 | 0 | if ((config::force_immediate_recycle) || |
6836 | 0 | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || |
6837 | 0 | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= |
6838 | 0 | current_time_ms)) { |
6839 | 0 | metrics_context.total_need_recycle_num++; |
6840 | 0 | } |
6841 | 0 | return 0; |
6842 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler37scan_and_statistics_expired_txn_labelEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler37scan_and_statistics_expired_txn_labelEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6843 | |
|
6844 | 0 | int ret = scan_and_recycle(begin_recycle_txn_key, end_recycle_txn_key, std::move(handle_expired_txn_label_kv)); |
6845 | 0 | metrics_context.report(true); |
6846 | 0 | return ret; |
6847 | 0 | } |
6848 | | |
6849 | | // Scan and statistics copy_jobs that need to be recycled |
6850 | 0 | int InstanceRecycler::scan_and_statistics_copy_jobs() { |
6851 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_copy_jobs"); |
6852 | 0 | CopyJobKeyInfo key_info0 {instance_id_, "", 0, "", 0}; |
6853 | 0 | CopyJobKeyInfo key_info1 {instance_id_, "\xff", 0, "", 0}; |
6854 | 0 | std::string key0; |
6855 | 0 | std::string key1; |
6856 | 0 | copy_job_key(key_info0, &key0); |
6857 | 0 | copy_job_key(key_info1, &key1); |
6858 | | |
6859 | | // for calculate the total num or bytes of recyled objects |
6860 | 0 | auto scan_and_statistics = [&metrics_context](std::string_view k, std::string_view v) -> int { |
6861 | 0 | CopyJobPB copy_job; |
6862 | 0 | if (!copy_job.ParseFromArray(v.data(), v.size())) { |
6863 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); |
6864 | 0 | return 0; |
6865 | 0 | } |
6866 | | |
6867 | 0 | if (copy_job.job_status() == CopyJobPB::FINISH) { |
6868 | 0 | if (copy_job.stage_type() == StagePB::EXTERNAL) { |
6869 | 0 | int64_t current_time = |
6870 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6871 | 0 | if (copy_job.finish_time_ms() > 0) { |
6872 | 0 | if (!config::force_immediate_recycle && |
6873 | 0 | current_time < copy_job.finish_time_ms() + |
6874 | 0 | config::copy_job_max_retention_second * 1000) { |
6875 | 0 | return 0; |
6876 | 0 | } |
6877 | 0 | } else { |
6878 | 0 | if (!config::force_immediate_recycle && |
6879 | 0 | current_time < copy_job.start_time_ms() + |
6880 | 0 | config::copy_job_max_retention_second * 1000) { |
6881 | 0 | return 0; |
6882 | 0 | } |
6883 | 0 | } |
6884 | 0 | } |
6885 | 0 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { |
6886 | 0 | int64_t current_time = |
6887 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6888 | 0 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { |
6889 | 0 | return 0; |
6890 | 0 | } |
6891 | 0 | } |
6892 | 0 | metrics_context.total_need_recycle_num++; |
6893 | 0 | return 0; |
6894 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler29scan_and_statistics_copy_jobsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler29scan_and_statistics_copy_jobsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6895 | |
|
6896 | 0 | int ret = scan_and_recycle(key0, key1, std::move(scan_and_statistics)); |
6897 | 0 | metrics_context.report(true); |
6898 | 0 | return ret; |
6899 | 0 | } |
6900 | | |
6901 | | // Scan and statistics stage that need to be recycled |
6902 | 0 | int InstanceRecycler::scan_and_statistics_stage() { |
6903 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_stage"); |
6904 | 0 | RecycleStageKeyInfo key_info0 {instance_id_, ""}; |
6905 | 0 | RecycleStageKeyInfo key_info1 {instance_id_, "\xff"}; |
6906 | 0 | std::string key0 = recycle_stage_key(key_info0); |
6907 | 0 | std::string key1 = recycle_stage_key(key_info1); |
6908 | | |
6909 | | // for calculate the total num or bytes of recyled objects |
6910 | 0 | auto scan_and_statistics = [&metrics_context, this](std::string_view k, |
6911 | 0 | std::string_view v) -> int { |
6912 | 0 | RecycleStagePB recycle_stage; |
6913 | 0 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { |
6914 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); |
6915 | 0 | return 0; |
6916 | 0 | } |
6917 | | |
6918 | 0 | int idx = stoi(recycle_stage.stage().obj_info().id()); |
6919 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6920 | 0 | LOG(WARNING) << "invalid idx: " << idx; |
6921 | 0 | return 0; |
6922 | 0 | } |
6923 | | |
6924 | 0 | std::shared_ptr<StorageVaultAccessor> accessor; |
6925 | 0 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( |
6926 | 0 | [&] { |
6927 | 0 | auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6928 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6929 | 0 | if (!s3_conf) { |
6930 | 0 | return 0; |
6931 | 0 | } |
6932 | |
|
6933 | 0 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); |
6934 | 0 | std::shared_ptr<S3Accessor> s3_accessor; |
6935 | 0 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); |
6936 | 0 | if (ret != 0) { |
6937 | 0 | return 0; |
6938 | 0 | } |
6939 | |
|
6940 | 0 | accessor = std::move(s3_accessor); |
6941 | 0 | return 0; |
6942 | 0 | }(), |
6943 | 0 | "recycle_stage:get_accessor", &accessor); |
6944 | |
|
6945 | 0 | if (ret != 0) { |
6946 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; |
6947 | 0 | return 0; |
6948 | 0 | } |
6949 | | |
6950 | 0 | metrics_context.total_need_recycle_num++; |
6951 | 0 | return 0; |
6952 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25scan_and_statistics_stageEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25scan_and_statistics_stageEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
6953 | |
|
6954 | 0 | int ret = scan_and_recycle(key0, key1, std::move(scan_and_statistics)); |
6955 | 0 | metrics_context.report(true); |
6956 | 0 | return ret; |
6957 | 0 | } |
6958 | | |
6959 | | // Scan and statistics expired_stage_objects that need to be recycled |
6960 | 0 | int InstanceRecycler::scan_and_statistics_expired_stage_objects() { |
6961 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_stage_objects"); |
6962 | | |
6963 | | // for calculate the total num or bytes of recyled objects |
6964 | 0 | auto scan_and_statistics = [&metrics_context, this]() { |
6965 | 0 | for (const auto& stage : instance_info_.stages()) { |
6966 | 0 | if (stopped()) { |
6967 | 0 | break; |
6968 | 0 | } |
6969 | 0 | if (stage.type() == StagePB::EXTERNAL) { |
6970 | 0 | continue; |
6971 | 0 | } |
6972 | 0 | int idx = stoi(stage.obj_info().id()); |
6973 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6974 | 0 | continue; |
6975 | 0 | } |
6976 | 0 | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6977 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6978 | 0 | if (!s3_conf) { |
6979 | 0 | continue; |
6980 | 0 | } |
6981 | 0 | s3_conf->prefix = stage.obj_info().prefix(); |
6982 | 0 | std::shared_ptr<S3Accessor> accessor; |
6983 | 0 | int ret1 = S3Accessor::create(*s3_conf, &accessor); |
6984 | 0 | if (ret1 != 0) { |
6985 | 0 | continue; |
6986 | 0 | } |
6987 | 0 | if (s3_conf->prefix.find("/stage/") == std::string::npos) { |
6988 | 0 | continue; |
6989 | 0 | } |
6990 | 0 | metrics_context.total_need_recycle_num++; |
6991 | 0 | } |
6992 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler41scan_and_statistics_expired_stage_objectsEvENK3$_0clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler41scan_and_statistics_expired_stage_objectsEvENK3$_0clEv |
6993 | |
|
6994 | 0 | scan_and_statistics(); |
6995 | 0 | metrics_context.report(true); |
6996 | 0 | return 0; |
6997 | 0 | } |
6998 | | |
6999 | | // Scan and statistics versions that need to be recycled |
7000 | 0 | int InstanceRecycler::scan_and_statistics_versions() { |
7001 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_versions"); |
7002 | 0 | auto version_key_begin = partition_version_key({instance_id_, 0, 0, 0}); |
7003 | 0 | auto version_key_end = partition_version_key({instance_id_, INT64_MAX, 0, 0}); |
7004 | |
|
7005 | 0 | int64_t last_scanned_table_id = 0; |
7006 | 0 | bool is_recycled = false; // Is last scanned kv recycled |
7007 | | // for calculate the total num or bytes of recyled objects |
7008 | 0 | auto scan_and_statistics = [&metrics_context, &last_scanned_table_id, &is_recycled, this]( |
7009 | 0 | std::string_view k, std::string_view) { |
7010 | 0 | auto k1 = k; |
7011 | 0 | k1.remove_prefix(1); |
7012 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} |
7013 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
7014 | 0 | decode_key(&k1, &out); |
7015 | 0 | DCHECK_EQ(out.size(), 6) << k; |
7016 | 0 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); |
7017 | 0 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table |
7018 | 0 | metrics_context.total_need_recycle_num += |
7019 | 0 | is_recycled; // Version kv of this table has been recycled |
7020 | 0 | return 0; |
7021 | 0 | } |
7022 | 0 | last_scanned_table_id = table_id; |
7023 | 0 | is_recycled = false; |
7024 | 0 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); |
7025 | 0 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); |
7026 | 0 | std::unique_ptr<Transaction> txn; |
7027 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7028 | 0 | if (err != TxnErrorCode::TXN_OK) { |
7029 | 0 | return 0; |
7030 | 0 | } |
7031 | 0 | std::unique_ptr<RangeGetIterator> iter; |
7032 | 0 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); |
7033 | 0 | if (err != TxnErrorCode::TXN_OK) { |
7034 | 0 | return 0; |
7035 | 0 | } |
7036 | 0 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions |
7037 | 0 | return 0; |
7038 | 0 | } |
7039 | 0 | metrics_context.total_need_recycle_num++; |
7040 | 0 | is_recycled = true; |
7041 | 0 | return 0; |
7042 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler28scan_and_statistics_versionsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler28scan_and_statistics_versionsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
7043 | |
|
7044 | 0 | int ret = scan_and_recycle(version_key_begin, version_key_end, std::move(scan_and_statistics)); |
7045 | 0 | metrics_context.report(true); |
7046 | 0 | return ret; |
7047 | 0 | } |
7048 | | |
7049 | | // Scan and statistics restore jobs that need to be recycled |
7050 | 0 | int InstanceRecycler::scan_and_statistics_restore_jobs() { |
7051 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_restore_jobs"); |
7052 | 0 | JobRestoreTabletKeyInfo restore_job_key_info0 {instance_id_, 0}; |
7053 | 0 | JobRestoreTabletKeyInfo restore_job_key_info1 {instance_id_, INT64_MAX}; |
7054 | 0 | std::string restore_job_key0; |
7055 | 0 | std::string restore_job_key1; |
7056 | 0 | job_restore_tablet_key(restore_job_key_info0, &restore_job_key0); |
7057 | 0 | job_restore_tablet_key(restore_job_key_info1, &restore_job_key1); |
7058 | |
|
7059 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
7060 | | |
7061 | | // for calculate the total num or bytes of recyled objects |
7062 | 0 | auto scan_and_statistics = [&](std::string_view k, std::string_view v) -> int { |
7063 | 0 | RestoreJobCloudPB restore_job_pb; |
7064 | 0 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { |
7065 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
7066 | 0 | return 0; |
7067 | 0 | } |
7068 | 0 | int64_t expiration = |
7069 | 0 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); |
7070 | 0 | int64_t current_time = ::time(nullptr); |
7071 | 0 | if (current_time < expiration) { // not expired |
7072 | 0 | return 0; |
7073 | 0 | } |
7074 | 0 | metrics_context.total_need_recycle_num++; |
7075 | 0 | if(restore_job_pb.need_recycle_data()) { |
7076 | 0 | scan_tablet_and_statistics(restore_job_pb.tablet_id(), metrics_context); |
7077 | 0 | } |
7078 | 0 | return 0; |
7079 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler32scan_and_statistics_restore_jobsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler32scan_and_statistics_restore_jobsEvENK3$_0clESt17basic_string_viewIcSt11char_traitsIcEES6_ |
7080 | |
|
7081 | 0 | int ret = scan_and_recycle(restore_job_key0, restore_job_key1, std::move(scan_and_statistics)); |
7082 | 0 | metrics_context.report(true); |
7083 | 0 | return ret; |
7084 | 0 | } |
7085 | | |
7086 | | int InstanceRecycler::classify_rowset_task_by_ref_count( |
7087 | 60 | RowsetDeleteTask& task, std::vector<RowsetDeleteTask>& batch_delete_tasks) { |
7088 | 60 | constexpr int MAX_RETRY = 10; |
7089 | 60 | const auto& rowset_meta = task.rowset_meta; |
7090 | 60 | int64_t tablet_id = rowset_meta.tablet_id(); |
7091 | 60 | const std::string& rowset_id = rowset_meta.rowset_id_v2(); |
7092 | 60 | std::string_view reference_instance_id = instance_id_; |
7093 | 60 | if (rowset_meta.has_reference_instance_id()) { |
7094 | 5 | reference_instance_id = rowset_meta.reference_instance_id(); |
7095 | 5 | } |
7096 | | |
7097 | 61 | for (int i = 0; i < MAX_RETRY; ++i) { |
7098 | 61 | std::unique_ptr<Transaction> txn; |
7099 | 61 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7100 | 61 | if (err != TxnErrorCode::TXN_OK) { |
7101 | 0 | LOG_WARNING("failed to create txn when classifying rowset task") |
7102 | 0 | .tag("instance_id", instance_id_) |
7103 | 0 | .tag("tablet_id", tablet_id) |
7104 | 0 | .tag("rowset_id", rowset_id) |
7105 | 0 | .tag("err", err); |
7106 | 0 | return -1; |
7107 | 0 | } |
7108 | | |
7109 | 61 | std::string rowset_ref_count_key = |
7110 | 61 | versioned::data_rowset_ref_count_key({reference_instance_id, tablet_id, rowset_id}); |
7111 | 61 | task.rowset_ref_count_key = rowset_ref_count_key; |
7112 | | |
7113 | 61 | int64_t ref_count = 0; |
7114 | 61 | { |
7115 | 61 | std::string value; |
7116 | 61 | TxnErrorCode err = txn->get(rowset_ref_count_key, &value); |
7117 | 61 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
7118 | 0 | ref_count = 1; |
7119 | 61 | } else if (err != TxnErrorCode::TXN_OK) { |
7120 | 0 | LOG_WARNING("failed to get rowset ref count key when classifying") |
7121 | 0 | .tag("instance_id", instance_id_) |
7122 | 0 | .tag("tablet_id", tablet_id) |
7123 | 0 | .tag("rowset_id", rowset_id) |
7124 | 0 | .tag("err", err); |
7125 | 0 | return -1; |
7126 | 61 | } else if (!txn->decode_atomic_int(value, &ref_count)) { |
7127 | 0 | LOG_WARNING("failed to decode rowset data ref count when classifying") |
7128 | 0 | .tag("instance_id", instance_id_) |
7129 | 0 | .tag("tablet_id", tablet_id) |
7130 | 0 | .tag("rowset_id", rowset_id) |
7131 | 0 | .tag("value", hex(value)); |
7132 | 0 | return -1; |
7133 | 0 | } |
7134 | 61 | } |
7135 | | |
7136 | 61 | if (ref_count > 1) { |
7137 | | // ref_count > 1: decrement count, remove recycle keys, don't add to batch delete |
7138 | 12 | txn->atomic_add(rowset_ref_count_key, -1); |
7139 | 12 | LOG_INFO("decrease rowset data ref count in classification phase") |
7140 | 12 | .tag("instance_id", instance_id_) |
7141 | 12 | .tag("tablet_id", tablet_id) |
7142 | 12 | .tag("rowset_id", rowset_id) |
7143 | 12 | .tag("ref_count", ref_count - 1) |
7144 | 12 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
7145 | | |
7146 | 12 | if (!task.recycle_rowset_key.empty()) { |
7147 | 12 | txn->remove(task.recycle_rowset_key); |
7148 | 12 | LOG_INFO("remove recycle rowset key in classification phase") |
7149 | 12 | .tag("key", hex(task.recycle_rowset_key)); |
7150 | 12 | } |
7151 | 12 | if (!task.non_versioned_rowset_key.empty()) { |
7152 | 12 | txn->remove(task.non_versioned_rowset_key); |
7153 | 12 | LOG_INFO("remove non versioned rowset key in classification phase") |
7154 | 12 | .tag("key", hex(task.non_versioned_rowset_key)); |
7155 | 12 | } |
7156 | | |
7157 | 12 | err = txn->commit(); |
7158 | 12 | if (err == TxnErrorCode::TXN_CONFLICT) { |
7159 | 1 | VLOG_DEBUG << "decrease rowset ref count but txn conflict in classification, retry" |
7160 | 0 | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id |
7161 | 0 | << ", ref_count=" << ref_count << ", retry=" << i; |
7162 | 1 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
7163 | 1 | continue; |
7164 | 11 | } else if (err != TxnErrorCode::TXN_OK) { |
7165 | 0 | LOG_WARNING("failed to commit txn when classifying rowset task") |
7166 | 0 | .tag("instance_id", instance_id_) |
7167 | 0 | .tag("tablet_id", tablet_id) |
7168 | 0 | .tag("rowset_id", rowset_id) |
7169 | 0 | .tag("err", err); |
7170 | 0 | return -1; |
7171 | 0 | } |
7172 | 11 | return 1; // handled, not added to batch delete |
7173 | 49 | } else { |
7174 | | // ref_count == 1: Add to batch delete plan without modifying any KV. |
7175 | | // Keep recycle_rowset_key as "pending recycle" marker until data is actually deleted. |
7176 | 49 | LOG_INFO("add rowset to batch delete plan") |
7177 | 49 | .tag("instance_id", instance_id_) |
7178 | 49 | .tag("tablet_id", tablet_id) |
7179 | 49 | .tag("rowset_id", rowset_id) |
7180 | 49 | .tag("resource_id", rowset_meta.resource_id()) |
7181 | 49 | .tag("ref_count", ref_count); |
7182 | | |
7183 | 49 | batch_delete_tasks.push_back(std::move(task)); |
7184 | 49 | return 0; // added to batch delete |
7185 | 49 | } |
7186 | 61 | } |
7187 | | |
7188 | 0 | LOG_WARNING("failed to classify rowset task after retry") |
7189 | 0 | .tag("instance_id", instance_id_) |
7190 | 0 | .tag("tablet_id", tablet_id) |
7191 | 0 | .tag("rowset_id", rowset_id) |
7192 | 0 | .tag("retry", MAX_RETRY); |
7193 | 0 | return -1; |
7194 | 60 | } |
7195 | | |
7196 | 10 | int InstanceRecycler::cleanup_rowset_metadata(const std::vector<RowsetDeleteTask>& tasks) { |
7197 | 10 | int ret = 0; |
7198 | 49 | for (const auto& task : tasks) { |
7199 | 49 | int64_t tablet_id = task.rowset_meta.tablet_id(); |
7200 | 49 | const std::string& rowset_id = task.rowset_meta.rowset_id_v2(); |
7201 | | |
7202 | | // Note: decrement_packed_file_ref_counts is already called in delete_rowset_data, |
7203 | | // so we don't need to call it again here. |
7204 | | |
7205 | | // Remove all metadata keys in one transaction |
7206 | 49 | std::unique_ptr<Transaction> txn; |
7207 | 49 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7208 | 49 | if (err != TxnErrorCode::TXN_OK) { |
7209 | 0 | LOG_WARNING("failed to create txn when cleaning up metadata") |
7210 | 0 | .tag("instance_id", instance_id_) |
7211 | 0 | .tag("tablet_id", tablet_id) |
7212 | 0 | .tag("rowset_id", rowset_id) |
7213 | 0 | .tag("err", err); |
7214 | 0 | ret = -1; |
7215 | 0 | continue; |
7216 | 0 | } |
7217 | | |
7218 | 49 | std::string_view reference_instance_id = instance_id_; |
7219 | 49 | if (task.rowset_meta.has_reference_instance_id()) { |
7220 | 5 | reference_instance_id = task.rowset_meta.reference_instance_id(); |
7221 | 5 | } |
7222 | | |
7223 | 49 | txn->remove(task.rowset_ref_count_key); |
7224 | 49 | LOG_INFO("delete rowset data ref count key in cleanup phase") |
7225 | 49 | .tag("instance_id", instance_id_) |
7226 | 49 | .tag("tablet_id", tablet_id) |
7227 | 49 | .tag("rowset_id", rowset_id) |
7228 | 49 | .tag("ref_count_key", hex(task.rowset_ref_count_key)); |
7229 | | |
7230 | 49 | std::string dbm_start_key = |
7231 | 49 | meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id, 0, 0}); |
7232 | 49 | std::string dbm_end_key = meta_delete_bitmap_key( |
7233 | 49 | {reference_instance_id, tablet_id, rowset_id, |
7234 | 49 | std::numeric_limits<int64_t>::max(), std::numeric_limits<int64_t>::max()}); |
7235 | 49 | txn->remove(dbm_start_key, dbm_end_key); |
7236 | 49 | LOG_INFO("remove delete bitmap kv in cleanup phase") |
7237 | 49 | .tag("instance_id", instance_id_) |
7238 | 49 | .tag("tablet_id", tablet_id) |
7239 | 49 | .tag("rowset_id", rowset_id) |
7240 | 49 | .tag("begin", hex(dbm_start_key)) |
7241 | 49 | .tag("end", hex(dbm_end_key)); |
7242 | | |
7243 | 49 | std::string versioned_dbm_start_key = |
7244 | 49 | versioned::meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id}); |
7245 | 49 | std::string versioned_dbm_end_key = versioned_dbm_start_key; |
7246 | 49 | encode_int64(INT64_MAX, &versioned_dbm_end_key); |
7247 | 49 | txn->remove(versioned_dbm_start_key, versioned_dbm_end_key); |
7248 | 49 | LOG_INFO("remove versioned delete bitmap kv in cleanup phase") |
7249 | 49 | .tag("instance_id", instance_id_) |
7250 | 49 | .tag("tablet_id", tablet_id) |
7251 | 49 | .tag("rowset_id", rowset_id) |
7252 | 49 | .tag("begin", hex(versioned_dbm_start_key)) |
7253 | 49 | .tag("end", hex(versioned_dbm_end_key)); |
7254 | | |
7255 | | // Remove versioned meta rowset key |
7256 | 49 | if (!task.versioned_rowset_key.empty()) { |
7257 | 49 | std::string versioned_rowset_key_end = task.versioned_rowset_key; |
7258 | 49 | encode_int64(INT64_MAX, &versioned_rowset_key_end); |
7259 | 49 | txn->remove(task.versioned_rowset_key, versioned_rowset_key_end); |
7260 | 49 | LOG_INFO("remove versioned meta rowset key in cleanup phase") |
7261 | 49 | .tag("instance_id", instance_id_) |
7262 | 49 | .tag("tablet_id", tablet_id) |
7263 | 49 | .tag("rowset_id", rowset_id) |
7264 | 49 | .tag("begin", hex(task.versioned_rowset_key)) |
7265 | 49 | .tag("end", hex(versioned_rowset_key_end)); |
7266 | 49 | } |
7267 | | |
7268 | 49 | if (!task.non_versioned_rowset_key.empty()) { |
7269 | 49 | txn->remove(task.non_versioned_rowset_key); |
7270 | 49 | LOG_INFO("remove non versioned rowset key in cleanup phase") |
7271 | 49 | .tag("instance_id", instance_id_) |
7272 | 49 | .tag("tablet_id", tablet_id) |
7273 | 49 | .tag("rowset_id", rowset_id) |
7274 | 49 | .tag("key", hex(task.non_versioned_rowset_key)); |
7275 | 49 | } |
7276 | | |
7277 | | // Remove recycle_rowset_key last to ensure retry safety: |
7278 | | // if cleanup fails, this key remains and triggers next round retry. |
7279 | 49 | if (!task.recycle_rowset_key.empty()) { |
7280 | 49 | txn->remove(task.recycle_rowset_key); |
7281 | 49 | LOG_INFO("remove recycle rowset key in cleanup phase") |
7282 | 49 | .tag("instance_id", instance_id_) |
7283 | 49 | .tag("tablet_id", tablet_id) |
7284 | 49 | .tag("rowset_id", rowset_id) |
7285 | 49 | .tag("key", hex(task.recycle_rowset_key)); |
7286 | 49 | } |
7287 | | |
7288 | 49 | err = txn->commit(); |
7289 | 49 | if (err != TxnErrorCode::TXN_OK) { |
7290 | | // Metadata cleanup failed. recycle_rowset_key remains, next round will retry. |
7291 | 0 | LOG_WARNING("failed to commit cleanup metadata txn, will retry next round") |
7292 | 0 | .tag("instance_id", instance_id_) |
7293 | 0 | .tag("tablet_id", tablet_id) |
7294 | 0 | .tag("rowset_id", rowset_id) |
7295 | 0 | .tag("err", err); |
7296 | 0 | ret = -1; |
7297 | 0 | continue; |
7298 | 0 | } |
7299 | | |
7300 | 49 | LOG_INFO("cleanup rowset metadata success") |
7301 | 49 | .tag("instance_id", instance_id_) |
7302 | 49 | .tag("tablet_id", tablet_id) |
7303 | 49 | .tag("rowset_id", rowset_id); |
7304 | 49 | } |
7305 | 10 | return ret; |
7306 | 10 | } |
7307 | | |
7308 | | } // namespace doris::cloud |