/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 | 325 | std::unique_ptr<RangeGetIterator>& it) { |
120 | 325 | std::unique_ptr<Transaction> txn; |
121 | 325 | TxnErrorCode err = txn_kv->create_txn(&txn); |
122 | 325 | if (err != TxnErrorCode::TXN_OK) { |
123 | 0 | return -1; |
124 | 0 | } |
125 | 325 | switch (txn->get(begin, end, &it, true)) { |
126 | 325 | case TxnErrorCode::TXN_OK: |
127 | 325 | return 0; |
128 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: |
129 | 0 | return 1; |
130 | 0 | default: |
131 | 0 | return -1; |
132 | 325 | }; |
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 | 294 | std::unique_ptr<RangeGetIterator>& it) { | 120 | 294 | std::unique_ptr<Transaction> txn; | 121 | 294 | TxnErrorCode err = txn_kv->create_txn(&txn); | 122 | 294 | if (err != TxnErrorCode::TXN_OK) { | 123 | 0 | return -1; | 124 | 0 | } | 125 | 294 | switch (txn->get(begin, end, &it, true)) { | 126 | 294 | case TxnErrorCode::TXN_OK: | 127 | 294 | return 0; | 128 | 0 | case TxnErrorCode::TXN_KEY_NOT_FOUND: | 129 | 0 | return 1; | 130 | 0 | default: | 131 | 0 | return -1; | 132 | 294 | }; | 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 | 119 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string> keys) { |
157 | 119 | std::unique_ptr<Transaction> txn; |
158 | 119 | TxnErrorCode err = txn_kv->create_txn(&txn); |
159 | 119 | if (err != TxnErrorCode::TXN_OK) { |
160 | 0 | return -1; |
161 | 0 | } |
162 | 106k | for (auto& k : keys) { |
163 | 106k | txn->remove(k); |
164 | 106k | } |
165 | 119 | switch (txn->commit()) { |
166 | 119 | case TxnErrorCode::TXN_OK: |
167 | 119 | return 0; |
168 | 0 | case TxnErrorCode::TXN_CONFLICT: |
169 | 0 | return -1; |
170 | 0 | default: |
171 | 0 | return -1; |
172 | 119 | } |
173 | 119 | } 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 | 86 | static int txn_remove(TxnKv* txn_kv, std::vector<std::string> keys) { | 157 | 86 | std::unique_ptr<Transaction> txn; | 158 | 86 | TxnErrorCode err = txn_kv->create_txn(&txn); | 159 | 86 | if (err != TxnErrorCode::TXN_OK) { | 160 | 0 | return -1; | 161 | 0 | } | 162 | 106k | for (auto& k : keys) { | 163 | 106k | txn->remove(k); | 164 | 106k | } | 165 | 86 | switch (txn->commit()) { | 166 | 86 | case TxnErrorCode::TXN_OK: | 167 | 86 | return 0; | 168 | 0 | case TxnErrorCode::TXN_CONFLICT: | 169 | 0 | return -1; | 170 | 0 | default: | 171 | 0 | return -1; | 172 | 86 | } | 173 | 86 | } |
|
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 | 126 | : 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.4k | int get(int64_t index_id, int32_t schema_version, InvertedIndexInfo& res) { |
500 | 28.4k | { |
501 | 28.4k | std::lock_guard lock(mtx_); |
502 | 28.4k | if (schemas_without_inverted_index_.count({index_id, schema_version})) { |
503 | 3.76k | return 0; |
504 | 3.76k | } |
505 | 24.6k | if (auto it = inverted_index_id_map_.find({index_id, schema_version}); |
506 | 24.6k | it != inverted_index_id_map_.end()) { |
507 | 17.5k | res = it->second; |
508 | 17.5k | return 0; |
509 | 17.5k | } |
510 | 24.6k | } |
511 | | // Get schema from kv |
512 | | // TODO(plat1ko): Single flight |
513 | 7.11k | std::unique_ptr<Transaction> txn; |
514 | 7.11k | TxnErrorCode err = txn_kv_->create_txn(&txn); |
515 | 7.11k | if (err != TxnErrorCode::TXN_OK) { |
516 | 0 | LOG(WARNING) << "failed to create txn, err=" << err; |
517 | 0 | return -1; |
518 | 0 | } |
519 | 7.11k | auto schema_key = meta_schema_key({instance_id_, index_id, schema_version}); |
520 | 7.11k | ValueBuf val_buf; |
521 | 7.11k | err = cloud::blob_get(txn.get(), schema_key, &val_buf); |
522 | 7.11k | if (err != TxnErrorCode::TXN_OK) { |
523 | 500 | LOG(WARNING) << "failed to get schema, err=" << err; |
524 | 500 | return static_cast<int>(err); |
525 | 500 | } |
526 | 6.61k | doris::TabletSchemaCloudPB schema; |
527 | 6.61k | 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.61k | if (schema.index_size() > 0) { |
532 | 4.67k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
533 | 4.67k | if (schema.has_inverted_index_storage_format()) { |
534 | 4.66k | index_format = schema.inverted_index_storage_format(); |
535 | 4.66k | } |
536 | 4.67k | res.first = index_format; |
537 | 4.67k | res.second.reserve(schema.index_size()); |
538 | 12.0k | for (auto& i : schema.index()) { |
539 | 12.0k | if (i.has_index_type() && i.index_type() == IndexType::INVERTED) { |
540 | 12.0k | res.second.push_back(std::make_pair(i.index_id(), i.index_suffix_name())); |
541 | 12.0k | } |
542 | 12.0k | } |
543 | 4.67k | } |
544 | 6.61k | insert(index_id, schema_version, res); |
545 | 6.61k | return 0; |
546 | 6.61k | } |
547 | | |
548 | | // Empty `ids` means this schema has no inverted index |
549 | 6.61k | void insert(int64_t index_id, int32_t schema_version, const InvertedIndexInfo& index_info) { |
550 | 6.61k | if (index_info.second.empty()) { |
551 | 1.94k | TEST_SYNC_POINT("InvertedIndexIdCache::insert1"); |
552 | 1.94k | std::lock_guard lock(mtx_); |
553 | 1.94k | schemas_without_inverted_index_.emplace(index_id, schema_version); |
554 | 4.67k | } else { |
555 | 4.67k | TEST_SYNC_POINT("InvertedIndexIdCache::insert2"); |
556 | 4.67k | std::lock_guard lock(mtx_); |
557 | 4.67k | inverted_index_id_map_.try_emplace({index_id, schema_version}, index_info); |
558 | 4.67k | } |
559 | 6.61k | } |
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 | 59.6k | size_t operator()(const Key& key) const { |
569 | 59.6k | size_t seed = 0; |
570 | 59.6k | seed = std::hash<int64_t> {}(key.first); |
571 | 59.6k | seed = std::hash<int32_t> {}(key.second); |
572 | 59.6k | return seed; |
573 | 59.6k | } |
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 | 126 | resource_mgr_(std::make_shared<ResourceManager>(txn_kv_)) { |
592 | 126 | delete_bitmap_lock_white_list_->init(); |
593 | 126 | resource_mgr_->init(); |
594 | 126 | 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 | 126 | txn_lazy_committer_->resource_manager()->refresh_instance(instance_id_, instance); |
599 | 126 | }; |
600 | | |
601 | 126 | InstanceRecycler::~InstanceRecycler() = default; |
602 | | |
603 | 110 | int InstanceRecycler::init_obj_store_accessors() { |
604 | 110 | for (const auto& obj_info : instance_info_.obj_info()) { |
605 | 70 | #ifdef UNIT_TEST |
606 | 70 | 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 | 70 | accessor_map_.emplace(obj_info.id(), std::move(accessor)); |
623 | 70 | } |
624 | | |
625 | 110 | return 0; |
626 | 110 | } |
627 | | |
628 | 110 | int InstanceRecycler::init_storage_vault_accessors() { |
629 | 110 | if (instance_info_.resource_ids().empty()) { |
630 | 103 | return 0; |
631 | 103 | } |
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 | 110 | int InstanceRecycler::init() { |
724 | 110 | int ret = init_obj_store_accessors(); |
725 | 110 | if (ret != 0) { |
726 | 0 | return ret; |
727 | 0 | } |
728 | | |
729 | 110 | return init_storage_vault_accessors(); |
730 | 110 | } |
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 | | // Step 1: Recycle versioned rowsets in recycle space (already marked for deletion) |
823 | 4 | if (recycle_versioned_rowsets() != 0) { |
824 | 0 | LOG_WARNING("failed to recycle versioned rowsets").tag("instance_id", instance_id_); |
825 | 0 | return -1; |
826 | 0 | } |
827 | | |
828 | | // Step 2: Recycle operation logs (can recycle logs not referenced by snapshots) |
829 | 4 | if (recycle_operation_logs() != 0) { |
830 | 0 | LOG_WARNING("failed to recycle operation logs").tag("instance_id", instance_id_); |
831 | 0 | return -1; |
832 | 0 | } |
833 | | |
834 | | // Step 3: Check if there are still cluster snapshots |
835 | 4 | bool has_snapshots = false; |
836 | 4 | if (has_cluster_snapshots(&has_snapshots) != 0) { |
837 | 0 | LOG(WARNING) << "check instance cluster snapshots failed, instance_id=" << instance_id_; |
838 | 0 | return -1; |
839 | 4 | } else if (has_snapshots) { |
840 | 1 | LOG(INFO) << "instance has cluster snapshots, skip recycling, instance_id=" << instance_id_; |
841 | 1 | return 0; |
842 | 1 | } |
843 | | |
844 | 3 | bool snapshot_enabled = instance_info().has_snapshot_switch_status() && |
845 | 3 | instance_info().snapshot_switch_status() != |
846 | 0 | SnapshotSwitchStatus::SNAPSHOT_SWITCH_DISABLED; |
847 | 3 | if (snapshot_enabled) { |
848 | 0 | bool has_unrecycled_rowsets = false; |
849 | 0 | if (recycle_ref_rowsets(&has_unrecycled_rowsets) != 0) { |
850 | 0 | LOG_WARNING("failed to recycle ref rowsets").tag("instance_id", instance_id_); |
851 | 0 | return -1; |
852 | 0 | } else if (has_unrecycled_rowsets) { |
853 | 0 | LOG_INFO("instance has referenced rowsets, skip recycling") |
854 | 0 | .tag("instance_id", instance_id_); |
855 | 0 | return ret; |
856 | 0 | } |
857 | 3 | } else { // delete all remote data if snapshot is disabled |
858 | 3 | for (auto& [_, accessor] : accessor_map_) { |
859 | 3 | if (stopped()) { |
860 | 0 | return ret; |
861 | 0 | } |
862 | | |
863 | 3 | LOG(INFO) << "begin to delete all objects in " << accessor->uri(); |
864 | 3 | int del_ret = accessor->delete_all(); |
865 | 3 | if (del_ret == 0) { |
866 | 3 | LOG(INFO) << "successfully delete all objects in " << accessor->uri(); |
867 | 3 | } else if (del_ret != 1) { // no need to log, because S3Accessor has logged this error |
868 | | // If `del_ret == 1`, it can be considered that the object data has been recycled by cloud platform, |
869 | | // so the recycling has been successful. |
870 | 0 | ret = -1; |
871 | 0 | } |
872 | 3 | } |
873 | | |
874 | 3 | if (ret != 0) { |
875 | 0 | LOG(WARNING) << "failed to delete all data of deleted instance=" << instance_id_; |
876 | 0 | return ret; |
877 | 0 | } |
878 | 3 | } |
879 | | |
880 | | // delete all kv |
881 | 3 | std::unique_ptr<Transaction> txn; |
882 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
883 | 3 | if (err != TxnErrorCode::TXN_OK) { |
884 | 0 | LOG(WARNING) << "failed to create txn"; |
885 | 0 | ret = -1; |
886 | 0 | return -1; |
887 | 0 | } |
888 | 3 | LOG(INFO) << "begin to delete all kv, instance_id=" << instance_id_; |
889 | | // delete kv before deleting objects to prevent the checker from misjudging data loss |
890 | 3 | std::string start_txn_key = txn_key_prefix(instance_id_); |
891 | 3 | std::string end_txn_key = txn_key_prefix(instance_id_ + '\x00'); |
892 | 3 | txn->remove(start_txn_key, end_txn_key); |
893 | 3 | std::string start_version_key = version_key_prefix(instance_id_); |
894 | 3 | std::string end_version_key = version_key_prefix(instance_id_ + '\x00'); |
895 | 3 | txn->remove(start_version_key, end_version_key); |
896 | 3 | std::string start_meta_key = meta_key_prefix(instance_id_); |
897 | 3 | std::string end_meta_key = meta_key_prefix(instance_id_ + '\x00'); |
898 | 3 | txn->remove(start_meta_key, end_meta_key); |
899 | 3 | std::string start_recycle_key = recycle_key_prefix(instance_id_); |
900 | 3 | std::string end_recycle_key = recycle_key_prefix(instance_id_ + '\x00'); |
901 | 3 | txn->remove(start_recycle_key, end_recycle_key); |
902 | 3 | std::string start_stats_tablet_key = stats_tablet_key({instance_id_, 0, 0, 0, 0}); |
903 | 3 | std::string end_stats_tablet_key = stats_tablet_key({instance_id_, INT64_MAX, 0, 0, 0}); |
904 | 3 | txn->remove(start_stats_tablet_key, end_stats_tablet_key); |
905 | 3 | std::string start_copy_key = copy_key_prefix(instance_id_); |
906 | 3 | std::string end_copy_key = copy_key_prefix(instance_id_ + '\x00'); |
907 | 3 | txn->remove(start_copy_key, end_copy_key); |
908 | | // should not remove job key range, because we need to reserve job recycle kv |
909 | | // 0:instance_id 1:table_id 2:index_id 3:part_id 4:tablet_id |
910 | 3 | std::string start_job_tablet_key = job_tablet_key({instance_id_, 0, 0, 0, 0}); |
911 | 3 | std::string end_job_tablet_key = job_tablet_key({instance_id_, INT64_MAX, 0, 0, 0}); |
912 | 3 | txn->remove(start_job_tablet_key, end_job_tablet_key); |
913 | 3 | StorageVaultKeyInfo key_info0 {instance_id_, ""}; |
914 | 3 | StorageVaultKeyInfo key_info1 {instance_id_, "\xff"}; |
915 | 3 | std::string start_vault_key = storage_vault_key(key_info0); |
916 | 3 | std::string end_vault_key = storage_vault_key(key_info1); |
917 | 3 | txn->remove(start_vault_key, end_vault_key); |
918 | 3 | std::string versioned_version_key_start = versioned::version_key_prefix(instance_id_); |
919 | 3 | std::string versioned_version_key_end = versioned::version_key_prefix(instance_id_ + '\x00'); |
920 | 3 | txn->remove(versioned_version_key_start, versioned_version_key_end); |
921 | 3 | std::string versioned_index_key_start = versioned::index_key_prefix(instance_id_); |
922 | 3 | std::string versioned_index_key_end = versioned::index_key_prefix(instance_id_ + '\x00'); |
923 | 3 | txn->remove(versioned_index_key_start, versioned_index_key_end); |
924 | 3 | std::string versioned_stats_tablet_key_start = versioned::stats_key_prefix(instance_id_); |
925 | 3 | std::string versioned_stats_tablet_key_end = versioned::stats_key_prefix(instance_id_ + '\x00'); |
926 | 3 | txn->remove(versioned_stats_tablet_key_start, versioned_stats_tablet_key_end); |
927 | 3 | std::string versioned_meta_key_start = versioned::meta_key_prefix(instance_id_); |
928 | 3 | std::string versioned_meta_key_end = versioned::meta_key_prefix(instance_id_ + '\x00'); |
929 | 3 | txn->remove(versioned_meta_key_start, versioned_meta_key_end); |
930 | 3 | std::string versioned_data_key_start = versioned::data_key_prefix(instance_id_); |
931 | 3 | std::string versioned_data_key_end = versioned::data_key_prefix(instance_id_ + '\x00'); |
932 | 3 | txn->remove(versioned_data_key_start, versioned_data_key_end); |
933 | 3 | std::string versioned_log_key_start = versioned::log_key_prefix(instance_id_); |
934 | 3 | std::string versioned_log_key_end = versioned::log_key_prefix(instance_id_ + '\x00'); |
935 | 3 | txn->remove(versioned_log_key_start, versioned_log_key_end); |
936 | 3 | err = txn->commit(); |
937 | 3 | if (err != TxnErrorCode::TXN_OK) { |
938 | 0 | LOG(WARNING) << "failed to delete all kv, instance_id=" << instance_id_ << ", err=" << err; |
939 | 0 | ret = -1; |
940 | 0 | } |
941 | | |
942 | 3 | if (ret == 0) { |
943 | | // remove instance kv |
944 | | // ATTN: MUST ensure that cloud platform won't regenerate the same instance id |
945 | 3 | err = txn_kv_->create_txn(&txn); |
946 | 3 | if (err != TxnErrorCode::TXN_OK) { |
947 | 0 | LOG(WARNING) << "failed to create txn"; |
948 | 0 | ret = -1; |
949 | 0 | return ret; |
950 | 0 | } |
951 | 3 | std::string key; |
952 | 3 | instance_key({instance_id_}, &key); |
953 | 3 | txn->atomic_add(system_meta_service_instance_update_key(), 1); |
954 | 3 | txn->remove(key); |
955 | 3 | err = txn->commit(); |
956 | 3 | if (err != TxnErrorCode::TXN_OK) { |
957 | 0 | LOG(WARNING) << "failed to delete instance kv, instance_id=" << instance_id_ |
958 | 0 | << " err=" << err; |
959 | 0 | ret = -1; |
960 | 0 | } |
961 | 3 | } |
962 | 3 | return ret; |
963 | 3 | } |
964 | | |
965 | | int InstanceRecycler::check_rowset_exists(int64_t tablet_id, const std::string& rowset_id, |
966 | 9 | bool* exists, PackedFileRecycleStats* stats) { |
967 | 9 | if (exists == nullptr) { |
968 | 0 | return -1; |
969 | 0 | } |
970 | 9 | *exists = false; |
971 | | |
972 | 9 | std::string begin = meta_rowset_key({instance_id_, tablet_id, 0}); |
973 | 9 | std::string end = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
974 | 9 | std::string scan_begin = begin; |
975 | | |
976 | 9 | while (true) { |
977 | 9 | std::unique_ptr<RangeGetIterator> it_range; |
978 | 9 | int get_ret = txn_get(txn_kv_.get(), scan_begin, end, it_range); |
979 | 9 | if (get_ret < 0) { |
980 | 0 | LOG_WARNING("failed to scan rowset metas when recycling packed file") |
981 | 0 | .tag("instance_id", instance_id_) |
982 | 0 | .tag("tablet_id", tablet_id) |
983 | 0 | .tag("ret", get_ret); |
984 | 0 | return -1; |
985 | 0 | } |
986 | 9 | if (get_ret == 1 || it_range == nullptr || !it_range->has_next()) { |
987 | 6 | return 0; |
988 | 6 | } |
989 | | |
990 | 3 | std::string last_key; |
991 | 3 | while (it_range->has_next()) { |
992 | 3 | auto [k, v] = it_range->next(); |
993 | 3 | last_key.assign(k.data(), k.size()); |
994 | 3 | doris::RowsetMetaCloudPB rowset_meta; |
995 | 3 | if (!rowset_meta.ParseFromArray(v.data(), v.size())) { |
996 | 0 | LOG_WARNING("malformed rowset meta when checking packed file rowset existence") |
997 | 0 | .tag("instance_id", instance_id_) |
998 | 0 | .tag("tablet_id", tablet_id) |
999 | 0 | .tag("key", hex(k)); |
1000 | 0 | continue; |
1001 | 0 | } |
1002 | 3 | if (stats) { |
1003 | 3 | ++stats->rowset_scan_count; |
1004 | 3 | } |
1005 | 3 | if (rowset_meta.rowset_id_v2() == rowset_id) { |
1006 | 3 | *exists = true; |
1007 | 3 | return 0; |
1008 | 3 | } |
1009 | 3 | } |
1010 | | |
1011 | 0 | if (!it_range->more()) { |
1012 | 0 | return 0; |
1013 | 0 | } |
1014 | | |
1015 | | // Continue scanning from the next key to keep each transaction short. |
1016 | 0 | scan_begin = std::move(last_key); |
1017 | 0 | scan_begin.push_back('\x00'); |
1018 | 0 | } |
1019 | 9 | } |
1020 | | |
1021 | | int InstanceRecycler::check_recycle_and_tmp_rowset_exists(int64_t tablet_id, |
1022 | | const std::string& rowset_id, |
1023 | | int64_t txn_id, bool* recycle_exists, |
1024 | 11 | bool* tmp_exists) { |
1025 | 11 | if (recycle_exists == nullptr || tmp_exists == nullptr) { |
1026 | 0 | return -1; |
1027 | 0 | } |
1028 | 11 | *recycle_exists = false; |
1029 | 11 | *tmp_exists = false; |
1030 | | |
1031 | 11 | if (txn_id <= 0) { |
1032 | 0 | LOG_WARNING("invalid txn id when checking recycle/tmp rowset existence") |
1033 | 0 | .tag("instance_id", instance_id_) |
1034 | 0 | .tag("tablet_id", tablet_id) |
1035 | 0 | .tag("rowset_id", rowset_id) |
1036 | 0 | .tag("txn_id", txn_id); |
1037 | 0 | return -1; |
1038 | 0 | } |
1039 | | |
1040 | 11 | std::unique_ptr<Transaction> txn; |
1041 | 11 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1042 | 11 | if (err != TxnErrorCode::TXN_OK) { |
1043 | 0 | LOG_WARNING("failed to create txn when checking recycle/tmp rowset existence") |
1044 | 0 | .tag("instance_id", instance_id_) |
1045 | 0 | .tag("tablet_id", tablet_id) |
1046 | 0 | .tag("rowset_id", rowset_id) |
1047 | 0 | .tag("txn_id", txn_id) |
1048 | 0 | .tag("err", err); |
1049 | 0 | return -1; |
1050 | 0 | } |
1051 | | |
1052 | 11 | std::string recycle_key = recycle_rowset_key({instance_id_, tablet_id, rowset_id}); |
1053 | 11 | auto ret = key_exists(txn.get(), recycle_key, true); |
1054 | 11 | if (ret == TxnErrorCode::TXN_OK) { |
1055 | 1 | *recycle_exists = true; |
1056 | 10 | } else if (ret != TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1057 | 0 | LOG_WARNING("failed to check recycle rowset existence") |
1058 | 0 | .tag("instance_id", instance_id_) |
1059 | 0 | .tag("tablet_id", tablet_id) |
1060 | 0 | .tag("rowset_id", rowset_id) |
1061 | 0 | .tag("key", hex(recycle_key)) |
1062 | 0 | .tag("err", ret); |
1063 | 0 | return -1; |
1064 | 0 | } |
1065 | | |
1066 | 11 | std::string tmp_key = meta_rowset_tmp_key({instance_id_, txn_id, tablet_id}); |
1067 | 11 | ret = key_exists(txn.get(), tmp_key, true); |
1068 | 11 | if (ret == TxnErrorCode::TXN_OK) { |
1069 | 1 | *tmp_exists = true; |
1070 | 10 | } else if (ret != TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1071 | 0 | LOG_WARNING("failed to check tmp rowset existence") |
1072 | 0 | .tag("instance_id", instance_id_) |
1073 | 0 | .tag("tablet_id", tablet_id) |
1074 | 0 | .tag("txn_id", txn_id) |
1075 | 0 | .tag("key", hex(tmp_key)) |
1076 | 0 | .tag("err", ret); |
1077 | 0 | return -1; |
1078 | 0 | } |
1079 | | |
1080 | 11 | return 0; |
1081 | 11 | } |
1082 | | |
1083 | | std::pair<std::string, std::shared_ptr<StorageVaultAccessor>> |
1084 | 8 | InstanceRecycler::resolve_packed_file_accessor(const std::string& hint) { |
1085 | 8 | if (!hint.empty()) { |
1086 | 8 | if (auto it = accessor_map_.find(hint); it != accessor_map_.end()) { |
1087 | 8 | return {hint, it->second}; |
1088 | 8 | } |
1089 | 8 | } |
1090 | | |
1091 | 0 | return {"", nullptr}; |
1092 | 8 | } |
1093 | | |
1094 | | int InstanceRecycler::correct_packed_file_info(cloud::PackedFileInfoPB* packed_info, bool* changed, |
1095 | | const std::string& packed_file_path, |
1096 | 3 | PackedFileRecycleStats* stats) { |
1097 | 3 | bool local_changed = false; |
1098 | 3 | int64_t left_num = 0; |
1099 | 3 | int64_t left_bytes = 0; |
1100 | 3 | bool all_small_files_confirmed = true; |
1101 | 3 | LOG(INFO) << "begin to correct file: " << packed_file_path; |
1102 | | |
1103 | 14 | auto log_small_file_status = [&](const cloud::PackedSlicePB& file, bool confirmed_this_round) { |
1104 | 14 | int64_t tablet_id = file.has_tablet_id() ? file.tablet_id() : int64_t {-1}; |
1105 | 14 | std::string rowset_id = file.has_rowset_id() ? file.rowset_id() : std::string {}; |
1106 | 14 | int64_t txn_id = file.has_txn_id() ? file.txn_id() : int64_t {0}; |
1107 | 14 | LOG_INFO("packed slice correction status") |
1108 | 14 | .tag("instance_id", instance_id_) |
1109 | 14 | .tag("packed_file_path", packed_file_path) |
1110 | 14 | .tag("small_file_path", file.path()) |
1111 | 14 | .tag("tablet_id", tablet_id) |
1112 | 14 | .tag("rowset_id", rowset_id) |
1113 | 14 | .tag("txn_id", txn_id) |
1114 | 14 | .tag("size", file.size()) |
1115 | 14 | .tag("deleted", file.deleted()) |
1116 | 14 | .tag("corrected", file.corrected()) |
1117 | 14 | .tag("confirmed_this_round", confirmed_this_round); |
1118 | 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 | 1103 | 14 | auto log_small_file_status = [&](const cloud::PackedSlicePB& file, bool confirmed_this_round) { | 1104 | 14 | int64_t tablet_id = file.has_tablet_id() ? file.tablet_id() : int64_t {-1}; | 1105 | 14 | std::string rowset_id = file.has_rowset_id() ? file.rowset_id() : std::string {}; | 1106 | 14 | int64_t txn_id = file.has_txn_id() ? file.txn_id() : int64_t {0}; | 1107 | 14 | LOG_INFO("packed slice correction status") | 1108 | 14 | .tag("instance_id", instance_id_) | 1109 | 14 | .tag("packed_file_path", packed_file_path) | 1110 | 14 | .tag("small_file_path", file.path()) | 1111 | 14 | .tag("tablet_id", tablet_id) | 1112 | 14 | .tag("rowset_id", rowset_id) | 1113 | 14 | .tag("txn_id", txn_id) | 1114 | 14 | .tag("size", file.size()) | 1115 | 14 | .tag("deleted", file.deleted()) | 1116 | 14 | .tag("corrected", file.corrected()) | 1117 | 14 | .tag("confirmed_this_round", confirmed_this_round); | 1118 | 14 | }; |
|
1119 | | |
1120 | 17 | for (int i = 0; i < packed_info->slices_size(); ++i) { |
1121 | 14 | auto* small_file = packed_info->mutable_slices(i); |
1122 | 14 | if (small_file->deleted()) { |
1123 | 3 | log_small_file_status(*small_file, small_file->corrected()); |
1124 | 3 | continue; |
1125 | 3 | } |
1126 | | |
1127 | 11 | if (small_file->corrected()) { |
1128 | 0 | left_num++; |
1129 | 0 | left_bytes += small_file->size(); |
1130 | 0 | log_small_file_status(*small_file, true); |
1131 | 0 | continue; |
1132 | 0 | } |
1133 | | |
1134 | 11 | if (!small_file->has_tablet_id() || !small_file->has_rowset_id()) { |
1135 | 0 | LOG_WARNING("packed file small file missing identifiers during correction") |
1136 | 0 | .tag("instance_id", instance_id_) |
1137 | 0 | .tag("small_file_path", small_file->path()) |
1138 | 0 | .tag("index", i); |
1139 | 0 | return -1; |
1140 | 0 | } |
1141 | | |
1142 | 11 | int64_t tablet_id = small_file->tablet_id(); |
1143 | 11 | const std::string& rowset_id = small_file->rowset_id(); |
1144 | 11 | if (!small_file->has_txn_id() || small_file->txn_id() <= 0) { |
1145 | 0 | LOG_WARNING("packed file small file missing valid txn id during correction") |
1146 | 0 | .tag("instance_id", instance_id_) |
1147 | 0 | .tag("small_file_path", small_file->path()) |
1148 | 0 | .tag("index", i) |
1149 | 0 | .tag("tablet_id", tablet_id) |
1150 | 0 | .tag("rowset_id", rowset_id) |
1151 | 0 | .tag("has_txn_id", small_file->has_txn_id()) |
1152 | 0 | .tag("txn_id", small_file->has_txn_id() ? small_file->txn_id() : 0); |
1153 | 0 | return -1; |
1154 | 0 | } |
1155 | 11 | int64_t txn_id = small_file->txn_id(); |
1156 | 11 | bool recycle_exists = false; |
1157 | 11 | bool tmp_exists = false; |
1158 | 11 | if (check_recycle_and_tmp_rowset_exists(tablet_id, rowset_id, txn_id, &recycle_exists, |
1159 | 11 | &tmp_exists) != 0) { |
1160 | 0 | return -1; |
1161 | 0 | } |
1162 | | |
1163 | 11 | bool small_file_confirmed = false; |
1164 | 11 | if (tmp_exists) { |
1165 | 1 | left_num++; |
1166 | 1 | left_bytes += small_file->size(); |
1167 | 1 | small_file_confirmed = true; |
1168 | 10 | } else if (recycle_exists) { |
1169 | 1 | left_num++; |
1170 | 1 | left_bytes += small_file->size(); |
1171 | | // keep small_file_confirmed=false so the packed file remains uncorrected |
1172 | 9 | } else { |
1173 | 9 | bool rowset_exists = false; |
1174 | 9 | if (check_rowset_exists(tablet_id, rowset_id, &rowset_exists, stats) != 0) { |
1175 | 0 | return -1; |
1176 | 0 | } |
1177 | | |
1178 | 9 | if (!rowset_exists) { |
1179 | 6 | if (!small_file->deleted()) { |
1180 | 6 | small_file->set_deleted(true); |
1181 | 6 | local_changed = true; |
1182 | 6 | } |
1183 | 6 | if (!small_file->corrected()) { |
1184 | 6 | small_file->set_corrected(true); |
1185 | 6 | local_changed = true; |
1186 | 6 | } |
1187 | 6 | small_file_confirmed = true; |
1188 | 6 | } else { |
1189 | 3 | left_num++; |
1190 | 3 | left_bytes += small_file->size(); |
1191 | 3 | small_file_confirmed = true; |
1192 | 3 | } |
1193 | 9 | } |
1194 | | |
1195 | 11 | if (!small_file_confirmed) { |
1196 | 1 | all_small_files_confirmed = false; |
1197 | 1 | } |
1198 | | |
1199 | 11 | if (small_file->corrected() != small_file_confirmed) { |
1200 | 4 | small_file->set_corrected(small_file_confirmed); |
1201 | 4 | local_changed = true; |
1202 | 4 | } |
1203 | | |
1204 | 11 | log_small_file_status(*small_file, small_file_confirmed); |
1205 | 11 | } |
1206 | | |
1207 | 3 | if (packed_info->remaining_slice_bytes() != left_bytes) { |
1208 | 3 | packed_info->set_remaining_slice_bytes(left_bytes); |
1209 | 3 | local_changed = true; |
1210 | 3 | } |
1211 | 3 | if (packed_info->ref_cnt() != left_num) { |
1212 | 3 | auto old_ref_cnt = packed_info->ref_cnt(); |
1213 | 3 | packed_info->set_ref_cnt(left_num); |
1214 | 3 | LOG_INFO("corrected packed file ref count") |
1215 | 3 | .tag("instance_id", instance_id_) |
1216 | 3 | .tag("resource_id", packed_info->resource_id()) |
1217 | 3 | .tag("packed_file_path", packed_file_path) |
1218 | 3 | .tag("old_ref_cnt", old_ref_cnt) |
1219 | 3 | .tag("new_ref_cnt", left_num); |
1220 | 3 | local_changed = true; |
1221 | 3 | } |
1222 | 3 | if (packed_info->corrected() != all_small_files_confirmed) { |
1223 | 2 | packed_info->set_corrected(all_small_files_confirmed); |
1224 | 2 | local_changed = true; |
1225 | 2 | } |
1226 | 3 | if (left_num == 0 && packed_info->state() != cloud::PackedFileInfoPB::RECYCLING) { |
1227 | 1 | packed_info->set_state(cloud::PackedFileInfoPB::RECYCLING); |
1228 | 1 | local_changed = true; |
1229 | 1 | } |
1230 | | |
1231 | 3 | if (changed != nullptr) { |
1232 | 3 | *changed = local_changed; |
1233 | 3 | } |
1234 | 3 | return 0; |
1235 | 3 | } |
1236 | | |
1237 | | int InstanceRecycler::process_single_packed_file(const std::string& packed_key, |
1238 | | const std::string& packed_file_path, |
1239 | 4 | PackedFileRecycleStats* stats) { |
1240 | 4 | const int max_retry_times = std::max(1, config::packed_file_txn_retry_times); |
1241 | 4 | bool correction_ok = false; |
1242 | 4 | cloud::PackedFileInfoPB packed_info; |
1243 | | |
1244 | 4 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
1245 | 4 | if (stopped()) { |
1246 | 0 | LOG_WARNING("recycler stopped before processing packed file") |
1247 | 0 | .tag("instance_id", instance_id_) |
1248 | 0 | .tag("packed_file_path", packed_file_path) |
1249 | 0 | .tag("attempt", attempt); |
1250 | 0 | return -1; |
1251 | 0 | } |
1252 | | |
1253 | 4 | std::unique_ptr<Transaction> txn; |
1254 | 4 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1255 | 4 | if (err != TxnErrorCode::TXN_OK) { |
1256 | 0 | LOG_WARNING("failed to create txn when processing packed file") |
1257 | 0 | .tag("instance_id", instance_id_) |
1258 | 0 | .tag("packed_file_path", packed_file_path) |
1259 | 0 | .tag("attempt", attempt) |
1260 | 0 | .tag("err", err); |
1261 | 0 | return -1; |
1262 | 0 | } |
1263 | | |
1264 | 4 | std::string packed_val; |
1265 | 4 | err = txn->get(packed_key, &packed_val); |
1266 | 4 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1267 | 0 | return 0; |
1268 | 0 | } |
1269 | 4 | if (err != TxnErrorCode::TXN_OK) { |
1270 | 0 | LOG_WARNING("failed to get packed file kv") |
1271 | 0 | .tag("instance_id", instance_id_) |
1272 | 0 | .tag("packed_file_path", packed_file_path) |
1273 | 0 | .tag("attempt", attempt) |
1274 | 0 | .tag("err", err); |
1275 | 0 | return -1; |
1276 | 0 | } |
1277 | | |
1278 | 4 | if (!packed_info.ParseFromString(packed_val)) { |
1279 | 0 | LOG_WARNING("failed to parse packed file info") |
1280 | 0 | .tag("instance_id", instance_id_) |
1281 | 0 | .tag("packed_file_path", packed_file_path) |
1282 | 0 | .tag("attempt", attempt); |
1283 | 0 | return -1; |
1284 | 0 | } |
1285 | | |
1286 | 4 | int64_t now_sec = ::time(nullptr); |
1287 | 4 | bool corrected = packed_info.corrected(); |
1288 | 4 | bool due = config::force_immediate_recycle || |
1289 | 4 | now_sec - packed_info.created_at_sec() >= |
1290 | 4 | config::packed_file_correction_delay_seconds; |
1291 | | |
1292 | 4 | if (!corrected && due) { |
1293 | 3 | bool changed = false; |
1294 | 3 | if (correct_packed_file_info(&packed_info, &changed, packed_file_path, stats) != 0) { |
1295 | 0 | LOG_WARNING("correct_packed_file_info failed") |
1296 | 0 | .tag("instance_id", instance_id_) |
1297 | 0 | .tag("packed_file_path", packed_file_path) |
1298 | 0 | .tag("attempt", attempt); |
1299 | 0 | return -1; |
1300 | 0 | } |
1301 | 3 | if (changed) { |
1302 | 3 | std::string updated; |
1303 | 3 | if (!packed_info.SerializeToString(&updated)) { |
1304 | 0 | LOG_WARNING("failed to serialize packed file info after correction") |
1305 | 0 | .tag("instance_id", instance_id_) |
1306 | 0 | .tag("packed_file_path", packed_file_path) |
1307 | 0 | .tag("attempt", attempt); |
1308 | 0 | return -1; |
1309 | 0 | } |
1310 | 3 | txn->put(packed_key, updated); |
1311 | 3 | err = txn->commit(); |
1312 | 3 | if (err == TxnErrorCode::TXN_OK) { |
1313 | 3 | if (stats) { |
1314 | 3 | ++stats->num_corrected; |
1315 | 3 | } |
1316 | 3 | } else { |
1317 | 0 | if (err == TxnErrorCode::TXN_CONFLICT && attempt < max_retry_times) { |
1318 | 0 | LOG_WARNING( |
1319 | 0 | "failed to commit correction for packed file due to conflict, " |
1320 | 0 | "retrying") |
1321 | 0 | .tag("instance_id", instance_id_) |
1322 | 0 | .tag("packed_file_path", packed_file_path) |
1323 | 0 | .tag("attempt", attempt); |
1324 | 0 | sleep_for_packed_file_retry(); |
1325 | 0 | packed_info.Clear(); |
1326 | 0 | continue; |
1327 | 0 | } |
1328 | 0 | LOG_WARNING("failed to commit correction for packed file") |
1329 | 0 | .tag("instance_id", instance_id_) |
1330 | 0 | .tag("packed_file_path", packed_file_path) |
1331 | 0 | .tag("attempt", attempt) |
1332 | 0 | .tag("err", err); |
1333 | 0 | return -1; |
1334 | 0 | } |
1335 | 3 | } |
1336 | 3 | } |
1337 | | |
1338 | 4 | correction_ok = true; |
1339 | 4 | break; |
1340 | 4 | } |
1341 | | |
1342 | 4 | if (!correction_ok) { |
1343 | 0 | return -1; |
1344 | 0 | } |
1345 | | |
1346 | 4 | if (!(packed_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
1347 | 4 | packed_info.ref_cnt() == 0)) { |
1348 | 3 | return 0; |
1349 | 3 | } |
1350 | | |
1351 | 1 | if (!packed_info.has_resource_id() || packed_info.resource_id().empty()) { |
1352 | 0 | LOG_WARNING("packed file missing resource id when recycling") |
1353 | 0 | .tag("instance_id", instance_id_) |
1354 | 0 | .tag("packed_file_path", packed_file_path); |
1355 | 0 | return -1; |
1356 | 0 | } |
1357 | 1 | auto [resource_id, accessor] = resolve_packed_file_accessor(packed_info.resource_id()); |
1358 | 1 | if (!accessor) { |
1359 | 0 | LOG_WARNING("no accessor available to delete packed file") |
1360 | 0 | .tag("instance_id", instance_id_) |
1361 | 0 | .tag("packed_file_path", packed_file_path) |
1362 | 0 | .tag("resource_id", packed_info.resource_id()); |
1363 | 0 | return -1; |
1364 | 0 | } |
1365 | 1 | int del_ret = accessor->delete_file(packed_file_path); |
1366 | 1 | if (del_ret != 0 && del_ret != 1) { |
1367 | 0 | LOG_WARNING("failed to delete packed file") |
1368 | 0 | .tag("instance_id", instance_id_) |
1369 | 0 | .tag("packed_file_path", packed_file_path) |
1370 | 0 | .tag("resource_id", resource_id) |
1371 | 0 | .tag("ret", del_ret); |
1372 | 0 | return -1; |
1373 | 0 | } |
1374 | 1 | if (del_ret == 1) { |
1375 | 0 | LOG_INFO("packed file already removed") |
1376 | 0 | .tag("instance_id", instance_id_) |
1377 | 0 | .tag("packed_file_path", packed_file_path) |
1378 | 0 | .tag("resource_id", resource_id); |
1379 | 1 | } else { |
1380 | 1 | LOG_INFO("deleted packed file") |
1381 | 1 | .tag("instance_id", instance_id_) |
1382 | 1 | .tag("packed_file_path", packed_file_path) |
1383 | 1 | .tag("resource_id", resource_id); |
1384 | 1 | } |
1385 | | |
1386 | 1 | for (int del_attempt = 1; del_attempt <= max_retry_times; ++del_attempt) { |
1387 | 1 | std::unique_ptr<Transaction> del_txn; |
1388 | 1 | TxnErrorCode err = txn_kv_->create_txn(&del_txn); |
1389 | 1 | if (err != TxnErrorCode::TXN_OK) { |
1390 | 0 | LOG_WARNING("failed to create txn when removing packed file kv") |
1391 | 0 | .tag("instance_id", instance_id_) |
1392 | 0 | .tag("packed_file_path", packed_file_path) |
1393 | 0 | .tag("del_attempt", del_attempt) |
1394 | 0 | .tag("err", err); |
1395 | 0 | return -1; |
1396 | 0 | } |
1397 | | |
1398 | 1 | std::string latest_val; |
1399 | 1 | err = del_txn->get(packed_key, &latest_val); |
1400 | 1 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1401 | 0 | return 0; |
1402 | 0 | } |
1403 | 1 | if (err != TxnErrorCode::TXN_OK) { |
1404 | 0 | LOG_WARNING("failed to re-read packed file kv before removal") |
1405 | 0 | .tag("instance_id", instance_id_) |
1406 | 0 | .tag("packed_file_path", packed_file_path) |
1407 | 0 | .tag("del_attempt", del_attempt) |
1408 | 0 | .tag("err", err); |
1409 | 0 | return -1; |
1410 | 0 | } |
1411 | | |
1412 | 1 | cloud::PackedFileInfoPB latest_info; |
1413 | 1 | if (!latest_info.ParseFromString(latest_val)) { |
1414 | 0 | LOG_WARNING("failed to parse packed file info before removal") |
1415 | 0 | .tag("instance_id", instance_id_) |
1416 | 0 | .tag("packed_file_path", packed_file_path) |
1417 | 0 | .tag("del_attempt", del_attempt); |
1418 | 0 | return -1; |
1419 | 0 | } |
1420 | | |
1421 | 1 | if (!(latest_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
1422 | 1 | latest_info.ref_cnt() == 0)) { |
1423 | 0 | LOG_INFO("packed file state changed before removal, skip deleting kv") |
1424 | 0 | .tag("instance_id", instance_id_) |
1425 | 0 | .tag("packed_file_path", packed_file_path) |
1426 | 0 | .tag("del_attempt", del_attempt); |
1427 | 0 | return 0; |
1428 | 0 | } |
1429 | | |
1430 | 1 | del_txn->remove(packed_key); |
1431 | 1 | err = del_txn->commit(); |
1432 | 1 | if (err == TxnErrorCode::TXN_OK) { |
1433 | 1 | if (stats) { |
1434 | 1 | ++stats->num_deleted; |
1435 | 1 | stats->bytes_deleted += static_cast<int64_t>(packed_key.size()) + |
1436 | 1 | static_cast<int64_t>(latest_val.size()); |
1437 | 1 | if (del_ret == 0 || del_ret == 1) { |
1438 | 1 | ++stats->num_object_deleted; |
1439 | 1 | int64_t object_size = latest_info.total_slice_bytes(); |
1440 | 1 | if (object_size <= 0) { |
1441 | 0 | object_size = packed_info.total_slice_bytes(); |
1442 | 0 | } |
1443 | 1 | stats->bytes_object_deleted += object_size; |
1444 | 1 | } |
1445 | 1 | } |
1446 | 1 | LOG_INFO("removed packed file metadata") |
1447 | 1 | .tag("instance_id", instance_id_) |
1448 | 1 | .tag("packed_file_path", packed_file_path); |
1449 | 1 | return 0; |
1450 | 1 | } |
1451 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
1452 | 0 | if (del_attempt >= max_retry_times) { |
1453 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict after max retry") |
1454 | 0 | .tag("instance_id", instance_id_) |
1455 | 0 | .tag("packed_file_path", packed_file_path) |
1456 | 0 | .tag("del_attempt", del_attempt); |
1457 | 0 | return -1; |
1458 | 0 | } |
1459 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict, retrying") |
1460 | 0 | .tag("instance_id", instance_id_) |
1461 | 0 | .tag("packed_file_path", packed_file_path) |
1462 | 0 | .tag("del_attempt", del_attempt); |
1463 | 0 | sleep_for_packed_file_retry(); |
1464 | 0 | continue; |
1465 | 0 | } |
1466 | 0 | LOG_WARNING("failed to remove packed file kv") |
1467 | 0 | .tag("instance_id", instance_id_) |
1468 | 0 | .tag("packed_file_path", packed_file_path) |
1469 | 0 | .tag("del_attempt", del_attempt) |
1470 | 0 | .tag("err", err); |
1471 | 0 | return -1; |
1472 | 0 | } |
1473 | | |
1474 | 0 | return -1; |
1475 | 1 | } |
1476 | | |
1477 | | int InstanceRecycler::handle_packed_file_kv(std::string_view key, std::string_view /*value*/, |
1478 | 4 | PackedFileRecycleStats* stats, int* ret) { |
1479 | 4 | if (stats) { |
1480 | 4 | ++stats->num_scanned; |
1481 | 4 | } |
1482 | 4 | std::string packed_file_path; |
1483 | 4 | if (!decode_packed_file_key(key, &packed_file_path)) { |
1484 | 0 | LOG_WARNING("failed to decode packed file key") |
1485 | 0 | .tag("instance_id", instance_id_) |
1486 | 0 | .tag("key", hex(key)); |
1487 | 0 | if (stats) { |
1488 | 0 | ++stats->num_failed; |
1489 | 0 | } |
1490 | 0 | if (ret) { |
1491 | 0 | *ret = -1; |
1492 | 0 | } |
1493 | 0 | return 0; |
1494 | 0 | } |
1495 | | |
1496 | 4 | std::string packed_key(key); |
1497 | 4 | int process_ret = process_single_packed_file(packed_key, packed_file_path, stats); |
1498 | 4 | if (process_ret != 0) { |
1499 | 0 | if (stats) { |
1500 | 0 | ++stats->num_failed; |
1501 | 0 | } |
1502 | 0 | if (ret) { |
1503 | 0 | *ret = -1; |
1504 | 0 | } |
1505 | 0 | } |
1506 | 4 | return 0; |
1507 | 4 | } |
1508 | | |
1509 | | int64_t calculate_rowset_expired_time(const std::string& instance_id_, const RecycleRowsetPB& rs, |
1510 | 9.77k | int64_t* earlest_ts /* rowset earliest expiration ts */) { |
1511 | 9.77k | if (config::force_immediate_recycle) { |
1512 | 15 | return 0L; |
1513 | 15 | } |
1514 | | // RecycleRowsetPB created by compacted or dropped rowset has no expiration time, and will be recycled when exceed retention time |
1515 | 9.75k | int64_t expiration = rs.expiration() > 0 ? rs.expiration() : rs.creation_time(); |
1516 | 9.75k | int64_t retention_seconds = config::retention_seconds; |
1517 | 9.75k | if (rs.type() == RecycleRowsetPB::COMPACT || rs.type() == RecycleRowsetPB::DROP) { |
1518 | 7.80k | retention_seconds = std::min(config::compacted_rowset_retention_seconds, retention_seconds); |
1519 | 7.80k | } |
1520 | 9.75k | int64_t final_expiration = expiration + retention_seconds; |
1521 | 9.75k | if (*earlest_ts > final_expiration) { |
1522 | 7 | *earlest_ts = final_expiration; |
1523 | 7 | g_bvar_recycler_recycle_rowset_earlest_ts.put(instance_id_, *earlest_ts); |
1524 | 7 | } |
1525 | 9.75k | return final_expiration; |
1526 | 9.77k | } |
1527 | | |
1528 | | int64_t calculate_partition_expired_time( |
1529 | | const std::string& instance_id_, const RecyclePartitionPB& partition_meta_pb, |
1530 | 9 | int64_t* earlest_ts /* partition earliest expiration ts */) { |
1531 | 9 | if (config::force_immediate_recycle) { |
1532 | 3 | return 0L; |
1533 | 3 | } |
1534 | 6 | int64_t expiration = partition_meta_pb.expiration() > 0 ? partition_meta_pb.expiration() |
1535 | 6 | : partition_meta_pb.creation_time(); |
1536 | 6 | int64_t retention_seconds = config::retention_seconds; |
1537 | 6 | if (partition_meta_pb.state() == RecyclePartitionPB::DROPPED) { |
1538 | 6 | retention_seconds = |
1539 | 6 | std::min(config::dropped_partition_retention_seconds, retention_seconds); |
1540 | 6 | } |
1541 | 6 | int64_t final_expiration = expiration + retention_seconds; |
1542 | 6 | if (*earlest_ts > final_expiration) { |
1543 | 2 | *earlest_ts = final_expiration; |
1544 | 2 | g_bvar_recycler_recycle_partition_earlest_ts.put(instance_id_, *earlest_ts); |
1545 | 2 | } |
1546 | 6 | return final_expiration; |
1547 | 9 | } |
1548 | | |
1549 | | int64_t calculate_index_expired_time(const std::string& instance_id_, |
1550 | | const RecycleIndexPB& index_meta_pb, |
1551 | 10 | int64_t* earlest_ts /* index earliest expiration ts */) { |
1552 | 10 | if (config::force_immediate_recycle) { |
1553 | 4 | return 0L; |
1554 | 4 | } |
1555 | 6 | int64_t expiration = index_meta_pb.expiration() > 0 ? index_meta_pb.expiration() |
1556 | 6 | : index_meta_pb.creation_time(); |
1557 | 6 | int64_t retention_seconds = config::retention_seconds; |
1558 | 6 | if (index_meta_pb.state() == RecycleIndexPB::DROPPED) { |
1559 | 6 | retention_seconds = std::min(config::dropped_index_retention_seconds, retention_seconds); |
1560 | 6 | } |
1561 | 6 | int64_t final_expiration = expiration + retention_seconds; |
1562 | 6 | if (*earlest_ts > final_expiration) { |
1563 | 2 | *earlest_ts = final_expiration; |
1564 | 2 | g_bvar_recycler_recycle_index_earlest_ts.put(instance_id_, *earlest_ts); |
1565 | 2 | } |
1566 | 6 | return final_expiration; |
1567 | 10 | } |
1568 | | |
1569 | | int64_t calculate_tmp_rowset_expired_time( |
1570 | | const std::string& instance_id_, const doris::RowsetMetaCloudPB& tmp_rowset_meta_pb, |
1571 | 102k | int64_t* earlest_ts /* tmp_rowset earliest expiration ts */) { |
1572 | | // ATTN: `txn_expiration` should > 0, however we use `creation_time` + a large `retention_time` (> 1 day in production environment) |
1573 | | // when `txn_expiration` <= 0 in some unexpected situation (usually when there are bugs). This is usually safe, coz loading |
1574 | | // duration or timeout always < `retention_time` in practice. |
1575 | 102k | int64_t expiration = tmp_rowset_meta_pb.txn_expiration() > 0 |
1576 | 102k | ? tmp_rowset_meta_pb.txn_expiration() |
1577 | 102k | : tmp_rowset_meta_pb.creation_time(); |
1578 | 102k | expiration = config::force_immediate_recycle ? 0 : expiration; |
1579 | 102k | int64_t final_expiration = expiration + config::retention_seconds; |
1580 | 102k | if (*earlest_ts > final_expiration) { |
1581 | 18 | *earlest_ts = final_expiration; |
1582 | 18 | g_bvar_recycler_recycle_tmp_rowset_earlest_ts.put(instance_id_, *earlest_ts); |
1583 | 18 | } |
1584 | 102k | return final_expiration; |
1585 | 102k | } |
1586 | | |
1587 | | int64_t calculate_txn_expired_time(const std::string& instance_id_, const RecycleTxnPB& txn_meta_pb, |
1588 | 30.0k | int64_t* earlest_ts /* txn earliest expiration ts */) { |
1589 | 30.0k | int64_t final_expiration = txn_meta_pb.creation_time() + config::label_keep_max_second * 1000L; |
1590 | 30.0k | if (*earlest_ts > final_expiration / 1000) { |
1591 | 8 | *earlest_ts = final_expiration / 1000; |
1592 | 8 | g_bvar_recycler_recycle_expired_txn_label_earlest_ts.put(instance_id_, *earlest_ts); |
1593 | 8 | } |
1594 | 30.0k | return final_expiration; |
1595 | 30.0k | } |
1596 | | |
1597 | | int64_t calculate_restore_job_expired_time( |
1598 | | const std::string& instance_id_, const RestoreJobCloudPB& restore_job, |
1599 | 41 | int64_t* earlest_ts /* restore job earliest expiration ts */) { |
1600 | 41 | if (config::force_immediate_recycle || restore_job.state() == RestoreJobCloudPB::DROPPED || |
1601 | 41 | restore_job.state() == RestoreJobCloudPB::COMPLETED || |
1602 | 41 | restore_job.state() == RestoreJobCloudPB::RECYCLING) { |
1603 | | // final state, recycle immediately |
1604 | 41 | return 0L; |
1605 | 41 | } |
1606 | | // not final state, wait much longer than the FE's timeout(1 day) |
1607 | 0 | int64_t last_modified_s = |
1608 | 0 | restore_job.has_mtime_s() ? restore_job.mtime_s() : restore_job.ctime_s(); |
1609 | 0 | int64_t expiration = restore_job.expired_at_s() > 0 |
1610 | 0 | ? last_modified_s + restore_job.expired_at_s() |
1611 | 0 | : last_modified_s; |
1612 | 0 | int64_t final_expiration = expiration + config::retention_seconds; |
1613 | 0 | if (*earlest_ts > final_expiration) { |
1614 | 0 | *earlest_ts = final_expiration; |
1615 | 0 | g_bvar_recycler_recycle_restore_job_earlest_ts.put(instance_id_, *earlest_ts); |
1616 | 0 | } |
1617 | 0 | return final_expiration; |
1618 | 41 | } |
1619 | | |
1620 | | int get_meta_rowset_key(Transaction* txn, const std::string& instance_id, int64_t tablet_id, |
1621 | | const std::string& rowset_id, int64_t start_version, int64_t end_version, |
1622 | 0 | bool load_key, bool* exist) { |
1623 | 0 | std::string key = |
1624 | 0 | load_key ? versioned::meta_rowset_load_key({instance_id, tablet_id, end_version}) |
1625 | 0 | : versioned::meta_rowset_compact_key({instance_id, tablet_id, end_version}); |
1626 | 0 | RowsetMetaCloudPB rowset_meta; |
1627 | 0 | Versionstamp version; |
1628 | 0 | TxnErrorCode err = versioned::document_get(txn, key, &rowset_meta, &version); |
1629 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1630 | 0 | VLOG_DEBUG << "not found load or compact meta_rowset_key." |
1631 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1632 | 0 | << " end_version=" << end_version << " key=" << hex(key); |
1633 | 0 | } else if (err != TxnErrorCode::TXN_OK) { |
1634 | 0 | LOG_INFO("failed to get load or compact meta_rowset_key.") |
1635 | 0 | .tag("rowset_id", rowset_id) |
1636 | 0 | .tag("start_version", start_version) |
1637 | 0 | .tag("end_version", end_version) |
1638 | 0 | .tag("key", hex(key)) |
1639 | 0 | .tag("error_code", err); |
1640 | 0 | return -1; |
1641 | 0 | } else if (rowset_meta.rowset_id_v2() == rowset_id) { |
1642 | 0 | *exist = true; |
1643 | 0 | VLOG_DEBUG << "found load or compact meta_rowset_key." |
1644 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1645 | 0 | << " end_version=" << end_version << " key=" << hex(key); |
1646 | 0 | } else { |
1647 | 0 | VLOG_DEBUG << "rowset_id does not match when find load or compact meta_rowset_key." |
1648 | 0 | << " rowset_id=" << rowset_id << " start_version=" << start_version |
1649 | 0 | << " end_version=" << end_version << " key=" << hex(key) |
1650 | 0 | << " found_rowset_id=" << rowset_meta.rowset_id_v2(); |
1651 | 0 | } |
1652 | 0 | return 0; |
1653 | 0 | } |
1654 | | |
1655 | 2 | int InstanceRecycler::abort_txn_for_related_rowset(int64_t txn_id) { |
1656 | 2 | AbortTxnRequest req; |
1657 | 2 | TxnInfoPB txn_info; |
1658 | 2 | MetaServiceCode code = MetaServiceCode::OK; |
1659 | 2 | std::string msg; |
1660 | 2 | std::stringstream ss; |
1661 | 2 | std::unique_ptr<Transaction> txn; |
1662 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1663 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1664 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
1665 | 0 | return -1; |
1666 | 0 | } |
1667 | | |
1668 | | // get txn index |
1669 | 2 | TxnIndexPB txn_idx_pb; |
1670 | 2 | auto index_key = txn_index_key({instance_id_, txn_id}); |
1671 | 2 | std::string index_val; |
1672 | 2 | err = txn->get(index_key, &index_val); |
1673 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1674 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1675 | | // maybe recycled |
1676 | 0 | LOG_INFO("txn index not found, txn_id={} instance_id={}", txn_id, instance_id_) |
1677 | 0 | .tag("key", hex(index_key)) |
1678 | 0 | .tag("txn_id", txn_id); |
1679 | 0 | return 0; |
1680 | 0 | } |
1681 | 0 | LOG_WARNING("failed to get txn index") |
1682 | 0 | .tag("err", err) |
1683 | 0 | .tag("key", hex(index_key)) |
1684 | 0 | .tag("txn_id", txn_id); |
1685 | 0 | return -1; |
1686 | 0 | } |
1687 | 2 | if (!txn_idx_pb.ParseFromString(index_val)) { |
1688 | 0 | LOG_WARNING("failed to parse txn index") |
1689 | 0 | .tag("err", err) |
1690 | 0 | .tag("key", hex(index_key)) |
1691 | 0 | .tag("txn_id", txn_id); |
1692 | 0 | return -1; |
1693 | 0 | } |
1694 | | |
1695 | 2 | auto info_key = txn_info_key({instance_id_, txn_idx_pb.tablet_index().db_id(), txn_id}); |
1696 | 2 | std::string info_val; |
1697 | 2 | err = txn->get(info_key, &info_val); |
1698 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1699 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1700 | | // maybe recycled |
1701 | 0 | LOG_INFO("txn info not found, txn_id={} instance_id={}", txn_id, instance_id_) |
1702 | 0 | .tag("key", hex(info_key)) |
1703 | 0 | .tag("txn_id", txn_id); |
1704 | 0 | return 0; |
1705 | 0 | } |
1706 | 0 | LOG_WARNING("failed to get txn info") |
1707 | 0 | .tag("err", err) |
1708 | 0 | .tag("key", hex(info_key)) |
1709 | 0 | .tag("txn_id", txn_id); |
1710 | 0 | return -1; |
1711 | 0 | } |
1712 | 2 | if (!txn_info.ParseFromString(info_val)) { |
1713 | 0 | LOG_WARNING("failed to parse txn info") |
1714 | 0 | .tag("err", err) |
1715 | 0 | .tag("key", hex(info_key)) |
1716 | 0 | .tag("txn_id", txn_id); |
1717 | 0 | return -1; |
1718 | 0 | } |
1719 | | |
1720 | 2 | if (txn_info.status() != TxnStatusPB::TXN_STATUS_PREPARED) { |
1721 | 0 | LOG_INFO("txn is not prepared status, txn_id={} status={}", txn_id, txn_info.status()) |
1722 | 0 | .tag("key", hex(info_key)) |
1723 | 0 | .tag("txn_id", txn_id); |
1724 | 0 | return 0; |
1725 | 0 | } |
1726 | | |
1727 | 2 | req.set_txn_id(txn_id); |
1728 | | |
1729 | 2 | LOG(INFO) << "begin abort txn for related rowset, txn_id=" << txn_id |
1730 | 2 | << " instance_id=" << instance_id_ << " txn_info=" << txn_info.ShortDebugString(); |
1731 | | |
1732 | 2 | _abort_txn(instance_id_, &req, txn.get(), txn_info, ss, code, msg); |
1733 | 2 | err = txn->commit(); |
1734 | 2 | if (err != TxnErrorCode::TXN_OK) { |
1735 | 0 | code = cast_as<ErrCategory::COMMIT>(err); |
1736 | 0 | ss << "failed to commit kv txn, txn_id=" << txn_info.txn_id() << " err=" << err; |
1737 | 0 | msg = ss.str(); |
1738 | 0 | return -1; |
1739 | 0 | } |
1740 | | |
1741 | 2 | LOG(INFO) << "finish abort txn for related rowset, txn_id=" << txn_id |
1742 | 2 | << " instance_id=" << instance_id_ << " txn_info=" << txn_info.ShortDebugString() |
1743 | 2 | << " code=" << code << " msg=" << msg; |
1744 | | |
1745 | 2 | return 0; |
1746 | 2 | } |
1747 | | |
1748 | 4 | int InstanceRecycler::abort_job_for_related_rowset(const RowsetMetaCloudPB& rowset_meta) { |
1749 | 4 | FinishTabletJobRequest req; |
1750 | 4 | FinishTabletJobResponse res; |
1751 | 4 | req.set_action(FinishTabletJobRequest::ABORT); |
1752 | 4 | MetaServiceCode code = MetaServiceCode::OK; |
1753 | 4 | std::string msg; |
1754 | 4 | std::stringstream ss; |
1755 | | |
1756 | 4 | TabletIndexPB tablet_idx; |
1757 | 4 | int ret = get_tablet_idx(txn_kv_.get(), instance_id_, rowset_meta.tablet_id(), tablet_idx); |
1758 | 4 | if (ret == 1) { |
1759 | | // tablet maybe recycled, directly return 0 |
1760 | 1 | return 0; |
1761 | 3 | } else if (ret != 0) { |
1762 | 0 | LOG(WARNING) << "failed to get tablet index, tablet_id=" << rowset_meta.tablet_id() |
1763 | 0 | << " instance_id=" << instance_id_ << " ret=" << ret; |
1764 | 0 | return ret; |
1765 | 0 | } |
1766 | | |
1767 | 3 | std::unique_ptr<Transaction> txn; |
1768 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
1769 | 3 | if (err != TxnErrorCode::TXN_OK) { |
1770 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id_ << " err=" << err; |
1771 | 0 | return -1; |
1772 | 0 | } |
1773 | | |
1774 | 3 | std::string job_key = |
1775 | 3 | job_tablet_key({instance_id_, tablet_idx.table_id(), tablet_idx.index_id(), |
1776 | 3 | tablet_idx.partition_id(), tablet_idx.tablet_id()}); |
1777 | 3 | std::string job_val; |
1778 | 3 | err = txn->get(job_key, &job_val); |
1779 | 3 | if (err != TxnErrorCode::TXN_OK) { |
1780 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
1781 | 0 | LOG(INFO) << "job not exists, instance_id=" << instance_id_ |
1782 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " key=" << hex(job_key); |
1783 | 0 | return 0; |
1784 | 0 | } |
1785 | 0 | LOG(WARNING) << "failed to get job, instance_id=" << instance_id_ |
1786 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " err=" << err |
1787 | 0 | << " key=" << hex(job_key); |
1788 | 0 | return -1; |
1789 | 0 | } |
1790 | | |
1791 | 3 | TabletJobInfoPB job_pb; |
1792 | 3 | if (!job_pb.ParseFromString(job_val)) { |
1793 | 0 | LOG(WARNING) << "failed to parse job, instance_id=" << instance_id_ |
1794 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " key=" << hex(job_key); |
1795 | 0 | return -1; |
1796 | 0 | } |
1797 | | |
1798 | 3 | std::string job_id {}; |
1799 | 3 | if (!job_pb.compaction().empty()) { |
1800 | 2 | for (const auto& c : job_pb.compaction()) { |
1801 | 2 | if (c.id() == rowset_meta.job_id()) { |
1802 | 2 | job_id = c.id(); |
1803 | 2 | break; |
1804 | 2 | } |
1805 | 2 | } |
1806 | 2 | } else if (job_pb.has_schema_change()) { |
1807 | 1 | job_id = job_pb.schema_change().id(); |
1808 | 1 | } |
1809 | | |
1810 | 3 | if (!job_id.empty() && rowset_meta.job_id() == job_id) { |
1811 | 3 | LOG(INFO) << "begin to abort job for related rowset, job_id=" << rowset_meta.job_id() |
1812 | 3 | << " instance_id=" << instance_id_ << " tablet_id=" << tablet_idx.tablet_id(); |
1813 | 3 | req.mutable_job()->CopyFrom(job_pb); |
1814 | 3 | req.set_action(FinishTabletJobRequest::ABORT); |
1815 | 3 | _finish_tablet_job(&req, &res, instance_id_, txn, txn_kv_.get(), |
1816 | 3 | delete_bitmap_lock_white_list_.get(), resource_mgr_.get(), code, msg, |
1817 | 3 | ss); |
1818 | 3 | if (code != MetaServiceCode::OK) { |
1819 | 0 | LOG(WARNING) << "failed to abort job, instance_id=" << instance_id_ |
1820 | 0 | << " tablet_id=" << tablet_idx.tablet_id() << " code=" << code |
1821 | 0 | << " msg=" << msg; |
1822 | 0 | return -1; |
1823 | 0 | } |
1824 | 3 | LOG(INFO) << "finish abort job for related rowset, job_id=" << rowset_meta.job_id() |
1825 | 3 | << " instance_id=" << instance_id_ << " tablet_id=" << tablet_idx.tablet_id() |
1826 | 3 | << " code=" << code << " msg=" << msg; |
1827 | 3 | } else { |
1828 | | // clang-format off |
1829 | 0 | LOG(INFO) << "there is no job for related rowset, directly recycle rowset data" |
1830 | 0 | << ", instance_id=" << instance_id_ |
1831 | 0 | << ", tablet_id=" << tablet_idx.tablet_id() |
1832 | 0 | << ", job_id=" << job_id |
1833 | 0 | << ", rowset_id=" << rowset_meta.rowset_id_v2(); |
1834 | | // clang-format on |
1835 | 0 | } |
1836 | | |
1837 | 3 | return 0; |
1838 | 3 | } |
1839 | | |
1840 | | template <typename T> |
1841 | 54.7k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { |
1842 | 54.7k | RowsetMetaCloudPB* rs_meta; |
1843 | 54.7k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; |
1844 | | |
1845 | 54.7k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1846 | | // For keys that are not in the RecycleRowsetPB::PREPARE state |
1847 | | // we do not need to check the job or txn state |
1848 | | // because tmp_rowset_key already exists when this key is generated. |
1849 | 3.75k | rowset_type = rowset_meta_pb.type(); |
1850 | 3.75k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); |
1851 | 51.0k | } else { |
1852 | 51.0k | rs_meta = &rowset_meta_pb; |
1853 | 51.0k | } |
1854 | | |
1855 | 54.7k | DCHECK(rs_meta != nullptr); |
1856 | | |
1857 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id |
1858 | | // we need skip them because the related txn has been finished |
1859 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset |
1860 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset |
1861 | 54.7k | if (rowset_type == RecycleRowsetPB::PREPARE) { |
1862 | 51.6k | if (rs_meta->has_load_id()) { |
1863 | | // load |
1864 | 2 | return abort_txn_for_related_rowset(rs_meta->txn_id()); |
1865 | 51.6k | } else if (rs_meta->has_job_id()) { |
1866 | | // compaction / schema change |
1867 | 3 | return abort_job_for_related_rowset(*rs_meta); |
1868 | 3 | } |
1869 | 51.6k | } |
1870 | | |
1871 | 54.7k | return 0; |
1872 | 54.7k | } _ZN5doris5cloud16InstanceRecycler28abort_txn_or_job_for_recycleINS0_15RecycleRowsetPBEEEiRT_ Line | Count | Source | 1841 | 3.75k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { | 1842 | 3.75k | RowsetMetaCloudPB* rs_meta; | 1843 | 3.75k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; | 1844 | | | 1845 | 3.75k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1846 | | // For keys that are not in the RecycleRowsetPB::PREPARE state | 1847 | | // we do not need to check the job or txn state | 1848 | | // because tmp_rowset_key already exists when this key is generated. | 1849 | 3.75k | rowset_type = rowset_meta_pb.type(); | 1850 | 3.75k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1851 | 3.75k | } else { | 1852 | 3.75k | rs_meta = &rowset_meta_pb; | 1853 | 3.75k | } | 1854 | | | 1855 | 3.75k | DCHECK(rs_meta != nullptr); | 1856 | | | 1857 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id | 1858 | | // we need skip them because the related txn has been finished | 1859 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset | 1860 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset | 1861 | 3.75k | if (rowset_type == RecycleRowsetPB::PREPARE) { | 1862 | 652 | if (rs_meta->has_load_id()) { | 1863 | | // load | 1864 | 1 | return abort_txn_for_related_rowset(rs_meta->txn_id()); | 1865 | 651 | } else if (rs_meta->has_job_id()) { | 1866 | | // compaction / schema change | 1867 | 1 | return abort_job_for_related_rowset(*rs_meta); | 1868 | 1 | } | 1869 | 652 | } | 1870 | | | 1871 | 3.75k | return 0; | 1872 | 3.75k | } |
_ZN5doris5cloud16InstanceRecycler28abort_txn_or_job_for_recycleINS_17RowsetMetaCloudPBEEEiRT_ Line | Count | Source | 1841 | 51.0k | int InstanceRecycler::abort_txn_or_job_for_recycle(T& rowset_meta_pb) { | 1842 | 51.0k | RowsetMetaCloudPB* rs_meta; | 1843 | 51.0k | RecycleRowsetPB::Type rowset_type = RecycleRowsetPB::PREPARE; | 1844 | | | 1845 | 51.0k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1846 | | // For keys that are not in the RecycleRowsetPB::PREPARE state | 1847 | | // we do not need to check the job or txn state | 1848 | | // because tmp_rowset_key already exists when this key is generated. | 1849 | 51.0k | rowset_type = rowset_meta_pb.type(); | 1850 | 51.0k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1851 | 51.0k | } else { | 1852 | 51.0k | rs_meta = &rowset_meta_pb; | 1853 | 51.0k | } | 1854 | | | 1855 | 51.0k | DCHECK(rs_meta != nullptr); | 1856 | | | 1857 | | // compaction/sc will generate recycle_rowset_key for each input rowset with load_id | 1858 | | // we need skip them because the related txn has been finished | 1859 | | // load_rowset1 load_rowset2 => pick for compaction => compact_rowset | 1860 | | // compact_rowset1 compact_rowset2 => pick for compaction/sc job => new_rowset | 1861 | 51.0k | if (rowset_type == RecycleRowsetPB::PREPARE) { | 1862 | 51.0k | if (rs_meta->has_load_id()) { | 1863 | | // load | 1864 | 1 | return abort_txn_for_related_rowset(rs_meta->txn_id()); | 1865 | 51.0k | } else if (rs_meta->has_job_id()) { | 1866 | | // compaction / schema change | 1867 | 2 | return abort_job_for_related_rowset(*rs_meta); | 1868 | 2 | } | 1869 | 51.0k | } | 1870 | | | 1871 | 51.0k | return 0; | 1872 | 51.0k | } |
|
1873 | | |
1874 | | template <typename T> |
1875 | | int mark_rowset_as_recycled(TxnKv* txn_kv, const std::string& instance_id, std::string_view key, |
1876 | 109k | T& rowset_meta_pb) { |
1877 | 109k | RowsetMetaCloudPB* rs_meta; |
1878 | | |
1879 | 109k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1880 | 102k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); |
1881 | 102k | } else { |
1882 | 102k | rs_meta = &rowset_meta_pb; |
1883 | 102k | } |
1884 | | |
1885 | 109k | bool need_write_back = false; |
1886 | 109k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { |
1887 | 54.7k | need_write_back = true; |
1888 | 54.7k | rs_meta->set_is_recycled(true); |
1889 | 54.7k | } |
1890 | | |
1891 | 109k | if (need_write_back) { |
1892 | 54.7k | std::unique_ptr<Transaction> txn; |
1893 | 54.7k | TxnErrorCode err = txn_kv->create_txn(&txn); |
1894 | 54.7k | if (err != TxnErrorCode::TXN_OK) { |
1895 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; |
1896 | 0 | return -1; |
1897 | 0 | } |
1898 | | // double check becase of new transaction |
1899 | 54.7k | T rowset_meta; |
1900 | 54.7k | std::string val; |
1901 | 54.7k | err = txn->get(key, &val); |
1902 | 54.7k | if (!rowset_meta.ParseFromString(val)) { |
1903 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; |
1904 | 0 | return -1; |
1905 | 0 | } |
1906 | 54.7k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { |
1907 | 51.0k | rs_meta = rowset_meta.mutable_rowset_meta(); |
1908 | 51.0k | } else { |
1909 | 51.0k | rs_meta = &rowset_meta; |
1910 | 51.0k | } |
1911 | 54.7k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { |
1912 | 0 | return 0; |
1913 | 0 | } |
1914 | 54.7k | rs_meta->set_is_recycled(true); |
1915 | 54.7k | val.clear(); |
1916 | 54.7k | rowset_meta.SerializeToString(&val); |
1917 | 54.7k | txn->put(key, val); |
1918 | 54.7k | err = txn->commit(); |
1919 | 54.7k | if (err != TxnErrorCode::TXN_OK) { |
1920 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; |
1921 | 0 | return -1; |
1922 | 0 | } |
1923 | 54.7k | } |
1924 | 109k | return need_write_back ? 1 : 0; |
1925 | 109k | } _ZN5doris5cloud23mark_rowset_as_recycledINS0_15RecycleRowsetPBEEEiPNS0_5TxnKvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS8_ERT_ Line | Count | Source | 1876 | 7.50k | T& rowset_meta_pb) { | 1877 | 7.50k | RowsetMetaCloudPB* rs_meta; | 1878 | | | 1879 | 7.50k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1880 | 7.50k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1881 | 7.50k | } else { | 1882 | 7.50k | rs_meta = &rowset_meta_pb; | 1883 | 7.50k | } | 1884 | | | 1885 | 7.50k | bool need_write_back = false; | 1886 | 7.50k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { | 1887 | 3.75k | need_write_back = true; | 1888 | 3.75k | rs_meta->set_is_recycled(true); | 1889 | 3.75k | } | 1890 | | | 1891 | 7.50k | if (need_write_back) { | 1892 | 3.75k | std::unique_ptr<Transaction> txn; | 1893 | 3.75k | TxnErrorCode err = txn_kv->create_txn(&txn); | 1894 | 3.75k | if (err != TxnErrorCode::TXN_OK) { | 1895 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; | 1896 | 0 | return -1; | 1897 | 0 | } | 1898 | | // double check becase of new transaction | 1899 | 3.75k | T rowset_meta; | 1900 | 3.75k | std::string val; | 1901 | 3.75k | err = txn->get(key, &val); | 1902 | 3.75k | if (!rowset_meta.ParseFromString(val)) { | 1903 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; | 1904 | 0 | return -1; | 1905 | 0 | } | 1906 | 3.75k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1907 | 3.75k | rs_meta = rowset_meta.mutable_rowset_meta(); | 1908 | 3.75k | } else { | 1909 | 3.75k | rs_meta = &rowset_meta; | 1910 | 3.75k | } | 1911 | 3.75k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { | 1912 | 0 | return 0; | 1913 | 0 | } | 1914 | 3.75k | rs_meta->set_is_recycled(true); | 1915 | 3.75k | val.clear(); | 1916 | 3.75k | rowset_meta.SerializeToString(&val); | 1917 | 3.75k | txn->put(key, val); | 1918 | 3.75k | err = txn->commit(); | 1919 | 3.75k | if (err != TxnErrorCode::TXN_OK) { | 1920 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; | 1921 | 0 | return -1; | 1922 | 0 | } | 1923 | 3.75k | } | 1924 | 7.50k | return need_write_back ? 1 : 0; | 1925 | 7.50k | } |
_ZN5doris5cloud23mark_rowset_as_recycledINS_17RowsetMetaCloudPBEEEiPNS0_5TxnKvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS8_ERT_ Line | Count | Source | 1876 | 102k | T& rowset_meta_pb) { | 1877 | 102k | RowsetMetaCloudPB* rs_meta; | 1878 | | | 1879 | 102k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1880 | 102k | rs_meta = rowset_meta_pb.mutable_rowset_meta(); | 1881 | 102k | } else { | 1882 | 102k | rs_meta = &rowset_meta_pb; | 1883 | 102k | } | 1884 | | | 1885 | 102k | bool need_write_back = false; | 1886 | 102k | if ((!rs_meta->has_is_recycled() || !rs_meta->is_recycled())) { | 1887 | 51.0k | need_write_back = true; | 1888 | 51.0k | rs_meta->set_is_recycled(true); | 1889 | 51.0k | } | 1890 | | | 1891 | 102k | if (need_write_back) { | 1892 | 51.0k | std::unique_ptr<Transaction> txn; | 1893 | 51.0k | TxnErrorCode err = txn_kv->create_txn(&txn); | 1894 | 51.0k | if (err != TxnErrorCode::TXN_OK) { | 1895 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id; | 1896 | 0 | return -1; | 1897 | 0 | } | 1898 | | // double check becase of new transaction | 1899 | 51.0k | T rowset_meta; | 1900 | 51.0k | std::string val; | 1901 | 51.0k | err = txn->get(key, &val); | 1902 | 51.0k | if (!rowset_meta.ParseFromString(val)) { | 1903 | 0 | LOG(WARNING) << "failed to parse rs_meta, instance_id=" << instance_id; | 1904 | 0 | return -1; | 1905 | 0 | } | 1906 | 51.0k | if constexpr (std::is_same_v<T, RecycleRowsetPB>) { | 1907 | 51.0k | rs_meta = rowset_meta.mutable_rowset_meta(); | 1908 | 51.0k | } else { | 1909 | 51.0k | rs_meta = &rowset_meta; | 1910 | 51.0k | } | 1911 | 51.0k | if ((rs_meta->has_is_recycled() && rs_meta->is_recycled())) { | 1912 | 0 | return 0; | 1913 | 0 | } | 1914 | 51.0k | rs_meta->set_is_recycled(true); | 1915 | 51.0k | val.clear(); | 1916 | 51.0k | rowset_meta.SerializeToString(&val); | 1917 | 51.0k | txn->put(key, val); | 1918 | 51.0k | err = txn->commit(); | 1919 | 51.0k | if (err != TxnErrorCode::TXN_OK) { | 1920 | 0 | LOG(WARNING) << "failed to commit txn, instance_id=" << instance_id; | 1921 | 0 | return -1; | 1922 | 0 | } | 1923 | 51.0k | } | 1924 | 102k | return need_write_back ? 1 : 0; | 1925 | 102k | } |
|
1926 | | |
1927 | 0 | int InstanceRecycler::recycle_ref_rowsets(bool* has_unrecycled_rowsets) { |
1928 | 0 | const std::string task_name = "recycle_ref_rowsets"; |
1929 | 0 | *has_unrecycled_rowsets = false; |
1930 | |
|
1931 | 0 | std::string data_rowset_ref_count_key_start = |
1932 | 0 | versioned::data_rowset_ref_count_key({instance_id_, 0, ""}); |
1933 | 0 | std::string data_rowset_ref_count_key_end = |
1934 | 0 | versioned::data_rowset_ref_count_key({instance_id_, INT64_MAX, ""}); |
1935 | |
|
1936 | 0 | LOG_WARNING("begin to recycle ref rowsets").tag("instance_id", instance_id_); |
1937 | |
|
1938 | 0 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
1939 | 0 | register_recycle_task(task_name, start_time); |
1940 | |
|
1941 | 0 | DORIS_CLOUD_DEFER { |
1942 | 0 | unregister_recycle_task(task_name); |
1943 | 0 | int64_t cost = |
1944 | 0 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
1945 | 0 | LOG_WARNING("recycle ref rowsets finished, cost={}s", cost) |
1946 | 0 | .tag("instance_id", instance_id_); |
1947 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_0clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_0clEv |
1948 | | |
1949 | | // Phase 1: Scan to collect all tablet_ids that have rowset ref counts |
1950 | 0 | std::set<int64_t> tablets_with_refs; |
1951 | 0 | int64_t num_scanned = 0; |
1952 | |
|
1953 | 0 | auto scan_func = [&](std::string_view k, std::string_view v) -> int { |
1954 | 0 | ++num_scanned; |
1955 | 0 | int64_t tablet_id; |
1956 | 0 | std::string rowset_id; |
1957 | 0 | std::string_view key(k); |
1958 | 0 | if (!versioned::decode_data_rowset_ref_count_key(&key, &tablet_id, &rowset_id)) { |
1959 | 0 | LOG_WARNING("failed to decode data rowset ref count key").tag("key", hex(k)); |
1960 | 0 | return 0; // Continue scanning |
1961 | 0 | } |
1962 | | |
1963 | 0 | tablets_with_refs.insert(tablet_id); |
1964 | 0 | return 0; |
1965 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES7_ Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_ref_rowsetsEPbENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES7_ |
1966 | |
|
1967 | 0 | if (scan_and_recycle(data_rowset_ref_count_key_start, data_rowset_ref_count_key_end, |
1968 | 0 | std::move(scan_func)) != 0) { |
1969 | 0 | LOG_WARNING("failed to scan data rowset ref count keys"); |
1970 | 0 | return -1; |
1971 | 0 | } |
1972 | | |
1973 | 0 | LOG_INFO("collected {} tablets with rowset refs, scanned {} ref count keys", |
1974 | 0 | tablets_with_refs.size(), num_scanned) |
1975 | 0 | .tag("instance_id", instance_id_); |
1976 | | |
1977 | | // Phase 2: Recycle each tablet |
1978 | 0 | int64_t num_recycled_tablets = 0; |
1979 | 0 | for (int64_t tablet_id : tablets_with_refs) { |
1980 | 0 | if (stopped()) { |
1981 | 0 | LOG_INFO("recycler stopped, skip remaining tablets") |
1982 | 0 | .tag("instance_id", instance_id_) |
1983 | 0 | .tag("tablets_processed", num_recycled_tablets) |
1984 | 0 | .tag("tablets_remaining", tablets_with_refs.size() - num_recycled_tablets); |
1985 | 0 | break; |
1986 | 0 | } |
1987 | | |
1988 | 0 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
1989 | 0 | if (recycle_versioned_tablet(tablet_id, metrics_context) != 0) { |
1990 | 0 | LOG_WARNING("failed to recycle tablet") |
1991 | 0 | .tag("instance_id", instance_id_) |
1992 | 0 | .tag("tablet_id", tablet_id); |
1993 | 0 | return -1; |
1994 | 0 | } |
1995 | 0 | ++num_recycled_tablets; |
1996 | 0 | } |
1997 | | |
1998 | 0 | LOG_INFO("recycled {} tablets", num_recycled_tablets) |
1999 | 0 | .tag("instance_id", instance_id_) |
2000 | 0 | .tag("total_tablets", tablets_with_refs.size()); |
2001 | | |
2002 | | // Phase 3: Scan again to check if any ref count keys still exist |
2003 | 0 | std::unique_ptr<Transaction> txn; |
2004 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2005 | 0 | if (err != TxnErrorCode::TXN_OK) { |
2006 | 0 | LOG_WARNING("failed to create txn for final check") |
2007 | 0 | .tag("instance_id", instance_id_) |
2008 | 0 | .tag("err", err); |
2009 | 0 | return -1; |
2010 | 0 | } |
2011 | | |
2012 | 0 | std::unique_ptr<RangeGetIterator> iter; |
2013 | 0 | err = txn->get(data_rowset_ref_count_key_start, data_rowset_ref_count_key_end, &iter, true); |
2014 | 0 | if (err != TxnErrorCode::TXN_OK) { |
2015 | 0 | LOG_WARNING("failed to create range iterator for final check") |
2016 | 0 | .tag("instance_id", instance_id_) |
2017 | 0 | .tag("err", err); |
2018 | 0 | return -1; |
2019 | 0 | } |
2020 | | |
2021 | 0 | *has_unrecycled_rowsets = iter->has_next(); |
2022 | 0 | if (*has_unrecycled_rowsets) { |
2023 | 0 | LOG_INFO("still has unrecycled rowsets after recycle_ref_rowsets") |
2024 | 0 | .tag("instance_id", instance_id_); |
2025 | 0 | } |
2026 | |
|
2027 | 0 | return 0; |
2028 | 0 | } |
2029 | | |
2030 | 17 | int InstanceRecycler::recycle_indexes() { |
2031 | 17 | const std::string task_name = "recycle_indexes"; |
2032 | 17 | int64_t num_scanned = 0; |
2033 | 17 | int64_t num_expired = 0; |
2034 | 17 | int64_t num_recycled = 0; |
2035 | 17 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
2036 | | |
2037 | 17 | RecycleIndexKeyInfo index_key_info0 {instance_id_, 0}; |
2038 | 17 | RecycleIndexKeyInfo index_key_info1 {instance_id_, INT64_MAX}; |
2039 | 17 | std::string index_key0; |
2040 | 17 | std::string index_key1; |
2041 | 17 | recycle_index_key(index_key_info0, &index_key0); |
2042 | 17 | recycle_index_key(index_key_info1, &index_key1); |
2043 | | |
2044 | 17 | LOG_WARNING("begin to recycle indexes").tag("instance_id", instance_id_); |
2045 | | |
2046 | 17 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
2047 | 17 | register_recycle_task(task_name, start_time); |
2048 | | |
2049 | 17 | DORIS_CLOUD_DEFER { |
2050 | 17 | unregister_recycle_task(task_name); |
2051 | 17 | int64_t cost = |
2052 | 17 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
2053 | 17 | metrics_context.finish_report(); |
2054 | 17 | LOG_WARNING("recycle indexes finished, cost={}s", cost) |
2055 | 17 | .tag("instance_id", instance_id_) |
2056 | 17 | .tag("num_scanned", num_scanned) |
2057 | 17 | .tag("num_expired", num_expired) |
2058 | 17 | .tag("num_recycled", num_recycled); |
2059 | 17 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_0clEv Line | Count | Source | 2049 | 2 | DORIS_CLOUD_DEFER { | 2050 | 2 | unregister_recycle_task(task_name); | 2051 | 2 | int64_t cost = | 2052 | 2 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2053 | 2 | metrics_context.finish_report(); | 2054 | 2 | LOG_WARNING("recycle indexes finished, cost={}s", cost) | 2055 | 2 | .tag("instance_id", instance_id_) | 2056 | 2 | .tag("num_scanned", num_scanned) | 2057 | 2 | .tag("num_expired", num_expired) | 2058 | 2 | .tag("num_recycled", num_recycled); | 2059 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_0clEv Line | Count | Source | 2049 | 15 | DORIS_CLOUD_DEFER { | 2050 | 15 | unregister_recycle_task(task_name); | 2051 | 15 | int64_t cost = | 2052 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2053 | 15 | metrics_context.finish_report(); | 2054 | 15 | LOG_WARNING("recycle indexes finished, cost={}s", cost) | 2055 | 15 | .tag("instance_id", instance_id_) | 2056 | 15 | .tag("num_scanned", num_scanned) | 2057 | 15 | .tag("num_expired", num_expired) | 2058 | 15 | .tag("num_recycled", num_recycled); | 2059 | 15 | }; |
|
2060 | | |
2061 | 17 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
2062 | | |
2063 | | // Elements in `index_keys` has the same lifetime as `it` in `scan_and_recycle` |
2064 | 17 | std::vector<std::string_view> index_keys; |
2065 | 17 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2066 | 10 | ++num_scanned; |
2067 | 10 | RecycleIndexPB index_pb; |
2068 | 10 | if (!index_pb.ParseFromArray(v.data(), v.size())) { |
2069 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); |
2070 | 0 | return -1; |
2071 | 0 | } |
2072 | 10 | int64_t current_time = ::time(nullptr); |
2073 | 10 | if (current_time < |
2074 | 10 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired |
2075 | 0 | return 0; |
2076 | 0 | } |
2077 | 10 | ++num_expired; |
2078 | | // decode index_id |
2079 | 10 | auto k1 = k; |
2080 | 10 | k1.remove_prefix(1); |
2081 | 10 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2082 | 10 | decode_key(&k1, &out); |
2083 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB |
2084 | 10 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); |
2085 | 10 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ |
2086 | 10 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id |
2087 | 10 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); |
2088 | | // Change state to RECYCLING |
2089 | 10 | std::unique_ptr<Transaction> txn; |
2090 | 10 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2091 | 10 | if (err != TxnErrorCode::TXN_OK) { |
2092 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2093 | 0 | return -1; |
2094 | 0 | } |
2095 | 10 | std::string val; |
2096 | 10 | err = txn->get(k, &val); |
2097 | 10 | if (err == |
2098 | 10 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it |
2099 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); |
2100 | 0 | return 0; |
2101 | 0 | } |
2102 | 10 | if (err != TxnErrorCode::TXN_OK) { |
2103 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); |
2104 | 0 | return -1; |
2105 | 0 | } |
2106 | 10 | index_pb.Clear(); |
2107 | 10 | if (!index_pb.ParseFromString(val)) { |
2108 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); |
2109 | 0 | return -1; |
2110 | 0 | } |
2111 | 10 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { |
2112 | 9 | index_pb.set_state(RecycleIndexPB::RECYCLING); |
2113 | 9 | txn->put(k, index_pb.SerializeAsString()); |
2114 | 9 | err = txn->commit(); |
2115 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2116 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2117 | 0 | return -1; |
2118 | 0 | } |
2119 | 9 | } |
2120 | 10 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { |
2121 | 1 | LOG_WARNING("failed to recycle tablets under index") |
2122 | 1 | .tag("table_id", index_pb.table_id()) |
2123 | 1 | .tag("instance_id", instance_id_) |
2124 | 1 | .tag("index_id", index_id); |
2125 | 1 | return -1; |
2126 | 1 | } |
2127 | | |
2128 | 9 | if (index_pb.has_db_id()) { |
2129 | | // Recycle the versioned keys |
2130 | 3 | std::unique_ptr<Transaction> txn; |
2131 | 3 | err = txn_kv_->create_txn(&txn); |
2132 | 3 | if (err != TxnErrorCode::TXN_OK) { |
2133 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2134 | 0 | return -1; |
2135 | 0 | } |
2136 | 3 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); |
2137 | 3 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); |
2138 | 3 | std::string index_inverted_key = versioned::index_inverted_key( |
2139 | 3 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); |
2140 | 3 | versioned_remove_all(txn.get(), meta_key); |
2141 | 3 | txn->remove(index_key); |
2142 | 3 | txn->remove(index_inverted_key); |
2143 | 3 | err = txn->commit(); |
2144 | 3 | if (err != TxnErrorCode::TXN_OK) { |
2145 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2146 | 0 | return -1; |
2147 | 0 | } |
2148 | 3 | } |
2149 | | |
2150 | 9 | metrics_context.total_recycled_num = ++num_recycled; |
2151 | 9 | metrics_context.report(); |
2152 | 9 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
2153 | 9 | index_keys.push_back(k); |
2154 | 9 | return 0; |
2155 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2065 | 2 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2066 | 2 | ++num_scanned; | 2067 | 2 | RecycleIndexPB index_pb; | 2068 | 2 | if (!index_pb.ParseFromArray(v.data(), v.size())) { | 2069 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2070 | 0 | return -1; | 2071 | 0 | } | 2072 | 2 | int64_t current_time = ::time(nullptr); | 2073 | 2 | if (current_time < | 2074 | 2 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired | 2075 | 0 | return 0; | 2076 | 0 | } | 2077 | 2 | ++num_expired; | 2078 | | // decode index_id | 2079 | 2 | auto k1 = k; | 2080 | 2 | k1.remove_prefix(1); | 2081 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2082 | 2 | decode_key(&k1, &out); | 2083 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB | 2084 | 2 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); | 2085 | 2 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ | 2086 | 2 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id | 2087 | 2 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); | 2088 | | // Change state to RECYCLING | 2089 | 2 | std::unique_ptr<Transaction> txn; | 2090 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2091 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2092 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2093 | 0 | return -1; | 2094 | 0 | } | 2095 | 2 | std::string val; | 2096 | 2 | err = txn->get(k, &val); | 2097 | 2 | if (err == | 2098 | 2 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2099 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); | 2100 | 0 | return 0; | 2101 | 0 | } | 2102 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2103 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); | 2104 | 0 | return -1; | 2105 | 0 | } | 2106 | 2 | index_pb.Clear(); | 2107 | 2 | if (!index_pb.ParseFromString(val)) { | 2108 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2109 | 0 | return -1; | 2110 | 0 | } | 2111 | 2 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { | 2112 | 1 | index_pb.set_state(RecycleIndexPB::RECYCLING); | 2113 | 1 | txn->put(k, index_pb.SerializeAsString()); | 2114 | 1 | err = txn->commit(); | 2115 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2116 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2117 | 0 | return -1; | 2118 | 0 | } | 2119 | 1 | } | 2120 | 2 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { | 2121 | 1 | LOG_WARNING("failed to recycle tablets under index") | 2122 | 1 | .tag("table_id", index_pb.table_id()) | 2123 | 1 | .tag("instance_id", instance_id_) | 2124 | 1 | .tag("index_id", index_id); | 2125 | 1 | return -1; | 2126 | 1 | } | 2127 | | | 2128 | 1 | if (index_pb.has_db_id()) { | 2129 | | // Recycle the versioned keys | 2130 | 1 | std::unique_ptr<Transaction> txn; | 2131 | 1 | err = txn_kv_->create_txn(&txn); | 2132 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2133 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2134 | 0 | return -1; | 2135 | 0 | } | 2136 | 1 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); | 2137 | 1 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); | 2138 | 1 | std::string index_inverted_key = versioned::index_inverted_key( | 2139 | 1 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); | 2140 | 1 | versioned_remove_all(txn.get(), meta_key); | 2141 | 1 | txn->remove(index_key); | 2142 | 1 | txn->remove(index_inverted_key); | 2143 | 1 | err = txn->commit(); | 2144 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2145 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2146 | 0 | return -1; | 2147 | 0 | } | 2148 | 1 | } | 2149 | | | 2150 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2151 | 1 | metrics_context.report(); | 2152 | 1 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2153 | 1 | index_keys.push_back(k); | 2154 | 1 | return 0; | 2155 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2065 | 8 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2066 | 8 | ++num_scanned; | 2067 | 8 | RecycleIndexPB index_pb; | 2068 | 8 | if (!index_pb.ParseFromArray(v.data(), v.size())) { | 2069 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2070 | 0 | return -1; | 2071 | 0 | } | 2072 | 8 | int64_t current_time = ::time(nullptr); | 2073 | 8 | if (current_time < | 2074 | 8 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired | 2075 | 0 | return 0; | 2076 | 0 | } | 2077 | 8 | ++num_expired; | 2078 | | // decode index_id | 2079 | 8 | auto k1 = k; | 2080 | 8 | k1.remove_prefix(1); | 2081 | 8 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2082 | 8 | decode_key(&k1, &out); | 2083 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB | 2084 | 8 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); | 2085 | 8 | LOG(INFO) << "begin to recycle index, instance_id=" << instance_id_ | 2086 | 8 | << " table_id=" << index_pb.table_id() << " index_id=" << index_id | 2087 | 8 | << " state=" << RecycleIndexPB::State_Name(index_pb.state()); | 2088 | | // Change state to RECYCLING | 2089 | 8 | std::unique_ptr<Transaction> txn; | 2090 | 8 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2091 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2092 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2093 | 0 | return -1; | 2094 | 0 | } | 2095 | 8 | std::string val; | 2096 | 8 | err = txn->get(k, &val); | 2097 | 8 | if (err == | 2098 | 8 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2099 | 0 | LOG_INFO("index {} has been recycled or committed", index_id); | 2100 | 0 | return 0; | 2101 | 0 | } | 2102 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2103 | 0 | LOG_WARNING("failed to get kv").tag("key", hex(k)).tag("err", err); | 2104 | 0 | return -1; | 2105 | 0 | } | 2106 | 8 | index_pb.Clear(); | 2107 | 8 | if (!index_pb.ParseFromString(val)) { | 2108 | 0 | LOG_WARNING("malformed recycle index value").tag("key", hex(k)); | 2109 | 0 | return -1; | 2110 | 0 | } | 2111 | 8 | if (index_pb.state() != RecycleIndexPB::RECYCLING) { | 2112 | 8 | index_pb.set_state(RecycleIndexPB::RECYCLING); | 2113 | 8 | txn->put(k, index_pb.SerializeAsString()); | 2114 | 8 | err = txn->commit(); | 2115 | 8 | if (err != TxnErrorCode::TXN_OK) { | 2116 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2117 | 0 | return -1; | 2118 | 0 | } | 2119 | 8 | } | 2120 | 8 | if (recycle_tablets(index_pb.table_id(), index_id, metrics_context) != 0) { | 2121 | 0 | LOG_WARNING("failed to recycle tablets under index") | 2122 | 0 | .tag("table_id", index_pb.table_id()) | 2123 | 0 | .tag("instance_id", instance_id_) | 2124 | 0 | .tag("index_id", index_id); | 2125 | 0 | return -1; | 2126 | 0 | } | 2127 | | | 2128 | 8 | if (index_pb.has_db_id()) { | 2129 | | // Recycle the versioned keys | 2130 | 2 | std::unique_ptr<Transaction> txn; | 2131 | 2 | err = txn_kv_->create_txn(&txn); | 2132 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2133 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2134 | 0 | return -1; | 2135 | 0 | } | 2136 | 2 | std::string meta_key = versioned::meta_index_key({instance_id_, index_id}); | 2137 | 2 | std::string index_key = versioned::index_index_key({instance_id_, index_id}); | 2138 | 2 | std::string index_inverted_key = versioned::index_inverted_key( | 2139 | 2 | {instance_id_, index_pb.db_id(), index_pb.table_id(), index_id}); | 2140 | 2 | versioned_remove_all(txn.get(), meta_key); | 2141 | 2 | txn->remove(index_key); | 2142 | 2 | txn->remove(index_inverted_key); | 2143 | 2 | err = txn->commit(); | 2144 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2145 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2146 | 0 | return -1; | 2147 | 0 | } | 2148 | 2 | } | 2149 | | | 2150 | 8 | metrics_context.total_recycled_num = ++num_recycled; | 2151 | 8 | metrics_context.report(); | 2152 | 8 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2153 | 8 | index_keys.push_back(k); | 2154 | 8 | return 0; | 2155 | 8 | }; |
|
2156 | | |
2157 | 17 | auto loop_done = [&index_keys, this]() -> int { |
2158 | 6 | if (index_keys.empty()) return 0; |
2159 | 5 | DORIS_CLOUD_DEFER { |
2160 | 5 | index_keys.clear(); |
2161 | 5 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2159 | 1 | DORIS_CLOUD_DEFER { | 2160 | 1 | index_keys.clear(); | 2161 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2159 | 4 | DORIS_CLOUD_DEFER { | 2160 | 4 | index_keys.clear(); | 2161 | 4 | }; |
|
2162 | 5 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { |
2163 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; |
2164 | 0 | return -1; |
2165 | 0 | } |
2166 | 5 | return 0; |
2167 | 5 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEv Line | Count | Source | 2157 | 2 | auto loop_done = [&index_keys, this]() -> int { | 2158 | 2 | if (index_keys.empty()) return 0; | 2159 | 1 | DORIS_CLOUD_DEFER { | 2160 | 1 | index_keys.clear(); | 2161 | 1 | }; | 2162 | 1 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { | 2163 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; | 2164 | 0 | return -1; | 2165 | 0 | } | 2166 | 1 | return 0; | 2167 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_indexesEvENK3$_1clEv Line | Count | Source | 2157 | 4 | auto loop_done = [&index_keys, this]() -> int { | 2158 | 4 | if (index_keys.empty()) return 0; | 2159 | 4 | DORIS_CLOUD_DEFER { | 2160 | 4 | index_keys.clear(); | 2161 | 4 | }; | 2162 | 4 | if (0 != txn_remove(txn_kv_.get(), index_keys)) { | 2163 | 0 | LOG(WARNING) << "failed to delete recycle index kv, instance_id=" << instance_id_; | 2164 | 0 | return -1; | 2165 | 0 | } | 2166 | 4 | return 0; | 2167 | 4 | }; |
|
2168 | | |
2169 | 17 | if (config::enable_recycler_stats_metrics) { |
2170 | 0 | scan_and_statistics_indexes(); |
2171 | 0 | } |
2172 | | // recycle_func and loop_done for scan and recycle |
2173 | 17 | return scan_and_recycle(index_key0, index_key1, std::move(recycle_func), std::move(loop_done)); |
2174 | 17 | } |
2175 | | |
2176 | | bool check_lazy_txn_finished(std::shared_ptr<TxnKv> txn_kv, const std::string instance_id, |
2177 | 8.24k | int64_t tablet_id) { |
2178 | 8.24k | TEST_SYNC_POINT_RETURN_WITH_VALUE("check_lazy_txn_finished::bypass_check", true); |
2179 | | |
2180 | 8.24k | std::unique_ptr<Transaction> txn; |
2181 | 8.24k | TxnErrorCode err = txn_kv->create_txn(&txn); |
2182 | 8.24k | if (err != TxnErrorCode::TXN_OK) { |
2183 | 0 | LOG(WARNING) << "failed to create txn, instance_id=" << instance_id |
2184 | 0 | << " tablet_id=" << tablet_id << " err=" << err; |
2185 | 0 | return false; |
2186 | 0 | } |
2187 | | |
2188 | 8.24k | std::string tablet_idx_key = meta_tablet_idx_key({instance_id, tablet_id}); |
2189 | 8.24k | std::string tablet_idx_val; |
2190 | 8.24k | err = txn->get(tablet_idx_key, &tablet_idx_val); |
2191 | 8.24k | if (TxnErrorCode::TXN_OK != err) { |
2192 | 0 | LOG(WARNING) << "failed to get tablet index, instance_id=" << instance_id |
2193 | 0 | << " tablet_id=" << tablet_id << " err=" << err |
2194 | 0 | << " key=" << hex(tablet_idx_key); |
2195 | 0 | return false; |
2196 | 0 | } |
2197 | | |
2198 | 8.24k | TabletIndexPB tablet_idx_pb; |
2199 | 8.24k | if (!tablet_idx_pb.ParseFromString(tablet_idx_val)) { |
2200 | 0 | LOG(WARNING) << "failed to parse tablet_idx_pb, instance_id=" << instance_id |
2201 | 0 | << " tablet_id=" << tablet_id; |
2202 | 0 | return false; |
2203 | 0 | } |
2204 | | |
2205 | 8.24k | if (!tablet_idx_pb.has_db_id()) { |
2206 | | // In the previous version, the db_id was not set in the index_pb. |
2207 | | // If updating to the version which enable txn lazy commit, the db_id will be set. |
2208 | 0 | LOG(INFO) << "txn index has no db_id, tablet_id=" << tablet_id |
2209 | 0 | << " instance_id=" << instance_id |
2210 | 0 | << " tablet_idx_pb=" << tablet_idx_pb.ShortDebugString(); |
2211 | 0 | return true; |
2212 | 0 | } |
2213 | | |
2214 | 8.24k | std::string ver_val; |
2215 | 8.24k | std::string ver_key = |
2216 | 8.24k | partition_version_key({instance_id, tablet_idx_pb.db_id(), tablet_idx_pb.table_id(), |
2217 | 8.24k | tablet_idx_pb.partition_id()}); |
2218 | 8.24k | err = txn->get(ver_key, &ver_val); |
2219 | | |
2220 | 8.24k | if (TxnErrorCode::TXN_KEY_NOT_FOUND == err) { |
2221 | 204 | LOG(INFO) << "" |
2222 | 204 | "partition version not found, instance_id=" |
2223 | 204 | << instance_id << " db_id=" << tablet_idx_pb.db_id() |
2224 | 204 | << " table_id=" << tablet_idx_pb.table_id() |
2225 | 204 | << " partition_id=" << tablet_idx_pb.partition_id() << " tablet_id=" << tablet_id |
2226 | 204 | << " key=" << hex(ver_key); |
2227 | 204 | return true; |
2228 | 204 | } |
2229 | | |
2230 | 8.03k | if (TxnErrorCode::TXN_OK != err) { |
2231 | 0 | LOG(WARNING) << "failed to get partition version, instance_id=" << instance_id |
2232 | 0 | << " db_id=" << tablet_idx_pb.db_id() |
2233 | 0 | << " table_id=" << tablet_idx_pb.table_id() |
2234 | 0 | << " partition_id=" << tablet_idx_pb.partition_id() |
2235 | 0 | << " tablet_id=" << tablet_id << " key=" << hex(ver_key) << " err=" << err; |
2236 | 0 | return false; |
2237 | 0 | } |
2238 | | |
2239 | 8.03k | VersionPB version_pb; |
2240 | 8.03k | if (!version_pb.ParseFromString(ver_val)) { |
2241 | 0 | LOG(WARNING) << "failed to parse version_pb, instance_id=" << instance_id |
2242 | 0 | << " db_id=" << tablet_idx_pb.db_id() |
2243 | 0 | << " table_id=" << tablet_idx_pb.table_id() |
2244 | 0 | << " partition_id=" << tablet_idx_pb.partition_id() |
2245 | 0 | << " tablet_id=" << tablet_id << " key=" << hex(ver_key); |
2246 | 0 | return false; |
2247 | 0 | } |
2248 | | |
2249 | 8.03k | if (version_pb.pending_txn_ids_size() > 0) { |
2250 | 4.00k | TEST_SYNC_POINT_CALLBACK("check_lazy_txn_finished::txn_not_finished"); |
2251 | 4.00k | DCHECK(version_pb.pending_txn_ids_size() == 1); |
2252 | 4.00k | LOG(WARNING) << "lazy txn not finished, instance_id=" << instance_id |
2253 | 4.00k | << " db_id=" << tablet_idx_pb.db_id() |
2254 | 4.00k | << " table_id=" << tablet_idx_pb.table_id() |
2255 | 4.00k | << " partition_id=" << tablet_idx_pb.partition_id() |
2256 | 4.00k | << " tablet_id=" << tablet_id << " txn_id=" << version_pb.pending_txn_ids(0) |
2257 | 4.00k | << " key=" << hex(ver_key); |
2258 | 4.00k | return false; |
2259 | 4.00k | } |
2260 | 4.03k | return true; |
2261 | 8.03k | } |
2262 | | |
2263 | 15 | int InstanceRecycler::recycle_partitions() { |
2264 | 15 | const std::string task_name = "recycle_partitions"; |
2265 | 15 | int64_t num_scanned = 0; |
2266 | 15 | int64_t num_expired = 0; |
2267 | 15 | int64_t num_recycled = 0; |
2268 | 15 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
2269 | | |
2270 | 15 | RecyclePartKeyInfo part_key_info0 {instance_id_, 0}; |
2271 | 15 | RecyclePartKeyInfo part_key_info1 {instance_id_, INT64_MAX}; |
2272 | 15 | std::string part_key0; |
2273 | 15 | std::string part_key1; |
2274 | 15 | recycle_partition_key(part_key_info0, &part_key0); |
2275 | 15 | recycle_partition_key(part_key_info1, &part_key1); |
2276 | | |
2277 | 15 | LOG_WARNING("begin to recycle partitions").tag("instance_id", instance_id_); |
2278 | | |
2279 | 15 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
2280 | 15 | register_recycle_task(task_name, start_time); |
2281 | | |
2282 | 15 | DORIS_CLOUD_DEFER { |
2283 | 15 | unregister_recycle_task(task_name); |
2284 | 15 | int64_t cost = |
2285 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
2286 | 15 | metrics_context.finish_report(); |
2287 | 15 | LOG_WARNING("recycle partitions finished, cost={}s", cost) |
2288 | 15 | .tag("instance_id", instance_id_) |
2289 | 15 | .tag("num_scanned", num_scanned) |
2290 | 15 | .tag("num_expired", num_expired) |
2291 | 15 | .tag("num_recycled", num_recycled); |
2292 | 15 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_0clEv Line | Count | Source | 2282 | 2 | DORIS_CLOUD_DEFER { | 2283 | 2 | unregister_recycle_task(task_name); | 2284 | 2 | int64_t cost = | 2285 | 2 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2286 | 2 | metrics_context.finish_report(); | 2287 | 2 | LOG_WARNING("recycle partitions finished, cost={}s", cost) | 2288 | 2 | .tag("instance_id", instance_id_) | 2289 | 2 | .tag("num_scanned", num_scanned) | 2290 | 2 | .tag("num_expired", num_expired) | 2291 | 2 | .tag("num_recycled", num_recycled); | 2292 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_0clEv Line | Count | Source | 2282 | 13 | DORIS_CLOUD_DEFER { | 2283 | 13 | unregister_recycle_task(task_name); | 2284 | 13 | int64_t cost = | 2285 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 2286 | 13 | metrics_context.finish_report(); | 2287 | 13 | LOG_WARNING("recycle partitions finished, cost={}s", cost) | 2288 | 13 | .tag("instance_id", instance_id_) | 2289 | 13 | .tag("num_scanned", num_scanned) | 2290 | 13 | .tag("num_expired", num_expired) | 2291 | 13 | .tag("num_recycled", num_recycled); | 2292 | 13 | }; |
|
2293 | | |
2294 | 15 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
2295 | | |
2296 | | // Elements in `partition_keys` has the same lifetime as `it` in `scan_and_recycle` |
2297 | 15 | std::vector<std::string_view> partition_keys; |
2298 | 15 | std::vector<std::string> partition_version_keys; |
2299 | 15 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2300 | 9 | ++num_scanned; |
2301 | 9 | RecyclePartitionPB part_pb; |
2302 | 9 | if (!part_pb.ParseFromArray(v.data(), v.size())) { |
2303 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
2304 | 0 | return -1; |
2305 | 0 | } |
2306 | 9 | int64_t current_time = ::time(nullptr); |
2307 | 9 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, |
2308 | 9 | &earlest_ts)) { // not expired |
2309 | 0 | return 0; |
2310 | 0 | } |
2311 | 9 | ++num_expired; |
2312 | | // decode partition_id |
2313 | 9 | auto k1 = k; |
2314 | 9 | k1.remove_prefix(1); |
2315 | 9 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2316 | 9 | decode_key(&k1, &out); |
2317 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB |
2318 | 9 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); |
2319 | 9 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ |
2320 | 9 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id |
2321 | 9 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); |
2322 | | // Change state to RECYCLING |
2323 | 9 | std::unique_ptr<Transaction> txn; |
2324 | 9 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2325 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2326 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2327 | 0 | return -1; |
2328 | 0 | } |
2329 | 9 | std::string val; |
2330 | 9 | err = txn->get(k, &val); |
2331 | 9 | if (err == |
2332 | 9 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it |
2333 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); |
2334 | 0 | return 0; |
2335 | 0 | } |
2336 | 9 | if (err != TxnErrorCode::TXN_OK) { |
2337 | 0 | LOG_WARNING("failed to get kv"); |
2338 | 0 | return -1; |
2339 | 0 | } |
2340 | 9 | part_pb.Clear(); |
2341 | 9 | if (!part_pb.ParseFromString(val)) { |
2342 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
2343 | 0 | return -1; |
2344 | 0 | } |
2345 | | // Partitions with PREPARED state MUST have no data |
2346 | 9 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { |
2347 | 8 | part_pb.set_state(RecyclePartitionPB::RECYCLING); |
2348 | 8 | txn->put(k, part_pb.SerializeAsString()); |
2349 | 8 | err = txn->commit(); |
2350 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2351 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
2352 | 0 | return -1; |
2353 | 0 | } |
2354 | 8 | } |
2355 | | |
2356 | 9 | int ret = 0; |
2357 | 33 | for (int64_t index_id : part_pb.index_id()) { |
2358 | 33 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { |
2359 | 1 | LOG_WARNING("failed to recycle tablets under partition") |
2360 | 1 | .tag("table_id", part_pb.table_id()) |
2361 | 1 | .tag("instance_id", instance_id_) |
2362 | 1 | .tag("index_id", index_id) |
2363 | 1 | .tag("partition_id", partition_id); |
2364 | 1 | ret = -1; |
2365 | 1 | } |
2366 | 33 | } |
2367 | 9 | if (ret == 0 && part_pb.has_db_id()) { |
2368 | | // Recycle the versioned keys |
2369 | 8 | std::unique_ptr<Transaction> txn; |
2370 | 8 | err = txn_kv_->create_txn(&txn); |
2371 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2372 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
2373 | 0 | return -1; |
2374 | 0 | } |
2375 | 8 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); |
2376 | 8 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); |
2377 | 8 | std::string inverted_index_key = versioned::partition_inverted_index_key( |
2378 | 8 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); |
2379 | 8 | std::string partition_version_key = |
2380 | 8 | versioned::partition_version_key({instance_id_, partition_id}); |
2381 | 8 | versioned_remove_all(txn.get(), meta_key); |
2382 | 8 | txn->remove(index_key); |
2383 | 8 | txn->remove(inverted_index_key); |
2384 | 8 | versioned_remove_all(txn.get(), partition_version_key); |
2385 | 8 | err = txn->commit(); |
2386 | 8 | if (err != TxnErrorCode::TXN_OK) { |
2387 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); |
2388 | 0 | return -1; |
2389 | 0 | } |
2390 | 8 | } |
2391 | | |
2392 | 9 | if (ret == 0) { |
2393 | 8 | ++num_recycled; |
2394 | 8 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
2395 | 8 | partition_keys.push_back(k); |
2396 | 8 | if (part_pb.db_id() > 0) { |
2397 | 8 | partition_version_keys.push_back(partition_version_key( |
2398 | 8 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); |
2399 | 8 | } |
2400 | 8 | metrics_context.total_recycled_num = num_recycled; |
2401 | 8 | metrics_context.report(); |
2402 | 8 | } |
2403 | 9 | return ret; |
2404 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2299 | 2 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2300 | 2 | ++num_scanned; | 2301 | 2 | RecyclePartitionPB part_pb; | 2302 | 2 | if (!part_pb.ParseFromArray(v.data(), v.size())) { | 2303 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2304 | 0 | return -1; | 2305 | 0 | } | 2306 | 2 | int64_t current_time = ::time(nullptr); | 2307 | 2 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, | 2308 | 2 | &earlest_ts)) { // not expired | 2309 | 0 | return 0; | 2310 | 0 | } | 2311 | 2 | ++num_expired; | 2312 | | // decode partition_id | 2313 | 2 | auto k1 = k; | 2314 | 2 | k1.remove_prefix(1); | 2315 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2316 | 2 | decode_key(&k1, &out); | 2317 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB | 2318 | 2 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); | 2319 | 2 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ | 2320 | 2 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id | 2321 | 2 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); | 2322 | | // Change state to RECYCLING | 2323 | 2 | std::unique_ptr<Transaction> txn; | 2324 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2325 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2326 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2327 | 0 | return -1; | 2328 | 0 | } | 2329 | 2 | std::string val; | 2330 | 2 | err = txn->get(k, &val); | 2331 | 2 | if (err == | 2332 | 2 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2333 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); | 2334 | 0 | return 0; | 2335 | 0 | } | 2336 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2337 | 0 | LOG_WARNING("failed to get kv"); | 2338 | 0 | return -1; | 2339 | 0 | } | 2340 | 2 | part_pb.Clear(); | 2341 | 2 | if (!part_pb.ParseFromString(val)) { | 2342 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2343 | 0 | return -1; | 2344 | 0 | } | 2345 | | // Partitions with PREPARED state MUST have no data | 2346 | 2 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { | 2347 | 1 | part_pb.set_state(RecyclePartitionPB::RECYCLING); | 2348 | 1 | txn->put(k, part_pb.SerializeAsString()); | 2349 | 1 | err = txn->commit(); | 2350 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2351 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 2352 | 0 | return -1; | 2353 | 0 | } | 2354 | 1 | } | 2355 | | | 2356 | 2 | int ret = 0; | 2357 | 2 | for (int64_t index_id : part_pb.index_id()) { | 2358 | 2 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { | 2359 | 1 | LOG_WARNING("failed to recycle tablets under partition") | 2360 | 1 | .tag("table_id", part_pb.table_id()) | 2361 | 1 | .tag("instance_id", instance_id_) | 2362 | 1 | .tag("index_id", index_id) | 2363 | 1 | .tag("partition_id", partition_id); | 2364 | 1 | ret = -1; | 2365 | 1 | } | 2366 | 2 | } | 2367 | 2 | if (ret == 0 && part_pb.has_db_id()) { | 2368 | | // Recycle the versioned keys | 2369 | 1 | std::unique_ptr<Transaction> txn; | 2370 | 1 | err = txn_kv_->create_txn(&txn); | 2371 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2372 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2373 | 0 | return -1; | 2374 | 0 | } | 2375 | 1 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); | 2376 | 1 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); | 2377 | 1 | std::string inverted_index_key = versioned::partition_inverted_index_key( | 2378 | 1 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); | 2379 | 1 | std::string partition_version_key = | 2380 | 1 | versioned::partition_version_key({instance_id_, partition_id}); | 2381 | 1 | versioned_remove_all(txn.get(), meta_key); | 2382 | 1 | txn->remove(index_key); | 2383 | 1 | txn->remove(inverted_index_key); | 2384 | 1 | versioned_remove_all(txn.get(), partition_version_key); | 2385 | 1 | err = txn->commit(); | 2386 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2387 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2388 | 0 | return -1; | 2389 | 0 | } | 2390 | 1 | } | 2391 | | | 2392 | 2 | if (ret == 0) { | 2393 | 1 | ++num_recycled; | 2394 | 1 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2395 | 1 | partition_keys.push_back(k); | 2396 | 1 | if (part_pb.db_id() > 0) { | 2397 | 1 | partition_version_keys.push_back(partition_version_key( | 2398 | 1 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); | 2399 | 1 | } | 2400 | 1 | metrics_context.total_recycled_num = num_recycled; | 2401 | 1 | metrics_context.report(); | 2402 | 1 | } | 2403 | 2 | return ret; | 2404 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2299 | 7 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2300 | 7 | ++num_scanned; | 2301 | 7 | RecyclePartitionPB part_pb; | 2302 | 7 | if (!part_pb.ParseFromArray(v.data(), v.size())) { | 2303 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2304 | 0 | return -1; | 2305 | 0 | } | 2306 | 7 | int64_t current_time = ::time(nullptr); | 2307 | 7 | if (current_time < calculate_partition_expired_time(instance_id_, part_pb, | 2308 | 7 | &earlest_ts)) { // not expired | 2309 | 0 | return 0; | 2310 | 0 | } | 2311 | 7 | ++num_expired; | 2312 | | // decode partition_id | 2313 | 7 | auto k1 = k; | 2314 | 7 | k1.remove_prefix(1); | 2315 | 7 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2316 | 7 | decode_key(&k1, &out); | 2317 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB | 2318 | 7 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); | 2319 | 7 | LOG(INFO) << "begin to recycle partition, instance_id=" << instance_id_ | 2320 | 7 | << " table_id=" << part_pb.table_id() << " partition_id=" << partition_id | 2321 | 7 | << " state=" << RecyclePartitionPB::State_Name(part_pb.state()); | 2322 | | // Change state to RECYCLING | 2323 | 7 | std::unique_ptr<Transaction> txn; | 2324 | 7 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2325 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2326 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2327 | 0 | return -1; | 2328 | 0 | } | 2329 | 7 | std::string val; | 2330 | 7 | err = txn->get(k, &val); | 2331 | 7 | if (err == | 2332 | 7 | TxnErrorCode::TXN_KEY_NOT_FOUND) { // UNKNOWN, maybe recycled or committed, skip it | 2333 | 0 | LOG_INFO("partition {} has been recycled or committed", partition_id); | 2334 | 0 | return 0; | 2335 | 0 | } | 2336 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2337 | 0 | LOG_WARNING("failed to get kv"); | 2338 | 0 | return -1; | 2339 | 0 | } | 2340 | 7 | part_pb.Clear(); | 2341 | 7 | if (!part_pb.ParseFromString(val)) { | 2342 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 2343 | 0 | return -1; | 2344 | 0 | } | 2345 | | // Partitions with PREPARED state MUST have no data | 2346 | 7 | if (part_pb.state() != RecyclePartitionPB::RECYCLING) { | 2347 | 7 | part_pb.set_state(RecyclePartitionPB::RECYCLING); | 2348 | 7 | txn->put(k, part_pb.SerializeAsString()); | 2349 | 7 | err = txn->commit(); | 2350 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2351 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 2352 | 0 | return -1; | 2353 | 0 | } | 2354 | 7 | } | 2355 | | | 2356 | 7 | int ret = 0; | 2357 | 31 | for (int64_t index_id : part_pb.index_id()) { | 2358 | 31 | if (recycle_tablets(part_pb.table_id(), index_id, metrics_context, partition_id) != 0) { | 2359 | 0 | LOG_WARNING("failed to recycle tablets under partition") | 2360 | 0 | .tag("table_id", part_pb.table_id()) | 2361 | 0 | .tag("instance_id", instance_id_) | 2362 | 0 | .tag("index_id", index_id) | 2363 | 0 | .tag("partition_id", partition_id); | 2364 | 0 | ret = -1; | 2365 | 0 | } | 2366 | 31 | } | 2367 | 7 | if (ret == 0 && part_pb.has_db_id()) { | 2368 | | // Recycle the versioned keys | 2369 | 7 | std::unique_ptr<Transaction> txn; | 2370 | 7 | err = txn_kv_->create_txn(&txn); | 2371 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2372 | 0 | LOG_WARNING("failed to create txn").tag("err", err); | 2373 | 0 | return -1; | 2374 | 0 | } | 2375 | 7 | std::string meta_key = versioned::meta_partition_key({instance_id_, partition_id}); | 2376 | 7 | std::string index_key = versioned::partition_index_key({instance_id_, partition_id}); | 2377 | 7 | std::string inverted_index_key = versioned::partition_inverted_index_key( | 2378 | 7 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id}); | 2379 | 7 | std::string partition_version_key = | 2380 | 7 | versioned::partition_version_key({instance_id_, partition_id}); | 2381 | 7 | versioned_remove_all(txn.get(), meta_key); | 2382 | 7 | txn->remove(index_key); | 2383 | 7 | txn->remove(inverted_index_key); | 2384 | 7 | versioned_remove_all(txn.get(), partition_version_key); | 2385 | 7 | err = txn->commit(); | 2386 | 7 | if (err != TxnErrorCode::TXN_OK) { | 2387 | 0 | LOG_WARNING("failed to commit txn").tag("err", err); | 2388 | 0 | return -1; | 2389 | 0 | } | 2390 | 7 | } | 2391 | | | 2392 | 7 | if (ret == 0) { | 2393 | 7 | ++num_recycled; | 2394 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 2395 | 7 | partition_keys.push_back(k); | 2396 | 7 | if (part_pb.db_id() > 0) { | 2397 | 7 | partition_version_keys.push_back(partition_version_key( | 2398 | 7 | {instance_id_, part_pb.db_id(), part_pb.table_id(), partition_id})); | 2399 | 7 | } | 2400 | 7 | metrics_context.total_recycled_num = num_recycled; | 2401 | 7 | metrics_context.report(); | 2402 | 7 | } | 2403 | 7 | return ret; | 2404 | 7 | }; |
|
2405 | | |
2406 | 15 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { |
2407 | 5 | if (partition_keys.empty()) return 0; |
2408 | 4 | DORIS_CLOUD_DEFER { |
2409 | 4 | partition_keys.clear(); |
2410 | 4 | partition_version_keys.clear(); |
2411 | 4 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2408 | 1 | DORIS_CLOUD_DEFER { | 2409 | 1 | partition_keys.clear(); | 2410 | 1 | partition_version_keys.clear(); | 2411 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2408 | 3 | DORIS_CLOUD_DEFER { | 2409 | 3 | partition_keys.clear(); | 2410 | 3 | partition_version_keys.clear(); | 2411 | 3 | }; |
|
2412 | 4 | std::unique_ptr<Transaction> txn; |
2413 | 4 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2414 | 4 | if (err != TxnErrorCode::TXN_OK) { |
2415 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; |
2416 | 0 | return -1; |
2417 | 0 | } |
2418 | 8 | for (auto& k : partition_keys) { |
2419 | 8 | txn->remove(k); |
2420 | 8 | } |
2421 | 8 | for (auto& k : partition_version_keys) { |
2422 | 8 | txn->remove(k); |
2423 | 8 | } |
2424 | 4 | err = txn->commit(); |
2425 | 4 | if (err != TxnErrorCode::TXN_OK) { |
2426 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ |
2427 | 0 | << " err=" << err; |
2428 | 0 | return -1; |
2429 | 0 | } |
2430 | 4 | return 0; |
2431 | 4 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEv Line | Count | Source | 2406 | 2 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { | 2407 | 2 | if (partition_keys.empty()) return 0; | 2408 | 1 | DORIS_CLOUD_DEFER { | 2409 | 1 | partition_keys.clear(); | 2410 | 1 | partition_version_keys.clear(); | 2411 | 1 | }; | 2412 | 1 | std::unique_ptr<Transaction> txn; | 2413 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2414 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2415 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 2416 | 0 | return -1; | 2417 | 0 | } | 2418 | 1 | for (auto& k : partition_keys) { | 2419 | 1 | txn->remove(k); | 2420 | 1 | } | 2421 | 1 | for (auto& k : partition_version_keys) { | 2422 | 1 | txn->remove(k); | 2423 | 1 | } | 2424 | 1 | err = txn->commit(); | 2425 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2426 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ | 2427 | 0 | << " err=" << err; | 2428 | 0 | return -1; | 2429 | 0 | } | 2430 | 1 | return 0; | 2431 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18recycle_partitionsEvENK3$_1clEv Line | Count | Source | 2406 | 3 | auto loop_done = [&partition_keys, &partition_version_keys, this]() -> int { | 2407 | 3 | if (partition_keys.empty()) return 0; | 2408 | 3 | DORIS_CLOUD_DEFER { | 2409 | 3 | partition_keys.clear(); | 2410 | 3 | partition_version_keys.clear(); | 2411 | 3 | }; | 2412 | 3 | std::unique_ptr<Transaction> txn; | 2413 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2414 | 3 | if (err != TxnErrorCode::TXN_OK) { | 2415 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 2416 | 0 | return -1; | 2417 | 0 | } | 2418 | 7 | for (auto& k : partition_keys) { | 2419 | 7 | txn->remove(k); | 2420 | 7 | } | 2421 | 7 | for (auto& k : partition_version_keys) { | 2422 | 7 | txn->remove(k); | 2423 | 7 | } | 2424 | 3 | err = txn->commit(); | 2425 | 3 | if (err != TxnErrorCode::TXN_OK) { | 2426 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_ | 2427 | 0 | << " err=" << err; | 2428 | 0 | return -1; | 2429 | 0 | } | 2430 | 3 | return 0; | 2431 | 3 | }; |
|
2432 | | |
2433 | 15 | if (config::enable_recycler_stats_metrics) { |
2434 | 0 | scan_and_statistics_partitions(); |
2435 | 0 | } |
2436 | | // recycle_func and loop_done for scan and recycle |
2437 | 15 | return scan_and_recycle(part_key0, part_key1, std::move(recycle_func), std::move(loop_done)); |
2438 | 15 | } |
2439 | | |
2440 | 14 | int InstanceRecycler::recycle_versions() { |
2441 | 14 | if (should_recycle_versioned_keys()) { |
2442 | 2 | return recycle_orphan_partitions(); |
2443 | 2 | } |
2444 | | |
2445 | 12 | int64_t num_scanned = 0; |
2446 | 12 | int64_t num_recycled = 0; |
2447 | 12 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_versions"); |
2448 | | |
2449 | 12 | LOG_WARNING("begin to recycle table and partition versions").tag("instance_id", instance_id_); |
2450 | | |
2451 | 12 | auto start_time = steady_clock::now(); |
2452 | | |
2453 | 12 | DORIS_CLOUD_DEFER { |
2454 | 12 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2455 | 12 | metrics_context.finish_report(); |
2456 | 12 | LOG_WARNING("recycle table and partition versions finished, cost={}s", cost) |
2457 | 12 | .tag("instance_id", instance_id_) |
2458 | 12 | .tag("num_scanned", num_scanned) |
2459 | 12 | .tag("num_recycled", num_recycled); |
2460 | 12 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_0clEv Line | Count | Source | 2453 | 12 | DORIS_CLOUD_DEFER { | 2454 | 12 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2455 | 12 | metrics_context.finish_report(); | 2456 | 12 | LOG_WARNING("recycle table and partition versions finished, cost={}s", cost) | 2457 | 12 | .tag("instance_id", instance_id_) | 2458 | 12 | .tag("num_scanned", num_scanned) | 2459 | 12 | .tag("num_recycled", num_recycled); | 2460 | 12 | }; |
|
2461 | | |
2462 | 12 | auto version_key_begin = partition_version_key({instance_id_, 0, 0, 0}); |
2463 | 12 | auto version_key_end = partition_version_key({instance_id_, INT64_MAX, 0, 0}); |
2464 | 12 | int64_t last_scanned_table_id = 0; |
2465 | 12 | bool is_recycled = false; // Is last scanned kv recycled |
2466 | 12 | auto recycle_func = [&num_scanned, &num_recycled, &last_scanned_table_id, &is_recycled, |
2467 | 12 | &metrics_context, this](std::string_view k, std::string_view) { |
2468 | 2 | ++num_scanned; |
2469 | 2 | auto k1 = k; |
2470 | 2 | k1.remove_prefix(1); |
2471 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} |
2472 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
2473 | 2 | decode_key(&k1, &out); |
2474 | 2 | DCHECK_EQ(out.size(), 6) << k; |
2475 | 2 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); |
2476 | 2 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table |
2477 | 0 | num_recycled += is_recycled; // Version kv of this table has been recycled |
2478 | 0 | return 0; |
2479 | 0 | } |
2480 | 2 | last_scanned_table_id = table_id; |
2481 | 2 | is_recycled = false; |
2482 | 2 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); |
2483 | 2 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); |
2484 | 2 | std::unique_ptr<Transaction> txn; |
2485 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2486 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2487 | 0 | return -1; |
2488 | 0 | } |
2489 | 2 | std::unique_ptr<RangeGetIterator> iter; |
2490 | 2 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); |
2491 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2492 | 0 | return -1; |
2493 | 0 | } |
2494 | 2 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions |
2495 | 1 | return 0; |
2496 | 1 | } |
2497 | 1 | auto db_id = std::get<int64_t>(std::get<0>(out[3])); |
2498 | | // 1. Remove all partition version kvs of this table |
2499 | 1 | auto partition_version_key_begin = |
2500 | 1 | partition_version_key({instance_id_, db_id, table_id, 0}); |
2501 | 1 | auto partition_version_key_end = |
2502 | 1 | partition_version_key({instance_id_, db_id, table_id, INT64_MAX}); |
2503 | 1 | txn->remove(partition_version_key_begin, partition_version_key_end); |
2504 | 1 | LOG(WARNING) << "remove partition version kv, begin=" << hex(partition_version_key_begin) |
2505 | 1 | << " end=" << hex(partition_version_key_end) << " db_id=" << db_id |
2506 | 1 | << " table_id=" << table_id; |
2507 | | // 2. Remove the table version kv of this table |
2508 | 1 | auto tbl_version_key = table_version_key({instance_id_, db_id, table_id}); |
2509 | 1 | txn->remove(tbl_version_key); |
2510 | 1 | LOG(WARNING) << "remove table version kv " << hex(tbl_version_key); |
2511 | | // 3. Remove mow delete bitmap update lock and tablet job lock |
2512 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); |
2513 | 1 | txn->remove(lock_key); |
2514 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); |
2515 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); |
2516 | 1 | std::string tablet_job_key_end = mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); |
2517 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); |
2518 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) |
2519 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id |
2520 | 1 | << " table_id=" << table_id; |
2521 | 1 | err = txn->commit(); |
2522 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2523 | 0 | return -1; |
2524 | 0 | } |
2525 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
2526 | 1 | metrics_context.report(); |
2527 | 1 | is_recycled = true; |
2528 | 1 | return 0; |
2529 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16recycle_versionsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 2467 | 2 | &metrics_context, this](std::string_view k, std::string_view) { | 2468 | 2 | ++num_scanned; | 2469 | 2 | auto k1 = k; | 2470 | 2 | k1.remove_prefix(1); | 2471 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} | 2472 | 2 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 2473 | 2 | decode_key(&k1, &out); | 2474 | 2 | DCHECK_EQ(out.size(), 6) << k; | 2475 | 2 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); | 2476 | 2 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table | 2477 | 0 | num_recycled += is_recycled; // Version kv of this table has been recycled | 2478 | 0 | return 0; | 2479 | 0 | } | 2480 | 2 | last_scanned_table_id = table_id; | 2481 | 2 | is_recycled = false; | 2482 | 2 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); | 2483 | 2 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); | 2484 | 2 | std::unique_ptr<Transaction> txn; | 2485 | 2 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2486 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2487 | 0 | return -1; | 2488 | 0 | } | 2489 | 2 | std::unique_ptr<RangeGetIterator> iter; | 2490 | 2 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); | 2491 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2492 | 0 | return -1; | 2493 | 0 | } | 2494 | 2 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions | 2495 | 1 | return 0; | 2496 | 1 | } | 2497 | 1 | auto db_id = std::get<int64_t>(std::get<0>(out[3])); | 2498 | | // 1. Remove all partition version kvs of this table | 2499 | 1 | auto partition_version_key_begin = | 2500 | 1 | partition_version_key({instance_id_, db_id, table_id, 0}); | 2501 | 1 | auto partition_version_key_end = | 2502 | 1 | partition_version_key({instance_id_, db_id, table_id, INT64_MAX}); | 2503 | 1 | txn->remove(partition_version_key_begin, partition_version_key_end); | 2504 | 1 | LOG(WARNING) << "remove partition version kv, begin=" << hex(partition_version_key_begin) | 2505 | 1 | << " end=" << hex(partition_version_key_end) << " db_id=" << db_id | 2506 | 1 | << " table_id=" << table_id; | 2507 | | // 2. Remove the table version kv of this table | 2508 | 1 | auto tbl_version_key = table_version_key({instance_id_, db_id, table_id}); | 2509 | 1 | txn->remove(tbl_version_key); | 2510 | 1 | LOG(WARNING) << "remove table version kv " << hex(tbl_version_key); | 2511 | | // 3. Remove mow delete bitmap update lock and tablet job lock | 2512 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); | 2513 | 1 | txn->remove(lock_key); | 2514 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); | 2515 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); | 2516 | 1 | std::string tablet_job_key_end = mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); | 2517 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); | 2518 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) | 2519 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id | 2520 | 1 | << " table_id=" << table_id; | 2521 | 1 | err = txn->commit(); | 2522 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2523 | 0 | return -1; | 2524 | 0 | } | 2525 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2526 | 1 | metrics_context.report(); | 2527 | 1 | is_recycled = true; | 2528 | 1 | return 0; | 2529 | 1 | }; |
|
2530 | | |
2531 | 12 | if (config::enable_recycler_stats_metrics) { |
2532 | 0 | scan_and_statistics_versions(); |
2533 | 0 | } |
2534 | | // recycle_func and loop_done for scan and recycle |
2535 | 12 | return scan_and_recycle(version_key_begin, version_key_end, std::move(recycle_func)); |
2536 | 14 | } |
2537 | | |
2538 | 3 | int InstanceRecycler::recycle_orphan_partitions() { |
2539 | 3 | int64_t num_scanned = 0; |
2540 | 3 | int64_t num_recycled = 0; |
2541 | 3 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_orphan_partitions"); |
2542 | | |
2543 | 3 | LOG_WARNING("begin to recycle orphan table and partition versions") |
2544 | 3 | .tag("instance_id", instance_id_); |
2545 | | |
2546 | 3 | auto start_time = steady_clock::now(); |
2547 | | |
2548 | 3 | DORIS_CLOUD_DEFER { |
2549 | 3 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2550 | 3 | metrics_context.finish_report(); |
2551 | 3 | LOG_WARNING("recycle orphan table and partition versions finished, cost={}s", cost) |
2552 | 3 | .tag("instance_id", instance_id_) |
2553 | 3 | .tag("num_scanned", num_scanned) |
2554 | 3 | .tag("num_recycled", num_recycled); |
2555 | 3 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_orphan_partitionsEvENK3$_0clEv Line | Count | Source | 2548 | 3 | DORIS_CLOUD_DEFER { | 2549 | 3 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2550 | 3 | metrics_context.finish_report(); | 2551 | 3 | LOG_WARNING("recycle orphan table and partition versions finished, cost={}s", cost) | 2552 | 3 | .tag("instance_id", instance_id_) | 2553 | 3 | .tag("num_scanned", num_scanned) | 2554 | 3 | .tag("num_recycled", num_recycled); | 2555 | 3 | }; |
|
2556 | | |
2557 | 3 | bool is_empty_table = false; // whether the table has no indexes |
2558 | 3 | bool is_table_kvs_recycled = false; // whether the table related kvs have been recycled |
2559 | 3 | int64_t current_table_id = 0; // current scanning table id |
2560 | 3 | auto recycle_func = [&num_scanned, &num_recycled, &metrics_context, &is_empty_table, |
2561 | 3 | ¤t_table_id, &is_table_kvs_recycled, |
2562 | 3 | this](std::string_view k, std::string_view) { |
2563 | 2 | ++num_scanned; |
2564 | | |
2565 | 2 | std::string_view k1(k); |
2566 | 2 | int64_t db_id, table_id, partition_id; |
2567 | 2 | if (!versioned::decode_partition_inverted_index_key(&k1, &db_id, &table_id, |
2568 | 2 | &partition_id)) { |
2569 | 0 | LOG(WARNING) << "malformed partition inverted index key " << hex(k); |
2570 | 0 | return -1; |
2571 | 2 | } else if (table_id != current_table_id) { |
2572 | 2 | current_table_id = table_id; |
2573 | 2 | is_table_kvs_recycled = false; |
2574 | 2 | MetaReader meta_reader(instance_id_, txn_kv_.get()); |
2575 | 2 | TxnErrorCode err = meta_reader.has_no_indexes(db_id, table_id, &is_empty_table); |
2576 | 2 | if (err != TxnErrorCode::TXN_OK) { |
2577 | 0 | LOG(WARNING) << "failed to check whether table has no indexes, db_id=" << db_id |
2578 | 0 | << " table_id=" << table_id << " err=" << err; |
2579 | 0 | return -1; |
2580 | 0 | } |
2581 | 2 | } |
2582 | | |
2583 | 2 | if (!is_empty_table) { |
2584 | | // table is not empty, skip recycle |
2585 | 1 | return 0; |
2586 | 1 | } |
2587 | | |
2588 | 1 | std::unique_ptr<Transaction> txn; |
2589 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
2590 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2591 | 0 | return -1; |
2592 | 0 | } |
2593 | | |
2594 | | // 1. Remove all partition related kvs |
2595 | 1 | std::string partition_meta_key = |
2596 | 1 | versioned::meta_partition_key({instance_id_, partition_id}); |
2597 | 1 | std::string partition_index_key = |
2598 | 1 | versioned::partition_index_key({instance_id_, partition_id}); |
2599 | 1 | std::string partition_inverted_key = versioned::partition_inverted_index_key( |
2600 | 1 | {instance_id_, db_id, table_id, partition_id}); |
2601 | 1 | std::string partition_version_key = |
2602 | 1 | versioned::partition_version_key({instance_id_, partition_id}); |
2603 | 1 | txn->remove(partition_index_key); |
2604 | 1 | txn->remove(partition_inverted_key); |
2605 | 1 | versioned_remove_all(txn.get(), partition_meta_key); |
2606 | 1 | versioned_remove_all(txn.get(), partition_version_key); |
2607 | 1 | LOG(WARNING) << "remove partition related kvs, partition_id=" << partition_id |
2608 | 1 | << " table_id=" << table_id << " db_id=" << db_id |
2609 | 1 | << " partition_meta_key=" << hex(partition_meta_key) |
2610 | 1 | << " partition_version_key=" << hex(partition_version_key); |
2611 | | |
2612 | 1 | if (!is_table_kvs_recycled) { |
2613 | 1 | is_table_kvs_recycled = true; |
2614 | | |
2615 | | // 2. Remove the table version kv of this table |
2616 | 1 | std::string table_version_key = versioned::table_version_key({instance_id_, table_id}); |
2617 | 1 | versioned_remove_all(txn.get(), table_version_key); |
2618 | 1 | LOG(WARNING) << "remove table version kv " << hex(table_version_key); |
2619 | | // 3. Remove mow delete bitmap update lock and tablet job lock |
2620 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); |
2621 | 1 | txn->remove(lock_key); |
2622 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); |
2623 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); |
2624 | 1 | std::string tablet_job_key_end = |
2625 | 1 | mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); |
2626 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); |
2627 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) |
2628 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id |
2629 | 1 | << " table_id=" << table_id; |
2630 | 1 | } |
2631 | | |
2632 | 1 | err = txn->commit(); |
2633 | 1 | if (err != TxnErrorCode::TXN_OK) { |
2634 | 0 | return -1; |
2635 | 0 | } |
2636 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
2637 | 1 | metrics_context.report(); |
2638 | 1 | return 0; |
2639 | 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 | 2562 | 2 | this](std::string_view k, std::string_view) { | 2563 | 2 | ++num_scanned; | 2564 | | | 2565 | 2 | std::string_view k1(k); | 2566 | 2 | int64_t db_id, table_id, partition_id; | 2567 | 2 | if (!versioned::decode_partition_inverted_index_key(&k1, &db_id, &table_id, | 2568 | 2 | &partition_id)) { | 2569 | 0 | LOG(WARNING) << "malformed partition inverted index key " << hex(k); | 2570 | 0 | return -1; | 2571 | 2 | } else if (table_id != current_table_id) { | 2572 | 2 | current_table_id = table_id; | 2573 | 2 | is_table_kvs_recycled = false; | 2574 | 2 | MetaReader meta_reader(instance_id_, txn_kv_.get()); | 2575 | 2 | TxnErrorCode err = meta_reader.has_no_indexes(db_id, table_id, &is_empty_table); | 2576 | 2 | if (err != TxnErrorCode::TXN_OK) { | 2577 | 0 | LOG(WARNING) << "failed to check whether table has no indexes, db_id=" << db_id | 2578 | 0 | << " table_id=" << table_id << " err=" << err; | 2579 | 0 | return -1; | 2580 | 0 | } | 2581 | 2 | } | 2582 | | | 2583 | 2 | if (!is_empty_table) { | 2584 | | // table is not empty, skip recycle | 2585 | 1 | return 0; | 2586 | 1 | } | 2587 | | | 2588 | 1 | std::unique_ptr<Transaction> txn; | 2589 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 2590 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2591 | 0 | return -1; | 2592 | 0 | } | 2593 | | | 2594 | | // 1. Remove all partition related kvs | 2595 | 1 | std::string partition_meta_key = | 2596 | 1 | versioned::meta_partition_key({instance_id_, partition_id}); | 2597 | 1 | std::string partition_index_key = | 2598 | 1 | versioned::partition_index_key({instance_id_, partition_id}); | 2599 | 1 | std::string partition_inverted_key = versioned::partition_inverted_index_key( | 2600 | 1 | {instance_id_, db_id, table_id, partition_id}); | 2601 | 1 | std::string partition_version_key = | 2602 | 1 | versioned::partition_version_key({instance_id_, partition_id}); | 2603 | 1 | txn->remove(partition_index_key); | 2604 | 1 | txn->remove(partition_inverted_key); | 2605 | 1 | versioned_remove_all(txn.get(), partition_meta_key); | 2606 | 1 | versioned_remove_all(txn.get(), partition_version_key); | 2607 | 1 | LOG(WARNING) << "remove partition related kvs, partition_id=" << partition_id | 2608 | 1 | << " table_id=" << table_id << " db_id=" << db_id | 2609 | 1 | << " partition_meta_key=" << hex(partition_meta_key) | 2610 | 1 | << " partition_version_key=" << hex(partition_version_key); | 2611 | | | 2612 | 1 | if (!is_table_kvs_recycled) { | 2613 | 1 | is_table_kvs_recycled = true; | 2614 | | | 2615 | | // 2. Remove the table version kv of this table | 2616 | 1 | std::string table_version_key = versioned::table_version_key({instance_id_, table_id}); | 2617 | 1 | versioned_remove_all(txn.get(), table_version_key); | 2618 | 1 | LOG(WARNING) << "remove table version kv " << hex(table_version_key); | 2619 | | // 3. Remove mow delete bitmap update lock and tablet job lock | 2620 | 1 | std::string lock_key = meta_delete_bitmap_update_lock_key({instance_id_, table_id, -1}); | 2621 | 1 | txn->remove(lock_key); | 2622 | 1 | LOG(WARNING) << "remove delete bitmap update lock kv " << hex(lock_key); | 2623 | 1 | std::string tablet_job_key_begin = mow_tablet_job_key({instance_id_, table_id, 0}); | 2624 | 1 | std::string tablet_job_key_end = | 2625 | 1 | mow_tablet_job_key({instance_id_, table_id, INT64_MAX}); | 2626 | 1 | txn->remove(tablet_job_key_begin, tablet_job_key_end); | 2627 | 1 | LOG(WARNING) << "remove mow tablet job kv, begin=" << hex(tablet_job_key_begin) | 2628 | 1 | << " end=" << hex(tablet_job_key_end) << " db_id=" << db_id | 2629 | 1 | << " table_id=" << table_id; | 2630 | 1 | } | 2631 | | | 2632 | 1 | err = txn->commit(); | 2633 | 1 | if (err != TxnErrorCode::TXN_OK) { | 2634 | 0 | return -1; | 2635 | 0 | } | 2636 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 2637 | 1 | metrics_context.report(); | 2638 | 1 | return 0; | 2639 | 1 | }; |
|
2640 | | |
2641 | | // recycle_func and loop_done for scan and recycle |
2642 | 3 | return scan_and_recycle( |
2643 | 3 | versioned::partition_inverted_index_key({instance_id_, 0, 0, 0}), |
2644 | 3 | versioned::partition_inverted_index_key({instance_id_, INT64_MAX, 0, 0}), |
2645 | 3 | std::move(recycle_func)); |
2646 | 3 | } |
2647 | | |
2648 | | int InstanceRecycler::recycle_tablets(int64_t table_id, int64_t index_id, |
2649 | | RecyclerMetricsContext& metrics_context, |
2650 | 49 | int64_t partition_id) { |
2651 | 49 | bool is_multi_version = |
2652 | 49 | instance_info_.has_multi_version_status() && |
2653 | 49 | instance_info_.multi_version_status() != MultiVersionStatus::MULTI_VERSION_DISABLED; |
2654 | 49 | int64_t num_scanned = 0; |
2655 | 49 | std::atomic_long num_recycled = 0; |
2656 | | |
2657 | 49 | std::string tablet_key_begin, tablet_key_end; |
2658 | 49 | std::string stats_key_begin, stats_key_end; |
2659 | 49 | std::string job_key_begin, job_key_end; |
2660 | | |
2661 | 49 | std::string tablet_belongs; |
2662 | 49 | if (partition_id > 0) { |
2663 | | // recycle tablets in a partition belonging to the index |
2664 | 33 | meta_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &tablet_key_begin); |
2665 | 33 | meta_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &tablet_key_end); |
2666 | 33 | stats_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &stats_key_begin); |
2667 | 33 | stats_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &stats_key_end); |
2668 | 33 | job_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &job_key_begin); |
2669 | 33 | job_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &job_key_end); |
2670 | 33 | tablet_belongs = "partition"; |
2671 | 33 | } else { |
2672 | | // recycle tablets in the index |
2673 | 16 | meta_tablet_key({instance_id_, table_id, index_id, 0, 0}, &tablet_key_begin); |
2674 | 16 | meta_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &tablet_key_end); |
2675 | 16 | stats_tablet_key({instance_id_, table_id, index_id, 0, 0}, &stats_key_begin); |
2676 | 16 | stats_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &stats_key_end); |
2677 | 16 | job_tablet_key({instance_id_, table_id, index_id, 0, 0}, &job_key_begin); |
2678 | 16 | job_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &job_key_end); |
2679 | 16 | tablet_belongs = "index"; |
2680 | 16 | } |
2681 | | |
2682 | 49 | LOG_INFO("begin to recycle tablets of the " + tablet_belongs) |
2683 | 49 | .tag("table_id", table_id) |
2684 | 49 | .tag("index_id", index_id) |
2685 | 49 | .tag("partition_id", partition_id); |
2686 | | |
2687 | 49 | auto start_time = steady_clock::now(); |
2688 | | |
2689 | 49 | DORIS_CLOUD_DEFER { |
2690 | 49 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
2691 | 49 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) |
2692 | 49 | .tag("instance_id", instance_id_) |
2693 | 49 | .tag("table_id", table_id) |
2694 | 49 | .tag("index_id", index_id) |
2695 | 49 | .tag("partition_id", partition_id) |
2696 | 49 | .tag("num_scanned", num_scanned) |
2697 | 49 | .tag("num_recycled", num_recycled); |
2698 | 49 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_0clEv Line | Count | Source | 2689 | 4 | DORIS_CLOUD_DEFER { | 2690 | 4 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2691 | 4 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) | 2692 | 4 | .tag("instance_id", instance_id_) | 2693 | 4 | .tag("table_id", table_id) | 2694 | 4 | .tag("index_id", index_id) | 2695 | 4 | .tag("partition_id", partition_id) | 2696 | 4 | .tag("num_scanned", num_scanned) | 2697 | 4 | .tag("num_recycled", num_recycled); | 2698 | 4 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_0clEv Line | Count | Source | 2689 | 45 | DORIS_CLOUD_DEFER { | 2690 | 45 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 2691 | 45 | LOG_INFO("recycle tablets of " + tablet_belongs + " finished, cost={}s", cost) | 2692 | 45 | .tag("instance_id", instance_id_) | 2693 | 45 | .tag("table_id", table_id) | 2694 | 45 | .tag("index_id", index_id) | 2695 | 45 | .tag("partition_id", partition_id) | 2696 | 45 | .tag("num_scanned", num_scanned) | 2697 | 45 | .tag("num_recycled", num_recycled); | 2698 | 45 | }; |
|
2699 | | |
2700 | | // The first string_view represents the tablet key which has been recycled |
2701 | | // The second bool represents whether the following fdb's tablet key deletion could be done using range move or not |
2702 | 49 | using TabletKeyPair = std::pair<std::string_view, bool>; |
2703 | 49 | SyncExecutor<TabletKeyPair> sync_executor( |
2704 | 49 | _thread_pool_group.recycle_tablet_pool, |
2705 | 49 | fmt::format("recycle tablets, tablet id {}, index id {}, partition id {}", table_id, |
2706 | 49 | index_id, partition_id), |
2707 | 4.23k | [](const TabletKeyPair& k) { return k.first.empty(); });recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_2clERKSt4pairISt17basic_string_viewIcSt11char_traitsIcEEbE Line | Count | Source | 2707 | 4.00k | [](const TabletKeyPair& k) { return k.first.empty(); }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_2clERKSt4pairISt17basic_string_viewIcSt11char_traitsIcEEbE Line | Count | Source | 2707 | 237 | [](const TabletKeyPair& k) { return k.first.empty(); }); |
|
2708 | | |
2709 | | // Elements in `tablet_keys` has the same lifetime as `it` in `scan_and_recycle` |
2710 | 49 | std::vector<std::string> tablet_idx_keys; |
2711 | 49 | std::vector<std::string> restore_job_keys; |
2712 | 49 | std::vector<std::string> init_rs_keys; |
2713 | 49 | std::vector<std::string> tablet_compact_stats_keys; |
2714 | 49 | std::vector<std::string> tablet_load_stats_keys; |
2715 | 49 | std::vector<std::string> versioned_meta_tablet_keys; |
2716 | 8.24k | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
2717 | 8.24k | bool use_range_remove = true; |
2718 | 8.24k | ++num_scanned; |
2719 | 8.24k | doris::TabletMetaCloudPB tablet_meta_pb; |
2720 | 8.24k | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { |
2721 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); |
2722 | 0 | use_range_remove = false; |
2723 | 0 | return -1; |
2724 | 0 | } |
2725 | 8.24k | int64_t tablet_id = tablet_meta_pb.tablet_id(); |
2726 | | |
2727 | 8.24k | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { |
2728 | 4.00k | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); |
2729 | 4.00k | return -1; |
2730 | 4.00k | } |
2731 | | |
2732 | 4.24k | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); |
2733 | 4.24k | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); |
2734 | 4.24k | if (is_multi_version) { |
2735 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. |
2736 | 6 | tablet_compact_stats_keys.push_back( |
2737 | 6 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); |
2738 | 6 | tablet_load_stats_keys.push_back( |
2739 | 6 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); |
2740 | 6 | versioned_meta_tablet_keys.push_back( |
2741 | 6 | versioned::meta_tablet_key({instance_id_, tablet_id})); |
2742 | 6 | } |
2743 | 4.24k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); |
2744 | 4.23k | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, |
2745 | 4.23k | &metrics_context, k]() mutable -> TabletKeyPair { |
2746 | 4.23k | if (recycle_tablet(tid, metrics_context) != 0) { |
2747 | 1 | LOG_WARNING("failed to recycle tablet") |
2748 | 1 | .tag("instance_id", instance_id_) |
2749 | 1 | .tag("tablet_id", tid); |
2750 | 1 | range_move = false; |
2751 | 1 | return {std::string_view(), range_move}; |
2752 | 1 | } |
2753 | 4.23k | ++num_recycled; |
2754 | 4.23k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); |
2755 | 4.23k | return {k, range_move}; |
2756 | 4.23k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ENUlvE_clEv Line | Count | Source | 2745 | 4.00k | &metrics_context, k]() mutable -> TabletKeyPair { | 2746 | 4.00k | if (recycle_tablet(tid, metrics_context) != 0) { | 2747 | 0 | LOG_WARNING("failed to recycle tablet") | 2748 | 0 | .tag("instance_id", instance_id_) | 2749 | 0 | .tag("tablet_id", tid); | 2750 | 0 | range_move = false; | 2751 | 0 | return {std::string_view(), range_move}; | 2752 | 0 | } | 2753 | 4.00k | ++num_recycled; | 2754 | 4.00k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2755 | 4.00k | return {k, range_move}; | 2756 | 4.00k | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ENUlvE_clEv Line | Count | Source | 2745 | 237 | &metrics_context, k]() mutable -> TabletKeyPair { | 2746 | 237 | if (recycle_tablet(tid, metrics_context) != 0) { | 2747 | 1 | LOG_WARNING("failed to recycle tablet") | 2748 | 1 | .tag("instance_id", instance_id_) | 2749 | 1 | .tag("tablet_id", tid); | 2750 | 1 | range_move = false; | 2751 | 1 | return {std::string_view(), range_move}; | 2752 | 1 | } | 2753 | 236 | ++num_recycled; | 2754 | 236 | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2755 | 236 | return {k, range_move}; | 2756 | 237 | }); |
|
2757 | 4.23k | return 0; |
2758 | 4.24k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ Line | Count | Source | 2716 | 8.00k | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2717 | 8.00k | bool use_range_remove = true; | 2718 | 8.00k | ++num_scanned; | 2719 | 8.00k | doris::TabletMetaCloudPB tablet_meta_pb; | 2720 | 8.00k | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { | 2721 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); | 2722 | 0 | use_range_remove = false; | 2723 | 0 | return -1; | 2724 | 0 | } | 2725 | 8.00k | int64_t tablet_id = tablet_meta_pb.tablet_id(); | 2726 | | | 2727 | 8.00k | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { | 2728 | 4.00k | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); | 2729 | 4.00k | return -1; | 2730 | 4.00k | } | 2731 | | | 2732 | 4.00k | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); | 2733 | 4.00k | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); | 2734 | 4.00k | if (is_multi_version) { | 2735 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. | 2736 | 0 | tablet_compact_stats_keys.push_back( | 2737 | 0 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); | 2738 | 0 | tablet_load_stats_keys.push_back( | 2739 | 0 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); | 2740 | 0 | versioned_meta_tablet_keys.push_back( | 2741 | 0 | versioned::meta_tablet_key({instance_id_, tablet_id})); | 2742 | 0 | } | 2743 | 4.00k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); | 2744 | 4.00k | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, | 2745 | 4.00k | &metrics_context, k]() mutable -> TabletKeyPair { | 2746 | 4.00k | if (recycle_tablet(tid, metrics_context) != 0) { | 2747 | 4.00k | LOG_WARNING("failed to recycle tablet") | 2748 | 4.00k | .tag("instance_id", instance_id_) | 2749 | 4.00k | .tag("tablet_id", tid); | 2750 | 4.00k | range_move = false; | 2751 | 4.00k | return {std::string_view(), range_move}; | 2752 | 4.00k | } | 2753 | 4.00k | ++num_recycled; | 2754 | 4.00k | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2755 | 4.00k | return {k, range_move}; | 2756 | 4.00k | }); | 2757 | 4.00k | return 0; | 2758 | 4.00k | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES8_ Line | Count | Source | 2716 | 240 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 2717 | 240 | bool use_range_remove = true; | 2718 | 240 | ++num_scanned; | 2719 | 240 | doris::TabletMetaCloudPB tablet_meta_pb; | 2720 | 240 | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { | 2721 | 0 | LOG_WARNING("malformed tablet meta").tag("key", hex(k)); | 2722 | 0 | use_range_remove = false; | 2723 | 0 | return -1; | 2724 | 0 | } | 2725 | 240 | int64_t tablet_id = tablet_meta_pb.tablet_id(); | 2726 | | | 2727 | 240 | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { | 2728 | 0 | LOG(WARNING) << "lazy txn not finished tablet_id=" << tablet_meta_pb.tablet_id(); | 2729 | 0 | return -1; | 2730 | 0 | } | 2731 | | | 2732 | 240 | tablet_idx_keys.push_back(meta_tablet_idx_key({instance_id_, tablet_id})); | 2733 | 240 | restore_job_keys.push_back(job_restore_tablet_key({instance_id_, tablet_id})); | 2734 | 240 | if (is_multi_version) { | 2735 | | // The tablet index/inverted index are recycled in recycle_versioned_tablet. | 2736 | 6 | tablet_compact_stats_keys.push_back( | 2737 | 6 | versioned::tablet_compact_stats_key({instance_id_, tablet_id})); | 2738 | 6 | tablet_load_stats_keys.push_back( | 2739 | 6 | versioned::tablet_load_stats_key({instance_id_, tablet_id})); | 2740 | 6 | versioned_meta_tablet_keys.push_back( | 2741 | 6 | versioned::meta_tablet_key({instance_id_, tablet_id})); | 2742 | 6 | } | 2743 | 240 | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::bypass_check", false); | 2744 | 237 | sync_executor.add([this, &num_recycled, tid = tablet_id, range_move = use_range_remove, | 2745 | 237 | &metrics_context, k]() mutable -> TabletKeyPair { | 2746 | 237 | if (recycle_tablet(tid, metrics_context) != 0) { | 2747 | 237 | LOG_WARNING("failed to recycle tablet") | 2748 | 237 | .tag("instance_id", instance_id_) | 2749 | 237 | .tag("tablet_id", tid); | 2750 | 237 | range_move = false; | 2751 | 237 | return {std::string_view(), range_move}; | 2752 | 237 | } | 2753 | 237 | ++num_recycled; | 2754 | 237 | LOG(INFO) << "recycle_tablets scan, key=" << (k.empty() ? "(empty)" : hex(k)); | 2755 | 237 | return {k, range_move}; | 2756 | 237 | }); | 2757 | 237 | return 0; | 2758 | 240 | }; |
|
2759 | | |
2760 | | // TODO(AlexYue): Add one ut to cover use_range_remove = false |
2761 | 49 | auto loop_done = [&, this]() -> int { |
2762 | 49 | bool finished = true; |
2763 | 49 | auto tablet_keys = sync_executor.when_all(&finished); |
2764 | 49 | if (!finished) { |
2765 | 1 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); |
2766 | 1 | return -1; |
2767 | 1 | } |
2768 | 48 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; |
2769 | 46 | if (!tablet_keys.empty() && |
2770 | 46 | std::ranges::all_of(tablet_keys, [](const auto& k) { return k.first.empty(); })) {recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlRKT_E_clISt4pairISt17basic_string_viewIcSt11char_traitsIcEEbEEEDaS7_ Line | Count | Source | 2770 | 2 | std::ranges::all_of(tablet_keys, [](const auto& k) { return k.first.empty(); })) { |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlRKT_E_clISt4pairISt17basic_string_viewIcSt11char_traitsIcEEbEEEDaS7_ Line | Count | Source | 2770 | 42 | std::ranges::all_of(tablet_keys, [](const auto& k) { return k.first.empty(); })) { |
|
2771 | 0 | return -1; |
2772 | 0 | } |
2773 | | // sort the vector using key's order |
2774 | 46 | std::sort(tablet_keys.begin(), tablet_keys.end(), |
2775 | 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 | 2775 | 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 | 2775 | 944 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); |
|
2776 | 46 | bool use_range_remove = true; |
2777 | 4.23k | for (auto& [_, remove] : tablet_keys) { |
2778 | 4.23k | if (!remove) { |
2779 | 0 | use_range_remove = remove; |
2780 | 0 | break; |
2781 | 0 | } |
2782 | 4.23k | } |
2783 | 46 | DORIS_CLOUD_DEFER { |
2784 | 46 | tablet_idx_keys.clear(); |
2785 | 46 | restore_job_keys.clear(); |
2786 | 46 | init_rs_keys.clear(); |
2787 | 46 | tablet_compact_stats_keys.clear(); |
2788 | 46 | tablet_load_stats_keys.clear(); |
2789 | 46 | versioned_meta_tablet_keys.clear(); |
2790 | 46 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2783 | 2 | DORIS_CLOUD_DEFER { | 2784 | 2 | tablet_idx_keys.clear(); | 2785 | 2 | restore_job_keys.clear(); | 2786 | 2 | init_rs_keys.clear(); | 2787 | 2 | tablet_compact_stats_keys.clear(); | 2788 | 2 | tablet_load_stats_keys.clear(); | 2789 | 2 | versioned_meta_tablet_keys.clear(); | 2790 | 2 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEvENKUlvE_clEv Line | Count | Source | 2783 | 44 | DORIS_CLOUD_DEFER { | 2784 | 44 | tablet_idx_keys.clear(); | 2785 | 44 | restore_job_keys.clear(); | 2786 | 44 | init_rs_keys.clear(); | 2787 | 44 | tablet_compact_stats_keys.clear(); | 2788 | 44 | tablet_load_stats_keys.clear(); | 2789 | 44 | versioned_meta_tablet_keys.clear(); | 2790 | 44 | }; |
|
2791 | 46 | std::unique_ptr<Transaction> txn; |
2792 | 46 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
2793 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; |
2794 | 0 | return -1; |
2795 | 0 | } |
2796 | 46 | std::string tablet_key_end; |
2797 | 46 | if (!tablet_keys.empty()) { |
2798 | 44 | if (use_range_remove) { |
2799 | 44 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; |
2800 | 44 | txn->remove(tablet_keys.front().first, tablet_key_end); |
2801 | 44 | } else { |
2802 | 0 | for (auto& [k, _] : tablet_keys) { |
2803 | 0 | txn->remove(k); |
2804 | 0 | } |
2805 | 0 | } |
2806 | 44 | } |
2807 | 46 | if (is_multi_version) { |
2808 | 6 | for (auto& k : tablet_compact_stats_keys) { |
2809 | | // Remove all versions of tablet compact stats for recycled tablet |
2810 | 6 | LOG_INFO("remove versioned tablet compact stats key") |
2811 | 6 | .tag("compact_stats_key", hex(k)); |
2812 | 6 | versioned_remove_all(txn.get(), k); |
2813 | 6 | } |
2814 | 6 | for (auto& k : tablet_load_stats_keys) { |
2815 | | // Remove all versions of tablet load stats for recycled tablet |
2816 | 6 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); |
2817 | 6 | versioned_remove_all(txn.get(), k); |
2818 | 6 | } |
2819 | 6 | for (auto& k : versioned_meta_tablet_keys) { |
2820 | | // Remove all versions of meta tablet for recycled tablet |
2821 | 6 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); |
2822 | 6 | versioned_remove_all(txn.get(), k); |
2823 | 6 | } |
2824 | 5 | } |
2825 | 4.24k | for (auto& k : tablet_idx_keys) { |
2826 | 4.24k | txn->remove(k); |
2827 | 4.24k | } |
2828 | 4.24k | for (auto& k : restore_job_keys) { |
2829 | 4.24k | txn->remove(k); |
2830 | 4.24k | } |
2831 | 46 | for (auto& k : init_rs_keys) { |
2832 | 0 | txn->remove(k); |
2833 | 0 | } |
2834 | 46 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { |
2835 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ |
2836 | 0 | << ", err=" << err; |
2837 | 0 | return -1; |
2838 | 0 | } |
2839 | 46 | return 0; |
2840 | 46 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEv Line | Count | Source | 2761 | 4 | auto loop_done = [&, this]() -> int { | 2762 | 4 | bool finished = true; | 2763 | 4 | auto tablet_keys = sync_executor.when_all(&finished); | 2764 | 4 | if (!finished) { | 2765 | 0 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); | 2766 | 0 | return -1; | 2767 | 0 | } | 2768 | 4 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; | 2769 | 2 | if (!tablet_keys.empty() && | 2770 | 2 | std::ranges::all_of(tablet_keys, [](const auto& k) { return k.first.empty(); })) { | 2771 | 0 | return -1; | 2772 | 0 | } | 2773 | | // sort the vector using key's order | 2774 | 2 | std::sort(tablet_keys.begin(), tablet_keys.end(), | 2775 | 2 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); | 2776 | 2 | bool use_range_remove = true; | 2777 | 4.00k | for (auto& [_, remove] : tablet_keys) { | 2778 | 4.00k | if (!remove) { | 2779 | 0 | use_range_remove = remove; | 2780 | 0 | break; | 2781 | 0 | } | 2782 | 4.00k | } | 2783 | 2 | DORIS_CLOUD_DEFER { | 2784 | 2 | tablet_idx_keys.clear(); | 2785 | 2 | restore_job_keys.clear(); | 2786 | 2 | init_rs_keys.clear(); | 2787 | 2 | tablet_compact_stats_keys.clear(); | 2788 | 2 | tablet_load_stats_keys.clear(); | 2789 | 2 | versioned_meta_tablet_keys.clear(); | 2790 | 2 | }; | 2791 | 2 | std::unique_ptr<Transaction> txn; | 2792 | 2 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 2793 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; | 2794 | 0 | return -1; | 2795 | 0 | } | 2796 | 2 | std::string tablet_key_end; | 2797 | 2 | if (!tablet_keys.empty()) { | 2798 | 2 | if (use_range_remove) { | 2799 | 2 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; | 2800 | 2 | txn->remove(tablet_keys.front().first, tablet_key_end); | 2801 | 2 | } else { | 2802 | 0 | for (auto& [k, _] : tablet_keys) { | 2803 | 0 | txn->remove(k); | 2804 | 0 | } | 2805 | 0 | } | 2806 | 2 | } | 2807 | 2 | if (is_multi_version) { | 2808 | 0 | for (auto& k : tablet_compact_stats_keys) { | 2809 | | // Remove all versions of tablet compact stats for recycled tablet | 2810 | 0 | LOG_INFO("remove versioned tablet compact stats key") | 2811 | 0 | .tag("compact_stats_key", hex(k)); | 2812 | 0 | versioned_remove_all(txn.get(), k); | 2813 | 0 | } | 2814 | 0 | for (auto& k : tablet_load_stats_keys) { | 2815 | | // Remove all versions of tablet load stats for recycled tablet | 2816 | 0 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); | 2817 | 0 | versioned_remove_all(txn.get(), k); | 2818 | 0 | } | 2819 | 0 | for (auto& k : versioned_meta_tablet_keys) { | 2820 | | // Remove all versions of meta tablet for recycled tablet | 2821 | 0 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); | 2822 | 0 | versioned_remove_all(txn.get(), k); | 2823 | 0 | } | 2824 | 0 | } | 2825 | 4.00k | for (auto& k : tablet_idx_keys) { | 2826 | 4.00k | txn->remove(k); | 2827 | 4.00k | } | 2828 | 4.00k | for (auto& k : restore_job_keys) { | 2829 | 4.00k | txn->remove(k); | 2830 | 4.00k | } | 2831 | 2 | for (auto& k : init_rs_keys) { | 2832 | 0 | txn->remove(k); | 2833 | 0 | } | 2834 | 2 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { | 2835 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ | 2836 | 0 | << ", err=" << err; | 2837 | 0 | return -1; | 2838 | 0 | } | 2839 | 2 | return 0; | 2840 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_tabletsEllRNS0_22RecyclerMetricsContextElENK3$_1clEv Line | Count | Source | 2761 | 45 | auto loop_done = [&, this]() -> int { | 2762 | 45 | bool finished = true; | 2763 | 45 | auto tablet_keys = sync_executor.when_all(&finished); | 2764 | 45 | if (!finished) { | 2765 | 1 | LOG_WARNING("failed to recycle tablet").tag("instance_id", instance_id_); | 2766 | 1 | return -1; | 2767 | 1 | } | 2768 | 44 | if (tablet_keys.empty() && tablet_idx_keys.empty()) return 0; | 2769 | 44 | if (!tablet_keys.empty() && | 2770 | 44 | std::ranges::all_of(tablet_keys, [](const auto& k) { return k.first.empty(); })) { | 2771 | 0 | return -1; | 2772 | 0 | } | 2773 | | // sort the vector using key's order | 2774 | 44 | std::sort(tablet_keys.begin(), tablet_keys.end(), | 2775 | 44 | [](const auto& prev, const auto& last) { return prev.first < last.first; }); | 2776 | 44 | bool use_range_remove = true; | 2777 | 236 | for (auto& [_, remove] : tablet_keys) { | 2778 | 236 | if (!remove) { | 2779 | 0 | use_range_remove = remove; | 2780 | 0 | break; | 2781 | 0 | } | 2782 | 236 | } | 2783 | 44 | DORIS_CLOUD_DEFER { | 2784 | 44 | tablet_idx_keys.clear(); | 2785 | 44 | restore_job_keys.clear(); | 2786 | 44 | init_rs_keys.clear(); | 2787 | 44 | tablet_compact_stats_keys.clear(); | 2788 | 44 | tablet_load_stats_keys.clear(); | 2789 | 44 | versioned_meta_tablet_keys.clear(); | 2790 | 44 | }; | 2791 | 44 | std::unique_ptr<Transaction> txn; | 2792 | 44 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 2793 | 0 | LOG(WARNING) << "failed to delete tablet meta kv, instance_id=" << instance_id_; | 2794 | 0 | return -1; | 2795 | 0 | } | 2796 | 44 | std::string tablet_key_end; | 2797 | 44 | if (!tablet_keys.empty()) { | 2798 | 42 | if (use_range_remove) { | 2799 | 42 | tablet_key_end = std::string(tablet_keys.back().first) + '\x00'; | 2800 | 42 | txn->remove(tablet_keys.front().first, tablet_key_end); | 2801 | 42 | } else { | 2802 | 0 | for (auto& [k, _] : tablet_keys) { | 2803 | 0 | txn->remove(k); | 2804 | 0 | } | 2805 | 0 | } | 2806 | 42 | } | 2807 | 44 | if (is_multi_version) { | 2808 | 6 | for (auto& k : tablet_compact_stats_keys) { | 2809 | | // Remove all versions of tablet compact stats for recycled tablet | 2810 | 6 | LOG_INFO("remove versioned tablet compact stats key") | 2811 | 6 | .tag("compact_stats_key", hex(k)); | 2812 | 6 | versioned_remove_all(txn.get(), k); | 2813 | 6 | } | 2814 | 6 | for (auto& k : tablet_load_stats_keys) { | 2815 | | // Remove all versions of tablet load stats for recycled tablet | 2816 | 6 | LOG_INFO("remove versioned tablet load stats key").tag("load_stats_key", hex(k)); | 2817 | 6 | versioned_remove_all(txn.get(), k); | 2818 | 6 | } | 2819 | 6 | for (auto& k : versioned_meta_tablet_keys) { | 2820 | | // Remove all versions of meta tablet for recycled tablet | 2821 | 6 | LOG_INFO("remove versioned meta tablet key").tag("meta_tablet_key", hex(k)); | 2822 | 6 | versioned_remove_all(txn.get(), k); | 2823 | 6 | } | 2824 | 5 | } | 2825 | 239 | for (auto& k : tablet_idx_keys) { | 2826 | 239 | txn->remove(k); | 2827 | 239 | } | 2828 | 239 | for (auto& k : restore_job_keys) { | 2829 | 239 | txn->remove(k); | 2830 | 239 | } | 2831 | 44 | for (auto& k : init_rs_keys) { | 2832 | 0 | txn->remove(k); | 2833 | 0 | } | 2834 | 44 | if (TxnErrorCode err = txn->commit(); err != TxnErrorCode::TXN_OK) { | 2835 | 0 | LOG(WARNING) << "failed to delete kvs related to tablets, instance_id=" << instance_id_ | 2836 | 0 | << ", err=" << err; | 2837 | 0 | return -1; | 2838 | 0 | } | 2839 | 44 | return 0; | 2840 | 44 | }; |
|
2841 | | |
2842 | 49 | int ret = scan_and_recycle(tablet_key_begin, tablet_key_end, std::move(recycle_func), |
2843 | 49 | std::move(loop_done)); |
2844 | 49 | if (ret != 0) { |
2845 | 3 | LOG(WARNING) << "failed to scan_and_recycle, instance_id=" << instance_id_; |
2846 | 3 | return ret; |
2847 | 3 | } |
2848 | | |
2849 | | // directly remove tablet stats and tablet jobs of these dropped index or partition |
2850 | 46 | std::unique_ptr<Transaction> txn; |
2851 | 46 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
2852 | 0 | LOG(WARNING) << "failed to delete tablet job or stats key, instance_id=" << instance_id_; |
2853 | 0 | return -1; |
2854 | 0 | } |
2855 | 46 | txn->remove(stats_key_begin, stats_key_end); |
2856 | 46 | LOG(WARNING) << "remove stats kv, begin=" << hex(stats_key_begin) |
2857 | 46 | << " end=" << hex(stats_key_end); |
2858 | 46 | txn->remove(job_key_begin, job_key_end); |
2859 | 46 | LOG(WARNING) << "remove job kv, begin=" << hex(job_key_begin) << " end=" << hex(job_key_end); |
2860 | 46 | std::string schema_key_begin, schema_key_end; |
2861 | 46 | std::string schema_dict_key; |
2862 | 46 | std::string versioned_schema_key_begin, versioned_schema_key_end; |
2863 | 46 | if (partition_id <= 0) { |
2864 | | // Delete schema kv of this index |
2865 | 14 | meta_schema_key({instance_id_, index_id, 0}, &schema_key_begin); |
2866 | 14 | meta_schema_key({instance_id_, index_id + 1, 0}, &schema_key_end); |
2867 | 14 | txn->remove(schema_key_begin, schema_key_end); |
2868 | 14 | LOG(WARNING) << "remove schema kv, begin=" << hex(schema_key_begin) |
2869 | 14 | << " end=" << hex(schema_key_end); |
2870 | 14 | meta_schema_pb_dictionary_key({instance_id_, index_id}, &schema_dict_key); |
2871 | 14 | txn->remove(schema_dict_key); |
2872 | 14 | LOG(WARNING) << "remove schema dict kv, key=" << hex(schema_dict_key); |
2873 | 14 | versioned::meta_schema_key({instance_id_, index_id, 0}, &versioned_schema_key_begin); |
2874 | 14 | versioned::meta_schema_key({instance_id_, index_id + 1, 0}, &versioned_schema_key_end); |
2875 | 14 | txn->remove(versioned_schema_key_begin, versioned_schema_key_end); |
2876 | 14 | LOG(WARNING) << "remove versioned schema kv, begin=" << hex(versioned_schema_key_begin) |
2877 | 14 | << " end=" << hex(versioned_schema_key_end); |
2878 | 14 | } |
2879 | | |
2880 | 46 | TxnErrorCode err = txn->commit(); |
2881 | 46 | if (err != TxnErrorCode::TXN_OK) { |
2882 | 0 | LOG(WARNING) << "failed to delete tablet job or stats key, instance_id=" << instance_id_ |
2883 | 0 | << " err=" << err; |
2884 | 0 | return -1; |
2885 | 0 | } |
2886 | | |
2887 | 46 | return ret; |
2888 | 46 | } |
2889 | | |
2890 | 5.61k | int InstanceRecycler::delete_rowset_data(const RowsetMetaCloudPB& rs_meta_pb) { |
2891 | 5.61k | TEST_SYNC_POINT_RETURN_WITH_VALUE("delete_rowset_data::bypass_check", true); |
2892 | 5.61k | int64_t num_segments = rs_meta_pb.num_segments(); |
2893 | 5.61k | if (num_segments <= 0) return 0; |
2894 | | |
2895 | 5.61k | std::vector<std::string> file_paths; |
2896 | 5.61k | if (decrement_packed_file_ref_counts(rs_meta_pb) != 0) { |
2897 | 0 | return -1; |
2898 | 0 | } |
2899 | | |
2900 | | // Process inverted indexes |
2901 | 5.61k | std::vector<std::pair<int64_t, std::string>> index_ids; |
2902 | | // default format as v1. |
2903 | 5.61k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
2904 | 5.61k | bool delete_rowset_data_by_prefix = false; |
2905 | 5.61k | if (rs_meta_pb.rowset_state() == RowsetStatePB::BEGIN_PARTIAL_UPDATE) { |
2906 | | // if rowset state is RowsetStatePB::BEGIN_PARTIAL_UPDATE, the number of segments data |
2907 | | // may be larger than num_segments field in RowsetMeta, so we need to delete the rowset's data by prefix |
2908 | 0 | delete_rowset_data_by_prefix = true; |
2909 | 5.61k | } else if (rs_meta_pb.has_tablet_schema()) { |
2910 | 10.0k | for (const auto& index : rs_meta_pb.tablet_schema().index()) { |
2911 | 10.0k | if (index.has_index_type() && index.index_type() == IndexType::INVERTED) { |
2912 | 10.0k | index_ids.emplace_back(index.index_id(), index.index_suffix_name()); |
2913 | 10.0k | } |
2914 | 10.0k | } |
2915 | 4.80k | if (rs_meta_pb.tablet_schema().has_inverted_index_storage_format()) { |
2916 | 2.00k | index_format = rs_meta_pb.tablet_schema().inverted_index_storage_format(); |
2917 | 2.00k | } |
2918 | 4.80k | } else if (!rs_meta_pb.has_index_id() || !rs_meta_pb.has_schema_version()) { |
2919 | | // schema version and index id are not found, delete rowset data by prefix directly. |
2920 | 0 | delete_rowset_data_by_prefix = true; |
2921 | 809 | } else { |
2922 | | // otherwise, try to get schema kv |
2923 | 809 | InvertedIndexInfo index_info; |
2924 | 809 | int inverted_index_get_ret = inverted_index_id_cache_->get( |
2925 | 809 | rs_meta_pb.index_id(), rs_meta_pb.schema_version(), index_info); |
2926 | 809 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.tmp_rowset", |
2927 | 809 | &inverted_index_get_ret); |
2928 | 809 | if (inverted_index_get_ret == 0) { |
2929 | 809 | index_format = index_info.first; |
2930 | 809 | index_ids = index_info.second; |
2931 | 809 | } else if (inverted_index_get_ret == 1) { |
2932 | | // 1. Schema kv not found means tablet has been recycled |
2933 | | // Maybe some tablet recycle failed by some bugs |
2934 | | // We need to delete again to double check |
2935 | | // 2. Ensure this operation only deletes tablets and does not perform any operations on indexes, |
2936 | | // because we are uncertain about the inverted index information. |
2937 | | // If there are inverted indexes, some data might not be deleted, |
2938 | | // but this is acceptable as we have made our best effort to delete the data. |
2939 | 0 | LOG_INFO( |
2940 | 0 | "delete rowset data schema kv not found, need to delete again to double " |
2941 | 0 | "check") |
2942 | 0 | .tag("instance_id", instance_id_) |
2943 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
2944 | 0 | .tag("rowset", rs_meta_pb.ShortDebugString()); |
2945 | | // Currently index_ids is guaranteed to be empty, |
2946 | | // but we clear it again here as a safeguard against future code changes |
2947 | | // that might cause index_ids to no longer be empty |
2948 | 0 | index_format = InvertedIndexStorageFormatPB::V2; |
2949 | 0 | index_ids.clear(); |
2950 | 0 | } else { |
2951 | | // failed to get schema kv, delete rowset data by prefix directly. |
2952 | 0 | delete_rowset_data_by_prefix = true; |
2953 | 0 | } |
2954 | 809 | } |
2955 | | |
2956 | 5.61k | if (delete_rowset_data_by_prefix) { |
2957 | 0 | return delete_rowset_data(rs_meta_pb.resource_id(), rs_meta_pb.tablet_id(), |
2958 | 0 | rs_meta_pb.rowset_id_v2()); |
2959 | 0 | } |
2960 | | |
2961 | 5.61k | auto it = accessor_map_.find(rs_meta_pb.resource_id()); |
2962 | 5.61k | if (it == accessor_map_.end()) { |
2963 | 1.59k | LOG_WARNING("instance has no such resource id") |
2964 | 1.59k | .tag("instance_id", instance_id_) |
2965 | 1.59k | .tag("resource_id", rs_meta_pb.resource_id()); |
2966 | 1.59k | return -1; |
2967 | 1.59k | } |
2968 | 4.01k | auto& accessor = it->second; |
2969 | | |
2970 | 4.01k | int64_t tablet_id = rs_meta_pb.tablet_id(); |
2971 | 4.01k | const auto& rowset_id = rs_meta_pb.rowset_id_v2(); |
2972 | 24.0k | for (int64_t i = 0; i < num_segments; ++i) { |
2973 | 20.0k | file_paths.push_back(segment_path(tablet_id, rowset_id, i)); |
2974 | 20.0k | if (index_format == InvertedIndexStorageFormatPB::V1) { |
2975 | 40.0k | for (const auto& index_id : index_ids) { |
2976 | 40.0k | file_paths.push_back(inverted_index_path_v1(tablet_id, rowset_id, i, index_id.first, |
2977 | 40.0k | index_id.second)); |
2978 | 40.0k | } |
2979 | 20.0k | } else if (!index_ids.empty()) { |
2980 | 0 | file_paths.push_back(inverted_index_path_v2(tablet_id, rowset_id, i)); |
2981 | 0 | } |
2982 | 20.0k | } |
2983 | | |
2984 | | // Process delete bitmap |
2985 | 4.01k | file_paths.push_back(delete_bitmap_path(tablet_id, rowset_id)); |
2986 | | // TODO(AlexYue): seems could do do batch |
2987 | 4.01k | return accessor->delete_files(file_paths); |
2988 | 5.61k | } |
2989 | | |
2990 | 62.3k | int InstanceRecycler::decrement_packed_file_ref_counts(const doris::RowsetMetaCloudPB& rs_meta_pb) { |
2991 | 62.3k | LOG_INFO("begin process_packed_file_location_index") |
2992 | 62.3k | .tag("instance_id", instance_id_) |
2993 | 62.3k | .tag("tablet_id", rs_meta_pb.tablet_id()) |
2994 | 62.3k | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
2995 | 62.3k | .tag("index_map_size", rs_meta_pb.packed_slice_locations_size()); |
2996 | 62.3k | const auto& index_map = rs_meta_pb.packed_slice_locations(); |
2997 | 62.3k | if (index_map.empty()) { |
2998 | 62.3k | LOG_INFO("skip merge file update: empty merge_file_segment_index") |
2999 | 62.3k | .tag("instance_id", instance_id_) |
3000 | 62.3k | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3001 | 62.3k | .tag("rowset_id", rs_meta_pb.rowset_id_v2()); |
3002 | 62.3k | return 0; |
3003 | 62.3k | } |
3004 | 11 | struct PackedSmallFileInfo { |
3005 | 11 | std::string small_file_path; |
3006 | 11 | }; |
3007 | 11 | std::unordered_map<std::string, std::vector<PackedSmallFileInfo>> packed_file_updates; |
3008 | 11 | packed_file_updates.reserve(index_map.size()); |
3009 | 27 | for (const auto& [small_path, index_pb] : index_map) { |
3010 | 27 | if (!index_pb.has_packed_file_path() || index_pb.packed_file_path().empty()) { |
3011 | 0 | continue; |
3012 | 0 | } |
3013 | 27 | packed_file_updates[index_pb.packed_file_path()].push_back( |
3014 | 27 | PackedSmallFileInfo {small_path}); |
3015 | 27 | } |
3016 | 11 | if (packed_file_updates.empty()) { |
3017 | 0 | LOG_INFO("skip packed file update: no valid merge_file_path in merge_file_segment_index") |
3018 | 0 | .tag("instance_id", instance_id_) |
3019 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3020 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3021 | 0 | .tag("index_map_size", index_map.size()); |
3022 | 0 | return 0; |
3023 | 0 | } |
3024 | | |
3025 | 11 | const int max_retry_times = std::max(1, config::decrement_packed_file_ref_counts_retry_times); |
3026 | 11 | int ret = 0; |
3027 | 24 | for (auto& [packed_file_path, small_files] : packed_file_updates) { |
3028 | 24 | if (small_files.empty()) { |
3029 | 0 | continue; |
3030 | 0 | } |
3031 | | |
3032 | 24 | bool success = false; |
3033 | 24 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
3034 | 24 | std::unique_ptr<Transaction> txn; |
3035 | 24 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
3036 | 24 | if (err != TxnErrorCode::TXN_OK) { |
3037 | 0 | LOG_WARNING("failed to create txn when updating packed file ref count") |
3038 | 0 | .tag("instance_id", instance_id_) |
3039 | 0 | .tag("packed_file_path", packed_file_path) |
3040 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3041 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3042 | 0 | .tag("err", err); |
3043 | 0 | ret = -1; |
3044 | 0 | break; |
3045 | 0 | } |
3046 | | |
3047 | 24 | std::string packed_key = packed_file_key({instance_id_, packed_file_path}); |
3048 | 24 | std::string packed_val; |
3049 | 24 | err = txn->get(packed_key, &packed_val); |
3050 | 24 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
3051 | 0 | LOG_WARNING("packed file info not found when recycling rowset") |
3052 | 0 | .tag("instance_id", instance_id_) |
3053 | 0 | .tag("packed_file_path", packed_file_path) |
3054 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3055 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3056 | 0 | .tag("key", hex(packed_key)) |
3057 | 0 | .tag("tablet id", rs_meta_pb.tablet_id()); |
3058 | | // Skip this packed file entry and continue with others |
3059 | 0 | success = true; |
3060 | 0 | break; |
3061 | 0 | } |
3062 | 24 | if (err != TxnErrorCode::TXN_OK) { |
3063 | 0 | LOG_WARNING("failed to get packed file info when recycling rowset") |
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 | cloud::PackedFileInfoPB packed_info; |
3074 | 24 | if (!packed_info.ParseFromString(packed_val)) { |
3075 | 0 | LOG_WARNING("failed to parse packed file info when recycling rowset") |
3076 | 0 | .tag("instance_id", instance_id_) |
3077 | 0 | .tag("packed_file_path", packed_file_path) |
3078 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3079 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3080 | 0 | ret = -1; |
3081 | 0 | break; |
3082 | 0 | } |
3083 | | |
3084 | 24 | LOG_INFO("packed file update check") |
3085 | 24 | .tag("instance_id", instance_id_) |
3086 | 24 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3087 | 24 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3088 | 24 | .tag("merged_file_path", packed_file_path) |
3089 | 24 | .tag("requested_small_files", small_files.size()) |
3090 | 24 | .tag("merge_entries", packed_info.slices_size()); |
3091 | | |
3092 | 24 | auto* small_file_entries = packed_info.mutable_slices(); |
3093 | 24 | int64_t changed_files = 0; |
3094 | 24 | int64_t missing_entries = 0; |
3095 | 24 | int64_t already_deleted = 0; |
3096 | 27 | for (const auto& small_file_info : small_files) { |
3097 | 27 | bool found = false; |
3098 | 87 | for (auto& small_file_entry : *small_file_entries) { |
3099 | 87 | if (small_file_entry.path() == small_file_info.small_file_path) { |
3100 | 27 | if (!small_file_entry.deleted()) { |
3101 | 27 | small_file_entry.set_deleted(true); |
3102 | 27 | if (!small_file_entry.corrected()) { |
3103 | 27 | small_file_entry.set_corrected(true); |
3104 | 27 | } |
3105 | 27 | ++changed_files; |
3106 | 27 | } else { |
3107 | 0 | ++already_deleted; |
3108 | 0 | } |
3109 | 27 | found = true; |
3110 | 27 | break; |
3111 | 27 | } |
3112 | 87 | } |
3113 | 27 | if (!found) { |
3114 | 0 | ++missing_entries; |
3115 | 0 | LOG_WARNING("packed file info missing small file entry") |
3116 | 0 | .tag("instance_id", instance_id_) |
3117 | 0 | .tag("packed_file_path", packed_file_path) |
3118 | 0 | .tag("small_file_path", small_file_info.small_file_path) |
3119 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3120 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3121 | 0 | } |
3122 | 27 | } |
3123 | | |
3124 | 24 | if (changed_files == 0) { |
3125 | 0 | LOG_INFO("skip merge file update: no merge entries changed") |
3126 | 0 | .tag("instance_id", instance_id_) |
3127 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3128 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3129 | 0 | .tag("merged_file_path", packed_file_path) |
3130 | 0 | .tag("missing_entries", missing_entries) |
3131 | 0 | .tag("already_deleted", already_deleted) |
3132 | 0 | .tag("requested_small_files", small_files.size()) |
3133 | 0 | .tag("merge_entries", packed_info.slices_size()); |
3134 | 0 | success = true; |
3135 | 0 | break; |
3136 | 0 | } |
3137 | | |
3138 | 24 | int64_t left_file_count = 0; |
3139 | 24 | int64_t left_file_bytes = 0; |
3140 | 141 | for (const auto& small_file_entry : packed_info.slices()) { |
3141 | 141 | if (!small_file_entry.deleted()) { |
3142 | 57 | ++left_file_count; |
3143 | 57 | left_file_bytes += small_file_entry.size(); |
3144 | 57 | } |
3145 | 141 | } |
3146 | 24 | packed_info.set_remaining_slice_bytes(left_file_bytes); |
3147 | 24 | packed_info.set_ref_cnt(left_file_count); |
3148 | 24 | LOG_INFO("updated packed file reference info") |
3149 | 24 | .tag("instance_id", instance_id_) |
3150 | 24 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3151 | 24 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3152 | 24 | .tag("packed_file_path", packed_file_path) |
3153 | 24 | .tag("ref_cnt", left_file_count) |
3154 | 24 | .tag("left_file_bytes", left_file_bytes); |
3155 | | |
3156 | 24 | if (left_file_count == 0) { |
3157 | 7 | packed_info.set_state(cloud::PackedFileInfoPB::RECYCLING); |
3158 | 7 | } |
3159 | | |
3160 | 24 | std::string updated_val; |
3161 | 24 | if (!packed_info.SerializeToString(&updated_val)) { |
3162 | 0 | LOG_WARNING("failed to serialize packed file info when recycling rowset") |
3163 | 0 | .tag("instance_id", instance_id_) |
3164 | 0 | .tag("packed_file_path", packed_file_path) |
3165 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3166 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()); |
3167 | 0 | ret = -1; |
3168 | 0 | break; |
3169 | 0 | } |
3170 | | |
3171 | 24 | txn->put(packed_key, updated_val); |
3172 | 24 | err = txn->commit(); |
3173 | 24 | if (err == TxnErrorCode::TXN_OK) { |
3174 | 24 | success = true; |
3175 | 24 | if (left_file_count == 0) { |
3176 | 7 | LOG_INFO("packed file ready to delete, deleting immediately") |
3177 | 7 | .tag("instance_id", instance_id_) |
3178 | 7 | .tag("packed_file_path", packed_file_path); |
3179 | 7 | if (delete_packed_file_and_kv(packed_file_path, packed_key, packed_info) != 0) { |
3180 | 0 | ret = -1; |
3181 | 0 | } |
3182 | 7 | } |
3183 | 24 | break; |
3184 | 24 | } |
3185 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
3186 | 0 | if (attempt >= max_retry_times) { |
3187 | 0 | LOG_WARNING("packed file info update conflict after max retry") |
3188 | 0 | .tag("instance_id", instance_id_) |
3189 | 0 | .tag("packed_file_path", packed_file_path) |
3190 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3191 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3192 | 0 | .tag("changed_files", changed_files) |
3193 | 0 | .tag("attempt", attempt); |
3194 | 0 | ret = -1; |
3195 | 0 | break; |
3196 | 0 | } |
3197 | 0 | LOG_WARNING("packed file info update conflict, retrying") |
3198 | 0 | .tag("instance_id", instance_id_) |
3199 | 0 | .tag("packed_file_path", packed_file_path) |
3200 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3201 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3202 | 0 | .tag("changed_files", changed_files) |
3203 | 0 | .tag("attempt", attempt); |
3204 | 0 | sleep_for_packed_file_retry(); |
3205 | 0 | continue; |
3206 | 0 | } |
3207 | | |
3208 | 0 | LOG_WARNING("failed to commit packed file info update") |
3209 | 0 | .tag("instance_id", instance_id_) |
3210 | 0 | .tag("packed_file_path", packed_file_path) |
3211 | 0 | .tag("rowset_id", rs_meta_pb.rowset_id_v2()) |
3212 | 0 | .tag("tablet_id", rs_meta_pb.tablet_id()) |
3213 | 0 | .tag("err", err) |
3214 | 0 | .tag("changed_files", changed_files); |
3215 | 0 | ret = -1; |
3216 | 0 | break; |
3217 | 0 | } |
3218 | | |
3219 | 24 | if (!success) { |
3220 | 0 | ret = -1; |
3221 | 0 | } |
3222 | 24 | } |
3223 | | |
3224 | 11 | return ret; |
3225 | 11 | } |
3226 | | |
3227 | | int InstanceRecycler::delete_packed_file_and_kv(const std::string& packed_file_path, |
3228 | | const std::string& packed_key, |
3229 | 7 | const cloud::PackedFileInfoPB& packed_info) { |
3230 | 7 | if (!packed_info.has_resource_id() || packed_info.resource_id().empty()) { |
3231 | 0 | LOG_WARNING("packed file missing resource id when recycling") |
3232 | 0 | .tag("instance_id", instance_id_) |
3233 | 0 | .tag("packed_file_path", packed_file_path); |
3234 | 0 | return -1; |
3235 | 0 | } |
3236 | | |
3237 | 7 | auto [resource_id, accessor] = resolve_packed_file_accessor(packed_info.resource_id()); |
3238 | 7 | if (!accessor) { |
3239 | 0 | LOG_WARNING("no accessor available to delete packed file") |
3240 | 0 | .tag("instance_id", instance_id_) |
3241 | 0 | .tag("packed_file_path", packed_file_path) |
3242 | 0 | .tag("resource_id", packed_info.resource_id()); |
3243 | 0 | return -1; |
3244 | 0 | } |
3245 | | |
3246 | 7 | int del_ret = accessor->delete_file(packed_file_path); |
3247 | 7 | if (del_ret != 0 && del_ret != 1) { |
3248 | 0 | LOG_WARNING("failed to delete packed file") |
3249 | 0 | .tag("instance_id", instance_id_) |
3250 | 0 | .tag("packed_file_path", packed_file_path) |
3251 | 0 | .tag("resource_id", resource_id) |
3252 | 0 | .tag("ret", del_ret); |
3253 | 0 | return -1; |
3254 | 0 | } |
3255 | 7 | if (del_ret == 1) { |
3256 | 0 | LOG_INFO("packed file already removed") |
3257 | 0 | .tag("instance_id", instance_id_) |
3258 | 0 | .tag("packed_file_path", packed_file_path) |
3259 | 0 | .tag("resource_id", resource_id); |
3260 | 7 | } else { |
3261 | 7 | LOG_INFO("deleted packed file") |
3262 | 7 | .tag("instance_id", instance_id_) |
3263 | 7 | .tag("packed_file_path", packed_file_path) |
3264 | 7 | .tag("resource_id", resource_id); |
3265 | 7 | } |
3266 | | |
3267 | 7 | const int max_retry_times = std::max(1, config::packed_file_txn_retry_times); |
3268 | 7 | for (int attempt = 1; attempt <= max_retry_times; ++attempt) { |
3269 | 7 | std::unique_ptr<Transaction> del_txn; |
3270 | 7 | TxnErrorCode err = txn_kv_->create_txn(&del_txn); |
3271 | 7 | if (err != TxnErrorCode::TXN_OK) { |
3272 | 0 | LOG_WARNING("failed to create txn when removing packed file kv") |
3273 | 0 | .tag("instance_id", instance_id_) |
3274 | 0 | .tag("packed_file_path", packed_file_path) |
3275 | 0 | .tag("attempt", attempt) |
3276 | 0 | .tag("err", err); |
3277 | 0 | return -1; |
3278 | 0 | } |
3279 | | |
3280 | 7 | std::string latest_val; |
3281 | 7 | err = del_txn->get(packed_key, &latest_val); |
3282 | 7 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
3283 | 0 | return 0; |
3284 | 0 | } |
3285 | 7 | if (err != TxnErrorCode::TXN_OK) { |
3286 | 0 | LOG_WARNING("failed to re-read packed file kv before removal") |
3287 | 0 | .tag("instance_id", instance_id_) |
3288 | 0 | .tag("packed_file_path", packed_file_path) |
3289 | 0 | .tag("attempt", attempt) |
3290 | 0 | .tag("err", err); |
3291 | 0 | return -1; |
3292 | 0 | } |
3293 | | |
3294 | 7 | cloud::PackedFileInfoPB latest_info; |
3295 | 7 | if (!latest_info.ParseFromString(latest_val)) { |
3296 | 0 | LOG_WARNING("failed to parse packed file info before removal") |
3297 | 0 | .tag("instance_id", instance_id_) |
3298 | 0 | .tag("packed_file_path", packed_file_path) |
3299 | 0 | .tag("attempt", attempt); |
3300 | 0 | return -1; |
3301 | 0 | } |
3302 | | |
3303 | 7 | if (!(latest_info.state() == cloud::PackedFileInfoPB::RECYCLING && |
3304 | 7 | latest_info.ref_cnt() == 0)) { |
3305 | 0 | LOG_INFO("packed file state changed before removal, skip deleting kv") |
3306 | 0 | .tag("instance_id", instance_id_) |
3307 | 0 | .tag("packed_file_path", packed_file_path) |
3308 | 0 | .tag("attempt", attempt); |
3309 | 0 | return 0; |
3310 | 0 | } |
3311 | | |
3312 | 7 | del_txn->remove(packed_key); |
3313 | 7 | err = del_txn->commit(); |
3314 | 7 | if (err == TxnErrorCode::TXN_OK) { |
3315 | 7 | LOG_INFO("removed packed file metadata") |
3316 | 7 | .tag("instance_id", instance_id_) |
3317 | 7 | .tag("packed_file_path", packed_file_path); |
3318 | 7 | return 0; |
3319 | 7 | } |
3320 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { |
3321 | 0 | if (attempt >= max_retry_times) { |
3322 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict after max retry") |
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 | 0 | LOG_WARNING("failed to remove packed file kv due to conflict, retrying") |
3329 | 0 | .tag("instance_id", instance_id_) |
3330 | 0 | .tag("packed_file_path", packed_file_path) |
3331 | 0 | .tag("attempt", attempt); |
3332 | 0 | sleep_for_packed_file_retry(); |
3333 | 0 | continue; |
3334 | 0 | } |
3335 | 0 | LOG_WARNING("failed to remove packed file kv") |
3336 | 0 | .tag("instance_id", instance_id_) |
3337 | 0 | .tag("packed_file_path", packed_file_path) |
3338 | 0 | .tag("attempt", attempt) |
3339 | 0 | .tag("err", err); |
3340 | 0 | return -1; |
3341 | 0 | } |
3342 | 0 | return -1; |
3343 | 7 | } |
3344 | | |
3345 | | int InstanceRecycler::delete_rowset_data( |
3346 | | const std::map<std::string, doris::RowsetMetaCloudPB>& rowsets, RowsetRecyclingState type, |
3347 | 92 | RecyclerMetricsContext& metrics_context) { |
3348 | 92 | int ret = 0; |
3349 | | // resource_id -> file_paths |
3350 | 92 | std::map<std::string, std::vector<std::string>> resource_file_paths; |
3351 | | // (resource_id, tablet_id, rowset_id) |
3352 | 92 | std::vector<std::tuple<std::string, int64_t, std::string>> rowsets_delete_by_prefix; |
3353 | 92 | bool is_formal_rowset = (type == RowsetRecyclingState::FORMAL_ROWSET); |
3354 | | |
3355 | 54.1k | for (const auto& [_, rs] : rowsets) { |
3356 | | // we have to treat tmp rowset as "orphans" that may not related to any existing tablets |
3357 | | // due to aborted schema change. |
3358 | 54.1k | if (is_formal_rowset) { |
3359 | 3.16k | std::lock_guard lock(recycled_tablets_mtx_); |
3360 | 3.16k | if (recycled_tablets_.count(rs.tablet_id()) && rs.packed_slice_locations_size() == 0) { |
3361 | | // Tablet has been recycled and this rowset has no packed slices, so file data |
3362 | | // should already be gone; skip to avoid redundant deletes. Rowsets with packed |
3363 | | // slice info must still run to decrement packed file ref counts. |
3364 | 0 | continue; |
3365 | 0 | } |
3366 | 3.16k | } |
3367 | | |
3368 | 54.1k | auto it = accessor_map_.find(rs.resource_id()); |
3369 | | // possible if the accessor is not initilized correctly |
3370 | 54.1k | if (it == accessor_map_.end()) [[unlikely]] { |
3371 | 1 | LOG_WARNING("instance has no such resource id") |
3372 | 1 | .tag("instance_id", instance_id_) |
3373 | 1 | .tag("resource_id", rs.resource_id()); |
3374 | 1 | ret = -1; |
3375 | 1 | continue; |
3376 | 1 | } |
3377 | | |
3378 | 54.1k | auto& file_paths = resource_file_paths[rs.resource_id()]; |
3379 | 54.1k | const auto& rowset_id = rs.rowset_id_v2(); |
3380 | 54.1k | int64_t tablet_id = rs.tablet_id(); |
3381 | 54.1k | LOG_INFO("recycle rowset merge index size") |
3382 | 54.1k | .tag("instance_id", instance_id_) |
3383 | 54.1k | .tag("tablet_id", tablet_id) |
3384 | 54.1k | .tag("rowset_id", rowset_id) |
3385 | 54.1k | .tag("merge_index_size", rs.packed_slice_locations_size()); |
3386 | 54.1k | if (decrement_packed_file_ref_counts(rs) != 0) { |
3387 | 0 | ret = -1; |
3388 | 0 | continue; |
3389 | 0 | } |
3390 | 54.1k | int64_t num_segments = rs.num_segments(); |
3391 | 54.1k | if (num_segments <= 0) { |
3392 | 0 | metrics_context.total_recycled_num++; |
3393 | 0 | metrics_context.total_recycled_data_size += rs.total_disk_size(); |
3394 | 0 | continue; |
3395 | 0 | } |
3396 | | |
3397 | | // Process delete bitmap |
3398 | 54.1k | file_paths.push_back(delete_bitmap_path(tablet_id, rowset_id)); |
3399 | | |
3400 | | // Process inverted indexes |
3401 | 54.1k | std::vector<std::pair<int64_t, std::string>> index_ids; |
3402 | | // default format as v1. |
3403 | 54.1k | InvertedIndexStorageFormatPB index_format = InvertedIndexStorageFormatPB::V1; |
3404 | 54.1k | int inverted_index_get_ret = 0; |
3405 | 54.1k | if (rs.has_tablet_schema()) { |
3406 | 53.5k | for (const auto& index : rs.tablet_schema().index()) { |
3407 | 53.5k | if (index.has_index_type() && index.index_type() == IndexType::INVERTED) { |
3408 | 53.5k | index_ids.emplace_back(index.index_id(), index.index_suffix_name()); |
3409 | 53.5k | } |
3410 | 53.5k | } |
3411 | 26.6k | if (rs.tablet_schema().has_inverted_index_storage_format()) { |
3412 | 26.5k | index_format = rs.tablet_schema().inverted_index_storage_format(); |
3413 | 26.5k | } |
3414 | 27.5k | } else { |
3415 | 27.5k | if (!rs.has_index_id() || !rs.has_schema_version()) { |
3416 | 0 | LOG(WARNING) << "rowset must have either schema or schema_version and index_id, " |
3417 | 0 | "instance_id=" |
3418 | 0 | << instance_id_ << " tablet_id=" << tablet_id |
3419 | 0 | << " rowset_id=" << rowset_id; |
3420 | 0 | ret = -1; |
3421 | 0 | continue; |
3422 | 0 | } |
3423 | 27.5k | InvertedIndexInfo index_info; |
3424 | 27.5k | inverted_index_get_ret = |
3425 | 27.5k | inverted_index_id_cache_->get(rs.index_id(), rs.schema_version(), index_info); |
3426 | 27.5k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.tmp_rowset", |
3427 | 27.5k | &inverted_index_get_ret); |
3428 | 27.5k | if (inverted_index_get_ret == 0) { |
3429 | 27.0k | index_format = index_info.first; |
3430 | 27.0k | index_ids = index_info.second; |
3431 | 27.0k | } else if (inverted_index_get_ret == 1) { |
3432 | | // 1. Schema kv not found means tablet has been recycled |
3433 | | // Maybe some tablet recycle failed by some bugs |
3434 | | // We need to delete again to double check |
3435 | | // 2. Ensure this operation only deletes tablets and does not perform any operations on indexes, |
3436 | | // because we are uncertain about the inverted index information. |
3437 | | // If there are inverted indexes, some data might not be deleted, |
3438 | | // but this is acceptable as we have made our best effort to delete the data. |
3439 | 503 | LOG_INFO( |
3440 | 503 | "delete rowset data schema kv not found, need to delete again to " |
3441 | 503 | "double " |
3442 | 503 | "check") |
3443 | 503 | .tag("instance_id", instance_id_) |
3444 | 503 | .tag("tablet_id", tablet_id) |
3445 | 503 | .tag("rowset", rs.ShortDebugString()); |
3446 | | // Currently index_ids is guaranteed to be empty, |
3447 | | // but we clear it again here as a safeguard against future code changes |
3448 | | // that might cause index_ids to no longer be empty |
3449 | 503 | index_format = InvertedIndexStorageFormatPB::V2; |
3450 | 503 | index_ids.clear(); |
3451 | 18.4E | } else { |
3452 | 18.4E | LOG(WARNING) << "failed to get schema kv for rowset, instance_id=" << instance_id_ |
3453 | 18.4E | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id; |
3454 | 18.4E | ret = -1; |
3455 | 18.4E | continue; |
3456 | 18.4E | } |
3457 | 27.5k | } |
3458 | 54.2k | if (rs.rowset_state() == RowsetStatePB::BEGIN_PARTIAL_UPDATE) { |
3459 | | // if rowset state is RowsetStatePB::BEGIN_PARTIAL_UPDATE, the number of segments data |
3460 | | // may be larger than num_segments field in RowsetMeta, so we need to delete the rowset's data by prefix |
3461 | 5 | rowsets_delete_by_prefix.emplace_back(rs.resource_id(), tablet_id, rs.rowset_id_v2()); |
3462 | 5 | continue; |
3463 | 5 | } |
3464 | 324k | for (int64_t i = 0; i < num_segments; ++i) { |
3465 | 270k | file_paths.push_back(segment_path(tablet_id, rowset_id, i)); |
3466 | 270k | if (index_format == InvertedIndexStorageFormatPB::V1) { |
3467 | 536k | for (const auto& index_id : index_ids) { |
3468 | 536k | file_paths.push_back(inverted_index_path_v1(tablet_id, rowset_id, i, |
3469 | 536k | index_id.first, index_id.second)); |
3470 | 536k | } |
3471 | 267k | } else if (!index_ids.empty() || inverted_index_get_ret == 1) { |
3472 | | // try to recycle inverted index v2 when get_ret == 1 |
3473 | | // we treat schema not found as if it has a v2 format inverted index |
3474 | | // to reduce chance of data leakage |
3475 | 2.50k | if (inverted_index_get_ret == 1) { |
3476 | 2.50k | LOG_INFO("delete rowset data schema kv not found, try to delete index file") |
3477 | 2.50k | .tag("instance_id", instance_id_) |
3478 | 2.50k | .tag("inverted index v2 path", |
3479 | 2.50k | inverted_index_path_v2(tablet_id, rowset_id, i)); |
3480 | 2.50k | } |
3481 | 2.50k | file_paths.push_back(inverted_index_path_v2(tablet_id, rowset_id, i)); |
3482 | 2.50k | } |
3483 | 270k | } |
3484 | 54.1k | } |
3485 | | |
3486 | 92 | SyncExecutor<int> concurrent_delete_executor(_thread_pool_group.s3_producer_pool, |
3487 | 92 | "delete_rowset_data", |
3488 | 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 | 3488 | 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 | 3488 | 50 | [](const int& ret) { return ret != 0; }); |
|
3489 | 92 | for (auto& [resource_id, file_paths] : resource_file_paths) { |
3490 | 50 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { |
3491 | 50 | DCHECK(accessor_map_.count(*rid)) |
3492 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ |
3493 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; |
3494 | 50 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", |
3495 | 50 | &accessor_map_); |
3496 | 50 | if (!accessor_map_.contains(*rid)) { |
3497 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") |
3498 | 0 | .tag("resource_id", resource_id) |
3499 | 0 | .tag("instance_id", instance_id_); |
3500 | 0 | return -1; |
3501 | 0 | } |
3502 | 50 | auto& accessor = accessor_map_[*rid]; |
3503 | 50 | int ret = accessor->delete_files(*paths); |
3504 | 50 | if (!ret) { |
3505 | | // deduplication of different files with the same rowset id |
3506 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat |
3507 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx |
3508 | 50 | std::set<std::string> deleted_rowset_id; |
3509 | | |
3510 | 50 | std::for_each(paths->begin(), paths->end(), |
3511 | 50 | [&metrics_context, &rowsets, &deleted_rowset_id, |
3512 | 860k | this](const std::string& path) { |
3513 | 860k | std::vector<std::string> str; |
3514 | 860k | butil::SplitString(path, '/', &str); |
3515 | 860k | std::string rowset_id; |
3516 | 860k | if (auto pos = str.back().find('_'); pos != std::string::npos) { |
3517 | 858k | rowset_id = str.back().substr(0, pos); |
3518 | 858k | } else { |
3519 | 2.31k | if (path.find("packed_file/") != std::string::npos) { |
3520 | 0 | return; // packed files do not have rowset_id encoded |
3521 | 0 | } |
3522 | 2.31k | LOG(WARNING) << "failed to parse rowset_id, path=" << path; |
3523 | 2.31k | return; |
3524 | 2.31k | } |
3525 | 858k | auto rs_meta = rowsets.find(rowset_id); |
3526 | 858k | if (rs_meta != rowsets.end() && |
3527 | 862k | !deleted_rowset_id.contains(rowset_id)) { |
3528 | 54.1k | deleted_rowset_id.emplace(rowset_id); |
3529 | 54.1k | metrics_context.total_recycled_data_size += |
3530 | 54.1k | rs_meta->second.total_disk_size(); |
3531 | 54.1k | segment_metrics_context_.total_recycled_num += |
3532 | 54.1k | rs_meta->second.num_segments(); |
3533 | 54.1k | segment_metrics_context_.total_recycled_data_size += |
3534 | 54.1k | rs_meta->second.total_disk_size(); |
3535 | 54.1k | metrics_context.total_recycled_num++; |
3536 | 54.1k | } |
3537 | 858k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEvENKUlRSD_E_clESN_ Line | Count | Source | 3512 | 14 | this](const std::string& path) { | 3513 | 14 | std::vector<std::string> str; | 3514 | 14 | butil::SplitString(path, '/', &str); | 3515 | 14 | std::string rowset_id; | 3516 | 14 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3517 | 14 | rowset_id = str.back().substr(0, pos); | 3518 | 14 | } else { | 3519 | 0 | if (path.find("packed_file/") != std::string::npos) { | 3520 | 0 | return; // packed files do not have rowset_id encoded | 3521 | 0 | } | 3522 | 0 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3523 | 0 | return; | 3524 | 0 | } | 3525 | 14 | auto rs_meta = rowsets.find(rowset_id); | 3526 | 14 | if (rs_meta != rowsets.end() && | 3527 | 14 | !deleted_rowset_id.contains(rowset_id)) { | 3528 | 7 | deleted_rowset_id.emplace(rowset_id); | 3529 | 7 | metrics_context.total_recycled_data_size += | 3530 | 7 | rs_meta->second.total_disk_size(); | 3531 | 7 | segment_metrics_context_.total_recycled_num += | 3532 | 7 | rs_meta->second.num_segments(); | 3533 | 7 | segment_metrics_context_.total_recycled_data_size += | 3534 | 7 | rs_meta->second.total_disk_size(); | 3535 | 7 | metrics_context.total_recycled_num++; | 3536 | 7 | } | 3537 | 14 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEvENKUlRSD_E_clESN_ Line | Count | Source | 3512 | 860k | this](const std::string& path) { | 3513 | 860k | std::vector<std::string> str; | 3514 | 860k | butil::SplitString(path, '/', &str); | 3515 | 860k | std::string rowset_id; | 3516 | 860k | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3517 | 858k | rowset_id = str.back().substr(0, pos); | 3518 | 858k | } else { | 3519 | 2.31k | if (path.find("packed_file/") != std::string::npos) { | 3520 | 0 | return; // packed files do not have rowset_id encoded | 3521 | 0 | } | 3522 | 2.31k | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3523 | 2.31k | return; | 3524 | 2.31k | } | 3525 | 858k | auto rs_meta = rowsets.find(rowset_id); | 3526 | 858k | if (rs_meta != rowsets.end() && | 3527 | 862k | !deleted_rowset_id.contains(rowset_id)) { | 3528 | 54.1k | deleted_rowset_id.emplace(rowset_id); | 3529 | 54.1k | metrics_context.total_recycled_data_size += | 3530 | 54.1k | rs_meta->second.total_disk_size(); | 3531 | 54.1k | segment_metrics_context_.total_recycled_num += | 3532 | 54.1k | rs_meta->second.num_segments(); | 3533 | 54.1k | segment_metrics_context_.total_recycled_data_size += | 3534 | 54.1k | rs_meta->second.total_disk_size(); | 3535 | 54.1k | metrics_context.total_recycled_num++; | 3536 | 54.1k | } | 3537 | 858k | }); |
|
3538 | 50 | segment_metrics_context_.report(); |
3539 | 50 | metrics_context.report(); |
3540 | 50 | } |
3541 | 50 | return ret; |
3542 | 50 | }); recycler.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3490 | 5 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { | 3491 | 5 | DCHECK(accessor_map_.count(*rid)) | 3492 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ | 3493 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; | 3494 | 5 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", | 3495 | 5 | &accessor_map_); | 3496 | 5 | if (!accessor_map_.contains(*rid)) { | 3497 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") | 3498 | 0 | .tag("resource_id", resource_id) | 3499 | 0 | .tag("instance_id", instance_id_); | 3500 | 0 | return -1; | 3501 | 0 | } | 3502 | 5 | auto& accessor = accessor_map_[*rid]; | 3503 | 5 | int ret = accessor->delete_files(*paths); | 3504 | 5 | if (!ret) { | 3505 | | // deduplication of different files with the same rowset id | 3506 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat | 3507 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx | 3508 | 5 | std::set<std::string> deleted_rowset_id; | 3509 | | | 3510 | 5 | std::for_each(paths->begin(), paths->end(), | 3511 | 5 | [&metrics_context, &rowsets, &deleted_rowset_id, | 3512 | 5 | this](const std::string& path) { | 3513 | 5 | std::vector<std::string> str; | 3514 | 5 | butil::SplitString(path, '/', &str); | 3515 | 5 | std::string rowset_id; | 3516 | 5 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3517 | 5 | rowset_id = str.back().substr(0, pos); | 3518 | 5 | } else { | 3519 | 5 | if (path.find("packed_file/") != std::string::npos) { | 3520 | 5 | return; // packed files do not have rowset_id encoded | 3521 | 5 | } | 3522 | 5 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3523 | 5 | return; | 3524 | 5 | } | 3525 | 5 | auto rs_meta = rowsets.find(rowset_id); | 3526 | 5 | if (rs_meta != rowsets.end() && | 3527 | 5 | !deleted_rowset_id.contains(rowset_id)) { | 3528 | 5 | deleted_rowset_id.emplace(rowset_id); | 3529 | 5 | metrics_context.total_recycled_data_size += | 3530 | 5 | rs_meta->second.total_disk_size(); | 3531 | 5 | segment_metrics_context_.total_recycled_num += | 3532 | 5 | rs_meta->second.num_segments(); | 3533 | 5 | segment_metrics_context_.total_recycled_data_size += | 3534 | 5 | rs_meta->second.total_disk_size(); | 3535 | 5 | metrics_context.total_recycled_num++; | 3536 | 5 | } | 3537 | 5 | }); | 3538 | 5 | segment_metrics_context_.report(); | 3539 | 5 | metrics_context.report(); | 3540 | 5 | } | 3541 | 5 | return ret; | 3542 | 5 | }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler18delete_rowset_dataERKSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_17RowsetMetaCloudPBESt4lessIS8_ESaISt4pairIKS8_S9_EEENS0_20RowsetRecyclingStateERNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3490 | 45 | concurrent_delete_executor.add([&, rid = &resource_id, paths = &file_paths]() -> int { | 3491 | 45 | DCHECK(accessor_map_.count(*rid)) | 3492 | 0 | << "uninitilized accessor, instance_id=" << instance_id_ | 3493 | 0 | << " resource_id=" << resource_id << " path[0]=" << (*paths)[0]; | 3494 | 45 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::delete_rowset_data.no_resource_id", | 3495 | 45 | &accessor_map_); | 3496 | 45 | if (!accessor_map_.contains(*rid)) { | 3497 | 0 | LOG_WARNING("delete rowset data accessor_map_ does not contains resouce id") | 3498 | 0 | .tag("resource_id", resource_id) | 3499 | 0 | .tag("instance_id", instance_id_); | 3500 | 0 | return -1; | 3501 | 0 | } | 3502 | 45 | auto& accessor = accessor_map_[*rid]; | 3503 | 45 | int ret = accessor->delete_files(*paths); | 3504 | 45 | if (!ret) { | 3505 | | // deduplication of different files with the same rowset id | 3506 | | // 020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.dat | 3507 | | //020000000000007fd045a62bc87a6587dd7ac274aa36e5a9_0.idx | 3508 | 45 | std::set<std::string> deleted_rowset_id; | 3509 | | | 3510 | 45 | std::for_each(paths->begin(), paths->end(), | 3511 | 45 | [&metrics_context, &rowsets, &deleted_rowset_id, | 3512 | 45 | this](const std::string& path) { | 3513 | 45 | std::vector<std::string> str; | 3514 | 45 | butil::SplitString(path, '/', &str); | 3515 | 45 | std::string rowset_id; | 3516 | 45 | if (auto pos = str.back().find('_'); pos != std::string::npos) { | 3517 | 45 | rowset_id = str.back().substr(0, pos); | 3518 | 45 | } else { | 3519 | 45 | if (path.find("packed_file/") != std::string::npos) { | 3520 | 45 | return; // packed files do not have rowset_id encoded | 3521 | 45 | } | 3522 | 45 | LOG(WARNING) << "failed to parse rowset_id, path=" << path; | 3523 | 45 | return; | 3524 | 45 | } | 3525 | 45 | auto rs_meta = rowsets.find(rowset_id); | 3526 | 45 | if (rs_meta != rowsets.end() && | 3527 | 45 | !deleted_rowset_id.contains(rowset_id)) { | 3528 | 45 | deleted_rowset_id.emplace(rowset_id); | 3529 | 45 | metrics_context.total_recycled_data_size += | 3530 | 45 | rs_meta->second.total_disk_size(); | 3531 | 45 | segment_metrics_context_.total_recycled_num += | 3532 | 45 | rs_meta->second.num_segments(); | 3533 | 45 | segment_metrics_context_.total_recycled_data_size += | 3534 | 45 | rs_meta->second.total_disk_size(); | 3535 | 45 | metrics_context.total_recycled_num++; | 3536 | 45 | } | 3537 | 45 | }); | 3538 | 45 | segment_metrics_context_.report(); | 3539 | 45 | metrics_context.report(); | 3540 | 45 | } | 3541 | 45 | return ret; | 3542 | 45 | }); |
|
3543 | 50 | } |
3544 | 92 | for (const auto& [resource_id, tablet_id, rowset_id] : rowsets_delete_by_prefix) { |
3545 | 5 | LOG_INFO( |
3546 | 5 | "delete rowset {} by prefix because it's in BEGIN_PARTIAL_UPDATE state, " |
3547 | 5 | "resource_id={}, tablet_id={}, instance_id={}, task_type={}", |
3548 | 5 | rowset_id, resource_id, tablet_id, instance_id_, metrics_context.operation_type); |
3549 | 5 | concurrent_delete_executor.add([&]() -> int { |
3550 | 5 | int ret = delete_rowset_data(resource_id, tablet_id, rowset_id); |
3551 | 5 | if (!ret) { |
3552 | 5 | auto rs = rowsets.at(rowset_id); |
3553 | 5 | metrics_context.total_recycled_data_size += rs.total_disk_size(); |
3554 | 5 | metrics_context.total_recycled_num++; |
3555 | 5 | segment_metrics_context_.total_recycled_data_size += rs.total_disk_size(); |
3556 | 5 | segment_metrics_context_.total_recycled_num += rs.num_segments(); |
3557 | 5 | metrics_context.report(); |
3558 | 5 | segment_metrics_context_.report(); |
3559 | 5 | } |
3560 | 5 | return ret; |
3561 | 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 | 3549 | 5 | concurrent_delete_executor.add([&]() -> int { | 3550 | 5 | int ret = delete_rowset_data(resource_id, tablet_id, rowset_id); | 3551 | 5 | if (!ret) { | 3552 | 5 | auto rs = rowsets.at(rowset_id); | 3553 | 5 | metrics_context.total_recycled_data_size += rs.total_disk_size(); | 3554 | 5 | metrics_context.total_recycled_num++; | 3555 | 5 | segment_metrics_context_.total_recycled_data_size += rs.total_disk_size(); | 3556 | 5 | segment_metrics_context_.total_recycled_num += rs.num_segments(); | 3557 | 5 | metrics_context.report(); | 3558 | 5 | segment_metrics_context_.report(); | 3559 | 5 | } | 3560 | 5 | return ret; | 3561 | 5 | }); |
|
3562 | 5 | } |
3563 | | |
3564 | 92 | bool finished = true; |
3565 | 92 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
3566 | 92 | for (int r : rets) { |
3567 | 55 | if (r != 0) { |
3568 | 0 | ret = -1; |
3569 | 0 | break; |
3570 | 0 | } |
3571 | 55 | } |
3572 | 92 | ret = finished ? ret : -1; |
3573 | 92 | return ret; |
3574 | 92 | } |
3575 | | |
3576 | | int InstanceRecycler::delete_rowset_data(const std::string& resource_id, int64_t tablet_id, |
3577 | 3.30k | const std::string& rowset_id) { |
3578 | 3.30k | auto it = accessor_map_.find(resource_id); |
3579 | 3.30k | if (it == accessor_map_.end()) { |
3580 | 400 | LOG_WARNING("instance has no such resource id") |
3581 | 400 | .tag("instance_id", instance_id_) |
3582 | 400 | .tag("resource_id", resource_id) |
3583 | 400 | .tag("tablet_id", tablet_id) |
3584 | 400 | .tag("rowset_id", rowset_id); |
3585 | 400 | return -1; |
3586 | 400 | } |
3587 | 2.90k | auto& accessor = it->second; |
3588 | 2.90k | return accessor->delete_prefix(rowset_path_prefix(tablet_id, rowset_id)); |
3589 | 3.30k | } |
3590 | | |
3591 | 4 | bool InstanceRecycler::decode_packed_file_key(std::string_view key, std::string* packed_path) { |
3592 | 4 | if (key.empty()) { |
3593 | 0 | return false; |
3594 | 0 | } |
3595 | 4 | std::string_view key_view = key; |
3596 | 4 | key_view.remove_prefix(1); // remove keyspace prefix |
3597 | 4 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> decoded; |
3598 | 4 | if (decode_key(&key_view, &decoded) != 0) { |
3599 | 0 | return false; |
3600 | 0 | } |
3601 | 4 | if (decoded.size() < 4) { |
3602 | 0 | return false; |
3603 | 0 | } |
3604 | 4 | try { |
3605 | 4 | *packed_path = std::get<std::string>(std::get<0>(decoded.back())); |
3606 | 4 | } catch (const std::bad_variant_access&) { |
3607 | 0 | return false; |
3608 | 0 | } |
3609 | 4 | return true; |
3610 | 4 | } |
3611 | | |
3612 | 14 | int InstanceRecycler::recycle_packed_files() { |
3613 | 14 | const std::string task_name = "recycle_packed_files"; |
3614 | 14 | auto start_tp = steady_clock::now(); |
3615 | 14 | int64_t start_time = duration_cast<seconds>(start_tp.time_since_epoch()).count(); |
3616 | 14 | int ret = 0; |
3617 | 14 | PackedFileRecycleStats stats; |
3618 | | |
3619 | 14 | register_recycle_task(task_name, start_time); |
3620 | 14 | DORIS_CLOUD_DEFER { |
3621 | 14 | unregister_recycle_task(task_name); |
3622 | 14 | int64_t cost = |
3623 | 14 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
3624 | 14 | int64_t cost_ms = duration_cast<milliseconds>(steady_clock::now() - start_tp).count(); |
3625 | 14 | g_bvar_recycler_packed_file_recycled_kv_num.put(instance_id_, stats.num_deleted); |
3626 | 14 | g_bvar_recycler_packed_file_recycled_kv_bytes.put(instance_id_, stats.bytes_deleted); |
3627 | 14 | g_bvar_recycler_packed_file_recycle_cost_ms.put(instance_id_, cost_ms); |
3628 | 14 | g_bvar_recycler_packed_file_scanned_kv_num.put(instance_id_, stats.num_scanned); |
3629 | 14 | g_bvar_recycler_packed_file_corrected_kv_num.put(instance_id_, stats.num_corrected); |
3630 | 14 | g_bvar_recycler_packed_file_recycled_object_num.put(instance_id_, stats.num_object_deleted); |
3631 | 14 | g_bvar_recycler_packed_file_bytes_object_deleted.put(instance_id_, |
3632 | 14 | stats.bytes_object_deleted); |
3633 | 14 | g_bvar_recycler_packed_file_rowset_scanned_num.put(instance_id_, stats.rowset_scan_count); |
3634 | 14 | LOG_INFO("recycle packed files finished, cost={}s", cost) |
3635 | 14 | .tag("instance_id", instance_id_) |
3636 | 14 | .tag("num_scanned", stats.num_scanned) |
3637 | 14 | .tag("num_corrected", stats.num_corrected) |
3638 | 14 | .tag("num_deleted", stats.num_deleted) |
3639 | 14 | .tag("num_failed", stats.num_failed) |
3640 | 14 | .tag("num_objects_deleted", stats.num_object_deleted) |
3641 | 14 | .tag("bytes_object_deleted", stats.bytes_object_deleted) |
3642 | 14 | .tag("rowset_scan_count", stats.rowset_scan_count) |
3643 | 14 | .tag("bytes_deleted", stats.bytes_deleted) |
3644 | 14 | .tag("ret", ret); |
3645 | 14 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_packed_filesEvENK3$_0clEv Line | Count | Source | 3620 | 14 | DORIS_CLOUD_DEFER { | 3621 | 14 | unregister_recycle_task(task_name); | 3622 | 14 | int64_t cost = | 3623 | 14 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 3624 | 14 | int64_t cost_ms = duration_cast<milliseconds>(steady_clock::now() - start_tp).count(); | 3625 | 14 | g_bvar_recycler_packed_file_recycled_kv_num.put(instance_id_, stats.num_deleted); | 3626 | 14 | g_bvar_recycler_packed_file_recycled_kv_bytes.put(instance_id_, stats.bytes_deleted); | 3627 | 14 | g_bvar_recycler_packed_file_recycle_cost_ms.put(instance_id_, cost_ms); | 3628 | 14 | g_bvar_recycler_packed_file_scanned_kv_num.put(instance_id_, stats.num_scanned); | 3629 | 14 | g_bvar_recycler_packed_file_corrected_kv_num.put(instance_id_, stats.num_corrected); | 3630 | 14 | g_bvar_recycler_packed_file_recycled_object_num.put(instance_id_, stats.num_object_deleted); | 3631 | 14 | g_bvar_recycler_packed_file_bytes_object_deleted.put(instance_id_, | 3632 | 14 | stats.bytes_object_deleted); | 3633 | 14 | g_bvar_recycler_packed_file_rowset_scanned_num.put(instance_id_, stats.rowset_scan_count); | 3634 | 14 | LOG_INFO("recycle packed files finished, cost={}s", cost) | 3635 | 14 | .tag("instance_id", instance_id_) | 3636 | 14 | .tag("num_scanned", stats.num_scanned) | 3637 | 14 | .tag("num_corrected", stats.num_corrected) | 3638 | 14 | .tag("num_deleted", stats.num_deleted) | 3639 | 14 | .tag("num_failed", stats.num_failed) | 3640 | 14 | .tag("num_objects_deleted", stats.num_object_deleted) | 3641 | 14 | .tag("bytes_object_deleted", stats.bytes_object_deleted) | 3642 | 14 | .tag("rowset_scan_count", stats.rowset_scan_count) | 3643 | 14 | .tag("bytes_deleted", stats.bytes_deleted) | 3644 | 14 | .tag("ret", ret); | 3645 | 14 | }; |
|
3646 | | |
3647 | 14 | auto recycle_func = [this, &stats, &ret](auto&& key, auto&& value) { |
3648 | 4 | return handle_packed_file_kv(std::forward<decltype(key)>(key), |
3649 | 4 | std::forward<decltype(value)>(value), &stats, &ret); |
3650 | 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 | 3647 | 4 | auto recycle_func = [this, &stats, &ret](auto&& key, auto&& value) { | 3648 | 4 | return handle_packed_file_kv(std::forward<decltype(key)>(key), | 3649 | 4 | std::forward<decltype(value)>(value), &stats, &ret); | 3650 | 4 | }; |
|
3651 | | |
3652 | 14 | LOG_INFO("begin to recycle packed file").tag("instance_id", instance_id_); |
3653 | | |
3654 | 14 | std::string begin = packed_file_key({instance_id_, ""}); |
3655 | 14 | std::string end = packed_file_key({instance_id_, "\xff"}); |
3656 | 14 | if (scan_and_recycle(begin, end, recycle_func) != 0) { |
3657 | 0 | ret = -1; |
3658 | 0 | } |
3659 | | |
3660 | 14 | return ret; |
3661 | 14 | } |
3662 | | |
3663 | | int InstanceRecycler::scan_tablets_and_statistics(int64_t table_id, int64_t index_id, |
3664 | | RecyclerMetricsContext& metrics_context, |
3665 | 0 | int64_t partition_id, bool is_empty_tablet) { |
3666 | 0 | std::string tablet_key_begin, tablet_key_end; |
3667 | |
|
3668 | 0 | if (partition_id > 0) { |
3669 | 0 | meta_tablet_key({instance_id_, table_id, index_id, partition_id, 0}, &tablet_key_begin); |
3670 | 0 | meta_tablet_key({instance_id_, table_id, index_id, partition_id + 1, 0}, &tablet_key_end); |
3671 | 0 | } else { |
3672 | 0 | meta_tablet_key({instance_id_, table_id, index_id, 0, 0}, &tablet_key_begin); |
3673 | 0 | meta_tablet_key({instance_id_, table_id, index_id + 1, 0, 0}, &tablet_key_end); |
3674 | 0 | } |
3675 | | // for calculate the total num or bytes of recyled objects |
3676 | 0 | auto scan_and_statistics = [&, is_empty_tablet, this](std::string_view k, |
3677 | 0 | std::string_view v) -> int { |
3678 | 0 | doris::TabletMetaCloudPB tablet_meta_pb; |
3679 | 0 | if (!tablet_meta_pb.ParseFromArray(v.data(), v.size())) { |
3680 | 0 | return 0; |
3681 | 0 | } |
3682 | 0 | int64_t tablet_id = tablet_meta_pb.tablet_id(); |
3683 | |
|
3684 | 0 | if (!check_lazy_txn_finished(txn_kv_, instance_id_, tablet_meta_pb.tablet_id())) { |
3685 | 0 | return 0; |
3686 | 0 | } |
3687 | | |
3688 | 0 | if (!is_empty_tablet) { |
3689 | 0 | if (scan_tablet_and_statistics(tablet_id, metrics_context) != 0) { |
3690 | 0 | return 0; |
3691 | 0 | } |
3692 | 0 | tablet_metrics_context_.total_need_recycle_num++; |
3693 | 0 | } |
3694 | 0 | return 0; |
3695 | 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_ |
3696 | 0 | int ret = scan_and_recycle(tablet_key_begin, tablet_key_end, std::move(scan_and_statistics)); |
3697 | 0 | metrics_context.report(true); |
3698 | 0 | tablet_metrics_context_.report(true); |
3699 | 0 | segment_metrics_context_.report(true); |
3700 | 0 | return ret; |
3701 | 0 | } |
3702 | | |
3703 | | int InstanceRecycler::scan_tablet_and_statistics(int64_t tablet_id, |
3704 | 0 | RecyclerMetricsContext& metrics_context) { |
3705 | 0 | int ret = 0; |
3706 | 0 | std::map<std::string, RowsetMetaCloudPB> rowset_meta_map; |
3707 | 0 | std::unique_ptr<Transaction> txn; |
3708 | 0 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
3709 | 0 | LOG_WARNING("failed to recycle tablet ") |
3710 | 0 | .tag("tablet id", tablet_id) |
3711 | 0 | .tag("instance_id", instance_id_) |
3712 | 0 | .tag("reason", "failed to create txn"); |
3713 | 0 | ret = -1; |
3714 | 0 | } |
3715 | 0 | GetRowsetResponse resp; |
3716 | 0 | std::string msg; |
3717 | 0 | MetaServiceCode code = MetaServiceCode::OK; |
3718 | | // get rowsets in tablet |
3719 | 0 | internal_get_rowset(txn.get(), 0, std::numeric_limits<int64_t>::max() - 1, instance_id_, |
3720 | 0 | tablet_id, code, msg, &resp); |
3721 | 0 | if (code != MetaServiceCode::OK) { |
3722 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
3723 | 0 | .tag("tablet id", tablet_id) |
3724 | 0 | .tag("msg", msg) |
3725 | 0 | .tag("code", code) |
3726 | 0 | .tag("instance id", instance_id_); |
3727 | 0 | ret = -1; |
3728 | 0 | } |
3729 | 0 | for (const auto& rs_meta : resp.rowset_meta()) { |
3730 | | /* |
3731 | | * For compatibility, we skip the loop for [0-1] here. |
3732 | | * The purpose of this loop is to delete object files, |
3733 | | * and since [0-1] only has meta and doesn't have object files, |
3734 | | * skipping it doesn't affect system correctness. |
3735 | | * |
3736 | | * If not skipped, the check "if (!rs_meta.has_resource_id())" below |
3737 | | * would return error -1 directly, causing the recycle operation to fail. |
3738 | | * |
3739 | | * [0-1] doesn't have resource id is a bug. |
3740 | | * In the future, we will fix this problem, after that, |
3741 | | * we can remove this if statement. |
3742 | | * |
3743 | | * TODO(Yukang-Lian): remove this if statement when [0-1] has resource id in the future. |
3744 | | */ |
3745 | |
|
3746 | 0 | if (rs_meta.end_version() == 1) { |
3747 | | // Assert that [0-1] has no resource_id to make sure |
3748 | | // this if statement will not be forgetted to remove |
3749 | | // when the resource id bug is fixed |
3750 | 0 | DCHECK(!rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3751 | 0 | continue; |
3752 | 0 | } |
3753 | 0 | if (!rs_meta.has_resource_id()) { |
3754 | 0 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3755 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3756 | 0 | .tag("instance_id", instance_id_) |
3757 | 0 | .tag("tablet_id", tablet_id); |
3758 | 0 | continue; |
3759 | 0 | } |
3760 | 0 | DCHECK(rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3761 | 0 | auto it = accessor_map_.find(rs_meta.resource_id()); |
3762 | | // possible if the accessor is not initilized correctly |
3763 | 0 | if (it == accessor_map_.end()) [[unlikely]] { |
3764 | 0 | LOG_WARNING( |
3765 | 0 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3766 | 0 | "recycle process") |
3767 | 0 | .tag("tablet id", tablet_id) |
3768 | 0 | .tag("instance_id", instance_id_) |
3769 | 0 | .tag("resource_id", rs_meta.resource_id()) |
3770 | 0 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3771 | 0 | continue; |
3772 | 0 | } |
3773 | | |
3774 | 0 | metrics_context.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3775 | 0 | tablet_metrics_context_.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3776 | 0 | segment_metrics_context_.total_need_recycle_data_size += rs_meta.total_disk_size(); |
3777 | 0 | segment_metrics_context_.total_need_recycle_num += rs_meta.num_segments(); |
3778 | 0 | } |
3779 | 0 | return ret; |
3780 | 0 | } |
3781 | | |
3782 | 4.25k | int InstanceRecycler::recycle_tablet(int64_t tablet_id, RecyclerMetricsContext& metrics_context) { |
3783 | 4.25k | LOG_INFO("begin to recycle rowsets in a dropped tablet") |
3784 | 4.25k | .tag("instance_id", instance_id_) |
3785 | 4.25k | .tag("tablet_id", tablet_id); |
3786 | | |
3787 | 4.25k | if (should_recycle_versioned_keys()) { |
3788 | 11 | int ret = recycle_versioned_tablet(tablet_id, metrics_context); |
3789 | 11 | if (ret != 0) { |
3790 | 0 | return ret; |
3791 | 0 | } |
3792 | | // Continue to recycle non-versioned rowsets, if multi-version is set to DISABLED |
3793 | | // during the recycle_versioned_tablet process. |
3794 | | // |
3795 | | // .. And remove restore job rowsets of this tablet too |
3796 | 11 | } |
3797 | | |
3798 | 4.25k | int ret = 0; |
3799 | 4.25k | auto start_time = steady_clock::now(); |
3800 | | |
3801 | 4.25k | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::begin", (int)0); |
3802 | | |
3803 | | // collect resource ids |
3804 | 248 | std::string rs_key0 = meta_rowset_key({instance_id_, tablet_id, 0}); |
3805 | 248 | std::string rs_key1 = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
3806 | 248 | std::string recyc_rs_key0 = recycle_rowset_key({instance_id_, tablet_id, ""}); |
3807 | 248 | std::string recyc_rs_key1 = recycle_rowset_key({instance_id_, tablet_id + 1, ""}); |
3808 | 248 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); |
3809 | 248 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); |
3810 | | |
3811 | 248 | std::set<std::string> resource_ids; |
3812 | 248 | int64_t recycle_rowsets_number = 0; |
3813 | 248 | int64_t recycle_segments_number = 0; |
3814 | 248 | int64_t recycle_rowsets_data_size = 0; |
3815 | 248 | int64_t recycle_rowsets_index_size = 0; |
3816 | 248 | int64_t recycle_restore_job_rowsets_number = 0; |
3817 | 248 | int64_t recycle_restore_job_segments_number = 0; |
3818 | 248 | int64_t recycle_restore_job_rowsets_data_size = 0; |
3819 | 248 | int64_t recycle_restore_job_rowsets_index_size = 0; |
3820 | 248 | int64_t max_rowset_version = 0; |
3821 | 248 | int64_t min_rowset_creation_time = INT64_MAX; |
3822 | 248 | int64_t max_rowset_creation_time = 0; |
3823 | 248 | int64_t min_rowset_expiration_time = INT64_MAX; |
3824 | 248 | int64_t max_rowset_expiration_time = 0; |
3825 | | |
3826 | 248 | DORIS_CLOUD_DEFER { |
3827 | 248 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
3828 | 248 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) |
3829 | 248 | .tag("instance_id", instance_id_) |
3830 | 248 | .tag("tablet_id", tablet_id) |
3831 | 248 | .tag("recycle rowsets number", recycle_rowsets_number) |
3832 | 248 | .tag("recycle segments number", recycle_segments_number) |
3833 | 248 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) |
3834 | 248 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) |
3835 | 248 | .tag("recycle restore job rowsets number", recycle_restore_job_rowsets_number) |
3836 | 248 | .tag("recycle restore job segments number", recycle_restore_job_segments_number) |
3837 | 248 | .tag("all restore job rowsets recycle data size", |
3838 | 248 | recycle_restore_job_rowsets_data_size) |
3839 | 248 | .tag("all restore job rowsets recycle index size", |
3840 | 248 | recycle_restore_job_rowsets_index_size) |
3841 | 248 | .tag("max rowset version", max_rowset_version) |
3842 | 248 | .tag("min rowset creation time", min_rowset_creation_time) |
3843 | 248 | .tag("max rowset creation time", max_rowset_creation_time) |
3844 | 248 | .tag("min rowset expiration time", min_rowset_expiration_time) |
3845 | 248 | .tag("max rowset expiration time", max_rowset_expiration_time) |
3846 | 248 | .tag("task type", metrics_context.operation_type) |
3847 | 248 | .tag("ret", ret); |
3848 | 248 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 3826 | 248 | DORIS_CLOUD_DEFER { | 3827 | 248 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 3828 | 248 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) | 3829 | 248 | .tag("instance_id", instance_id_) | 3830 | 248 | .tag("tablet_id", tablet_id) | 3831 | 248 | .tag("recycle rowsets number", recycle_rowsets_number) | 3832 | 248 | .tag("recycle segments number", recycle_segments_number) | 3833 | 248 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) | 3834 | 248 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) | 3835 | 248 | .tag("recycle restore job rowsets number", recycle_restore_job_rowsets_number) | 3836 | 248 | .tag("recycle restore job segments number", recycle_restore_job_segments_number) | 3837 | 248 | .tag("all restore job rowsets recycle data size", | 3838 | 248 | recycle_restore_job_rowsets_data_size) | 3839 | 248 | .tag("all restore job rowsets recycle index size", | 3840 | 248 | recycle_restore_job_rowsets_index_size) | 3841 | 248 | .tag("max rowset version", max_rowset_version) | 3842 | 248 | .tag("min rowset creation time", min_rowset_creation_time) | 3843 | 248 | .tag("max rowset creation time", max_rowset_creation_time) | 3844 | 248 | .tag("min rowset expiration time", min_rowset_expiration_time) | 3845 | 248 | .tag("max rowset expiration time", max_rowset_expiration_time) | 3846 | 248 | .tag("task type", metrics_context.operation_type) | 3847 | 248 | .tag("ret", ret); | 3848 | 248 | }; |
|
3849 | | |
3850 | 248 | std::unique_ptr<Transaction> txn; |
3851 | 248 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
3852 | 0 | LOG_WARNING("failed to recycle tablet ") |
3853 | 0 | .tag("tablet id", tablet_id) |
3854 | 0 | .tag("instance_id", instance_id_) |
3855 | 0 | .tag("reason", "failed to create txn"); |
3856 | 0 | ret = -1; |
3857 | 0 | } |
3858 | 248 | GetRowsetResponse resp; |
3859 | 248 | std::string msg; |
3860 | 248 | MetaServiceCode code = MetaServiceCode::OK; |
3861 | | // get rowsets in tablet |
3862 | 248 | internal_get_rowset(txn.get(), 0, std::numeric_limits<int64_t>::max() - 1, instance_id_, |
3863 | 248 | tablet_id, code, msg, &resp); |
3864 | 248 | if (code != MetaServiceCode::OK) { |
3865 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
3866 | 0 | .tag("tablet id", tablet_id) |
3867 | 0 | .tag("msg", msg) |
3868 | 0 | .tag("code", code) |
3869 | 0 | .tag("instance id", instance_id_); |
3870 | 0 | ret = -1; |
3871 | 0 | } |
3872 | 248 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_tablet.create_rowset_meta", &resp); |
3873 | | |
3874 | 2.51k | for (const auto& rs_meta : resp.rowset_meta()) { |
3875 | | // The rowset has no resource id and segments when it was generated by compaction |
3876 | | // with multiple hole rowsets or it's version is [0-1], so we can skip it. |
3877 | 2.51k | if (!rs_meta.has_resource_id() && rs_meta.num_segments() == 0) { |
3878 | 0 | LOG_INFO("rowset meta does not have a resource id and no segments, skip this rowset") |
3879 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3880 | 0 | .tag("instance_id", instance_id_) |
3881 | 0 | .tag("tablet_id", tablet_id); |
3882 | 0 | recycle_rowsets_number += 1; |
3883 | 0 | continue; |
3884 | 0 | } |
3885 | 2.51k | if (!rs_meta.has_resource_id()) { |
3886 | 1 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3887 | 1 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3888 | 1 | .tag("instance_id", instance_id_) |
3889 | 1 | .tag("tablet_id", tablet_id); |
3890 | 1 | return -1; |
3891 | 1 | } |
3892 | 18.4E | DCHECK(rs_meta.has_resource_id()) << "rs_meta" << rs_meta.ShortDebugString(); |
3893 | 2.51k | auto it = accessor_map_.find(rs_meta.resource_id()); |
3894 | | // possible if the accessor is not initilized correctly |
3895 | 2.51k | if (it == accessor_map_.end()) [[unlikely]] { |
3896 | 1 | LOG_WARNING( |
3897 | 1 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3898 | 1 | "recycle process") |
3899 | 1 | .tag("tablet id", tablet_id) |
3900 | 1 | .tag("instance_id", instance_id_) |
3901 | 1 | .tag("resource_id", rs_meta.resource_id()) |
3902 | 1 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3903 | 1 | return -1; |
3904 | 1 | } |
3905 | 2.51k | if (decrement_packed_file_ref_counts(rs_meta) != 0) { |
3906 | 0 | LOG_WARNING("failed to update packed file info when recycling tablet") |
3907 | 0 | .tag("instance_id", instance_id_) |
3908 | 0 | .tag("tablet_id", tablet_id) |
3909 | 0 | .tag("rowset_id", rs_meta.rowset_id_v2()); |
3910 | 0 | return -1; |
3911 | 0 | } |
3912 | 2.51k | recycle_rowsets_number += 1; |
3913 | 2.51k | recycle_segments_number += rs_meta.num_segments(); |
3914 | 2.51k | recycle_rowsets_data_size += rs_meta.data_disk_size(); |
3915 | 2.51k | recycle_rowsets_index_size += rs_meta.index_disk_size(); |
3916 | 2.51k | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); |
3917 | 2.51k | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); |
3918 | 2.51k | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); |
3919 | 2.51k | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); |
3920 | 2.51k | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); |
3921 | 2.51k | resource_ids.emplace(rs_meta.resource_id()); |
3922 | 2.51k | } |
3923 | | |
3924 | | // get restore job rowset in tablet |
3925 | 246 | std::vector<std::pair<std::string, doris::RowsetMetaCloudPB>> restore_job_rs_metas; |
3926 | 246 | scan_restore_job_rowset(txn.get(), instance_id_, tablet_id, code, msg, &restore_job_rs_metas); |
3927 | 246 | if (code != MetaServiceCode::OK) { |
3928 | 0 | LOG_WARNING("scan restore job rowsets failed when recycle tablet") |
3929 | 0 | .tag("tablet id", tablet_id) |
3930 | 0 | .tag("msg", msg) |
3931 | 0 | .tag("code", code) |
3932 | 0 | .tag("instance id", instance_id_); |
3933 | 0 | return -1; |
3934 | 0 | } |
3935 | | |
3936 | 246 | for (auto& [_, rs_meta] : restore_job_rs_metas) { |
3937 | 0 | if (!rs_meta.has_resource_id()) { |
3938 | 0 | LOG_WARNING("rowset meta does not have a resource id, impossible!") |
3939 | 0 | .tag("rs_meta", rs_meta.ShortDebugString()) |
3940 | 0 | .tag("instance_id", instance_id_) |
3941 | 0 | .tag("tablet_id", tablet_id); |
3942 | 0 | return -1; |
3943 | 0 | } |
3944 | | |
3945 | 0 | auto it = accessor_map_.find(rs_meta.resource_id()); |
3946 | | // possible if the accessor is not initilized correctly |
3947 | 0 | if (it == accessor_map_.end()) [[unlikely]] { |
3948 | 0 | LOG_WARNING( |
3949 | 0 | "failed to find resource id when recycle tablet, skip this vault accessor " |
3950 | 0 | "recycle process") |
3951 | 0 | .tag("tablet id", tablet_id) |
3952 | 0 | .tag("instance_id", instance_id_) |
3953 | 0 | .tag("resource_id", rs_meta.resource_id()) |
3954 | 0 | .tag("rowset meta pb", rs_meta.ShortDebugString()); |
3955 | 0 | return -1; |
3956 | 0 | } |
3957 | 0 | if (decrement_packed_file_ref_counts(rs_meta) != 0) { |
3958 | 0 | LOG_WARNING("failed to update packed file info when recycling restore job rowset") |
3959 | 0 | .tag("instance_id", instance_id_) |
3960 | 0 | .tag("tablet_id", tablet_id) |
3961 | 0 | .tag("rowset_id", rs_meta.rowset_id_v2()); |
3962 | 0 | return -1; |
3963 | 0 | } |
3964 | 0 | recycle_restore_job_rowsets_number += 1; |
3965 | 0 | recycle_restore_job_segments_number += rs_meta.num_segments(); |
3966 | 0 | recycle_restore_job_rowsets_data_size += rs_meta.data_disk_size(); |
3967 | 0 | recycle_restore_job_rowsets_index_size += rs_meta.index_disk_size(); |
3968 | 0 | resource_ids.emplace(rs_meta.resource_id()); |
3969 | 0 | } |
3970 | | |
3971 | 246 | LOG_INFO("recycle tablet start to delete object") |
3972 | 246 | .tag("instance id", instance_id_) |
3973 | 246 | .tag("tablet id", tablet_id) |
3974 | 246 | .tag("recycle tablet resource ids are", |
3975 | 246 | std::accumulate(resource_ids.begin(), resource_ids.end(), std::string(), |
3976 | 246 | [](std::string rs_id, const auto& it) { |
3977 | 206 | return rs_id.empty() ? it : rs_id + ", " + it; |
3978 | 206 | })); 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 | 3976 | 206 | [](std::string rs_id, const auto& it) { | 3977 | 206 | return rs_id.empty() ? it : rs_id + ", " + it; | 3978 | 206 | })); |
|
3979 | | |
3980 | 246 | SyncExecutor<std::pair<int, std::string>> concurrent_delete_executor( |
3981 | 246 | _thread_pool_group.s3_producer_pool, |
3982 | 246 | fmt::format("delete tablet {} s3 rowset", tablet_id), |
3983 | 246 | [](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 | 3983 | 206 | [](const std::pair<int, std::string>& ret) { return ret.first != 0; }); |
|
3984 | | |
3985 | | // delete all rowset data in this tablet |
3986 | | // ATTN: there may be data leak if not all accessor initilized successfully |
3987 | | // partial data deleted if the tablet is stored cross-storage vault |
3988 | | // vault id is not attached to TabletMeta... |
3989 | 246 | for (const auto& resource_id : resource_ids) { |
3990 | 206 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, resource_id, "submitted"}, 1); |
3991 | 206 | concurrent_delete_executor.add( |
3992 | 206 | [&, rs_id = resource_id, |
3993 | 206 | accessor_ptr = accessor_map_[resource_id]]() -> decltype(auto) { |
3994 | 206 | std::unique_ptr<int, std::function<void(int*)>> defer( |
3995 | 206 | (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 | 3995 | 206 | (int*)0x01, [&](int*) { metrics_context.report(); }); |
|
3996 | 206 | int res = accessor_ptr->delete_directory(tablet_path_prefix(tablet_id)); |
3997 | 206 | if (res != 0) { |
3998 | 2 | LOG(WARNING) << "failed to delete rowset data of tablet " << tablet_id |
3999 | 2 | << " path=" << accessor_ptr->uri() |
4000 | 2 | << " task type=" << metrics_context.operation_type; |
4001 | 2 | return std::make_pair(-1, rs_id); |
4002 | 2 | } |
4003 | 204 | return std::make_pair(0, rs_id); |
4004 | 206 | }); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11Ev recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler14recycle_tabletElRNS0_22RecyclerMetricsContextEENK3$_3clB5cxx11Ev Line | Count | Source | 3993 | 206 | accessor_ptr = accessor_map_[resource_id]]() -> decltype(auto) { | 3994 | 206 | std::unique_ptr<int, std::function<void(int*)>> defer( | 3995 | 206 | (int*)0x01, [&](int*) { metrics_context.report(); }); | 3996 | 206 | int res = accessor_ptr->delete_directory(tablet_path_prefix(tablet_id)); | 3997 | 206 | if (res != 0) { | 3998 | 2 | LOG(WARNING) << "failed to delete rowset data of tablet " << tablet_id | 3999 | 2 | << " path=" << accessor_ptr->uri() | 4000 | 2 | << " task type=" << metrics_context.operation_type; | 4001 | 2 | return std::make_pair(-1, rs_id); | 4002 | 2 | } | 4003 | 204 | return std::make_pair(0, rs_id); | 4004 | 206 | }); |
|
4005 | 206 | } |
4006 | | |
4007 | 246 | bool finished = true; |
4008 | 246 | std::vector<std::pair<int, std::string>> rets = concurrent_delete_executor.when_all(&finished); |
4009 | 246 | for (auto& r : rets) { |
4010 | 206 | if (r.first != 0) { |
4011 | 2 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, r.second, "error"}, 1); |
4012 | 2 | ret = -1; |
4013 | 2 | } |
4014 | 206 | g_bvar_recycler_vault_recycle_task_status.put({instance_id_, r.second, "completed"}, 1); |
4015 | 206 | } |
4016 | 246 | ret = finished ? ret : -1; |
4017 | | |
4018 | 246 | if (ret != 0) { // failed recycle tablet data |
4019 | 2 | LOG_WARNING("ret!=0") |
4020 | 2 | .tag("finished", finished) |
4021 | 2 | .tag("ret", ret) |
4022 | 2 | .tag("instance_id", instance_id_) |
4023 | 2 | .tag("tablet_id", tablet_id); |
4024 | 2 | return ret; |
4025 | 2 | } |
4026 | | |
4027 | 244 | tablet_metrics_context_.total_recycled_data_size += |
4028 | 244 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4029 | 244 | tablet_metrics_context_.total_recycled_num += 1; |
4030 | 244 | segment_metrics_context_.total_recycled_num += recycle_segments_number; |
4031 | 244 | segment_metrics_context_.total_recycled_data_size += |
4032 | 244 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4033 | 244 | metrics_context.total_recycled_data_size += |
4034 | 244 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4035 | 244 | tablet_metrics_context_.report(); |
4036 | 244 | segment_metrics_context_.report(); |
4037 | 244 | metrics_context.report(); |
4038 | | |
4039 | 244 | txn.reset(); |
4040 | 244 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4041 | 0 | LOG_WARNING("failed to recycle tablet ") |
4042 | 0 | .tag("tablet id", tablet_id) |
4043 | 0 | .tag("instance_id", instance_id_) |
4044 | 0 | .tag("reason", "failed to create txn"); |
4045 | 0 | ret = -1; |
4046 | 0 | } |
4047 | | // delete all rowset kv in this tablet |
4048 | 244 | txn->remove(rs_key0, rs_key1); |
4049 | 244 | txn->remove(recyc_rs_key0, recyc_rs_key1); |
4050 | 244 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); |
4051 | | |
4052 | | // remove delete bitmap for MoW table |
4053 | 244 | std::string pending_key = meta_pending_delete_bitmap_key({instance_id_, tablet_id}); |
4054 | 244 | txn->remove(pending_key); |
4055 | 244 | std::string delete_bitmap_start = meta_delete_bitmap_key({instance_id_, tablet_id, "", 0, 0}); |
4056 | 244 | std::string delete_bitmap_end = meta_delete_bitmap_key({instance_id_, tablet_id + 1, "", 0, 0}); |
4057 | 244 | txn->remove(delete_bitmap_start, delete_bitmap_end); |
4058 | | |
4059 | 244 | std::string dbm_start_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id, ""}); |
4060 | 244 | std::string dbm_end_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id + 1, ""}); |
4061 | 244 | txn->remove(dbm_start_key, dbm_end_key); |
4062 | 244 | LOG(INFO) << "remove delete bitmap kv, tablet=" << tablet_id << ", begin=" << hex(dbm_start_key) |
4063 | 244 | << " end=" << hex(dbm_end_key); |
4064 | | |
4065 | 244 | TxnErrorCode err = txn->commit(); |
4066 | 244 | if (err != TxnErrorCode::TXN_OK) { |
4067 | 0 | LOG(WARNING) << "failed to delete rowset kv of tablet " << tablet_id << ", err=" << err; |
4068 | 0 | ret = -1; |
4069 | 0 | } |
4070 | | |
4071 | 244 | if (ret == 0) { |
4072 | | // All object files under tablet have been deleted |
4073 | 244 | std::lock_guard lock(recycled_tablets_mtx_); |
4074 | 244 | recycled_tablets_.insert(tablet_id); |
4075 | 244 | } |
4076 | | |
4077 | 244 | return ret; |
4078 | 246 | } |
4079 | | |
4080 | | int InstanceRecycler::recycle_versioned_tablet(int64_t tablet_id, |
4081 | 11 | RecyclerMetricsContext& metrics_context) { |
4082 | 11 | int ret = 0; |
4083 | 11 | auto start_time = steady_clock::now(); |
4084 | | |
4085 | 11 | TEST_SYNC_POINT_RETURN_WITH_VALUE("recycle_tablet::begin", (int)0); |
4086 | | |
4087 | | // collect resource ids |
4088 | 11 | std::string rs_key0 = meta_rowset_key({instance_id_, tablet_id, 0}); |
4089 | 11 | std::string rs_key1 = meta_rowset_key({instance_id_, tablet_id + 1, 0}); |
4090 | 11 | std::string recyc_rs_key0 = recycle_rowset_key({instance_id_, tablet_id, ""}); |
4091 | 11 | std::string recyc_rs_key1 = recycle_rowset_key({instance_id_, tablet_id + 1, ""}); |
4092 | | |
4093 | 11 | int64_t recycle_rowsets_number = 0; |
4094 | 11 | int64_t recycle_segments_number = 0; |
4095 | 11 | int64_t recycle_rowsets_data_size = 0; |
4096 | 11 | int64_t recycle_rowsets_index_size = 0; |
4097 | 11 | int64_t max_rowset_version = 0; |
4098 | 11 | int64_t min_rowset_creation_time = INT64_MAX; |
4099 | 11 | int64_t max_rowset_creation_time = 0; |
4100 | 11 | int64_t min_rowset_expiration_time = INT64_MAX; |
4101 | 11 | int64_t max_rowset_expiration_time = 0; |
4102 | | |
4103 | 11 | DORIS_CLOUD_DEFER { |
4104 | 11 | auto cost = duration<float>(steady_clock::now() - start_time).count(); |
4105 | 11 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) |
4106 | 11 | .tag("instance_id", instance_id_) |
4107 | 11 | .tag("tablet_id", tablet_id) |
4108 | 11 | .tag("recycle rowsets number", recycle_rowsets_number) |
4109 | 11 | .tag("recycle segments number", recycle_segments_number) |
4110 | 11 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) |
4111 | 11 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) |
4112 | 11 | .tag("max rowset version", max_rowset_version) |
4113 | 11 | .tag("min rowset creation time", min_rowset_creation_time) |
4114 | 11 | .tag("max rowset creation time", max_rowset_creation_time) |
4115 | 11 | .tag("min rowset expiration time", min_rowset_expiration_time) |
4116 | 11 | .tag("max rowset expiration time", max_rowset_expiration_time) |
4117 | 11 | .tag("ret", ret); |
4118 | 11 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_0clEv Line | Count | Source | 4103 | 11 | DORIS_CLOUD_DEFER { | 4104 | 11 | auto cost = duration<float>(steady_clock::now() - start_time).count(); | 4105 | 11 | LOG_INFO("recycle the rowsets of dropped tablet finished, cost={}s", cost) | 4106 | 11 | .tag("instance_id", instance_id_) | 4107 | 11 | .tag("tablet_id", tablet_id) | 4108 | 11 | .tag("recycle rowsets number", recycle_rowsets_number) | 4109 | 11 | .tag("recycle segments number", recycle_segments_number) | 4110 | 11 | .tag("all rowsets recycle data size", recycle_rowsets_data_size) | 4111 | 11 | .tag("all rowsets recycle index size", recycle_rowsets_index_size) | 4112 | 11 | .tag("max rowset version", max_rowset_version) | 4113 | 11 | .tag("min rowset creation time", min_rowset_creation_time) | 4114 | 11 | .tag("max rowset creation time", max_rowset_creation_time) | 4115 | 11 | .tag("min rowset expiration time", min_rowset_expiration_time) | 4116 | 11 | .tag("max rowset expiration time", max_rowset_expiration_time) | 4117 | 11 | .tag("ret", ret); | 4118 | 11 | }; |
|
4119 | | |
4120 | 11 | std::unique_ptr<Transaction> txn; |
4121 | 11 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4122 | 0 | LOG_WARNING("failed to recycle tablet ") |
4123 | 0 | .tag("tablet id", tablet_id) |
4124 | 0 | .tag("instance_id", instance_id_) |
4125 | 0 | .tag("reason", "failed to create txn"); |
4126 | 0 | ret = -1; |
4127 | 0 | } |
4128 | | |
4129 | | // Read the last version of load and compact rowsets, the previous rowsets will be recycled |
4130 | | // by the related operation logs. |
4131 | 11 | std::vector<std::pair<RowsetMetaCloudPB, Versionstamp>> load_rowset_metas; |
4132 | 11 | std::vector<std::pair<RowsetMetaCloudPB, Versionstamp>> compact_rowset_metas; |
4133 | 11 | MetaReader meta_reader(instance_id_); |
4134 | 11 | TxnErrorCode err = meta_reader.get_load_rowset_metas(txn.get(), tablet_id, &load_rowset_metas); |
4135 | 11 | if (err == TxnErrorCode::TXN_OK) { |
4136 | 11 | err = meta_reader.get_compact_rowset_metas(txn.get(), tablet_id, &compact_rowset_metas); |
4137 | 11 | } |
4138 | 11 | if (err != TxnErrorCode::TXN_OK) { |
4139 | 0 | LOG_WARNING("failed to get rowsets of tablet when recycle tablet") |
4140 | 0 | .tag("tablet id", tablet_id) |
4141 | 0 | .tag("err", err) |
4142 | 0 | .tag("instance id", instance_id_); |
4143 | 0 | ret = -1; |
4144 | 0 | } |
4145 | | |
4146 | 11 | LOG_INFO("recycle versioned tablet get {} load rowsets and {} compact rowsets", |
4147 | 11 | load_rowset_metas.size(), compact_rowset_metas.size()) |
4148 | 11 | .tag("instance_id", instance_id_) |
4149 | 11 | .tag("tablet_id", tablet_id); |
4150 | | |
4151 | 11 | SyncExecutor<int> concurrent_delete_executor( |
4152 | 11 | _thread_pool_group.s3_producer_pool, |
4153 | 11 | fmt::format("delete tablet {} s3 rowset", tablet_id), |
4154 | 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 |
4155 | | |
4156 | 60 | auto update_rowset_stats = [&](const RowsetMetaCloudPB& rs_meta) { |
4157 | 60 | recycle_rowsets_number += 1; |
4158 | 60 | recycle_segments_number += rs_meta.num_segments(); |
4159 | 60 | recycle_rowsets_data_size += rs_meta.data_disk_size(); |
4160 | 60 | recycle_rowsets_index_size += rs_meta.index_disk_size(); |
4161 | 60 | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); |
4162 | 60 | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); |
4163 | 60 | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); |
4164 | 60 | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); |
4165 | 60 | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); |
4166 | 60 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKNS_17RowsetMetaCloudPBE recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEENK3$_2clERKNS_17RowsetMetaCloudPBE Line | Count | Source | 4156 | 60 | auto update_rowset_stats = [&](const RowsetMetaCloudPB& rs_meta) { | 4157 | 60 | recycle_rowsets_number += 1; | 4158 | 60 | recycle_segments_number += rs_meta.num_segments(); | 4159 | 60 | recycle_rowsets_data_size += rs_meta.data_disk_size(); | 4160 | 60 | recycle_rowsets_index_size += rs_meta.index_disk_size(); | 4161 | 60 | max_rowset_version = std::max(max_rowset_version, rs_meta.end_version()); | 4162 | 60 | min_rowset_creation_time = std::min(min_rowset_creation_time, rs_meta.creation_time()); | 4163 | 60 | max_rowset_creation_time = std::max(max_rowset_creation_time, rs_meta.creation_time()); | 4164 | 60 | min_rowset_expiration_time = std::min(min_rowset_expiration_time, rs_meta.txn_expiration()); | 4165 | 60 | max_rowset_expiration_time = std::max(max_rowset_expiration_time, rs_meta.txn_expiration()); | 4166 | 60 | }; |
|
4167 | | |
4168 | 11 | std::vector<RowsetDeleteTask> all_tasks; |
4169 | | |
4170 | 11 | auto create_delete_task = [this](const RowsetMetaCloudPB& rs_meta, std::string_view recycle_key, |
4171 | 11 | std::string_view non_versioned_rowset_key = |
4172 | 60 | "") -> RowsetDeleteTask { |
4173 | 60 | RowsetDeleteTask task; |
4174 | 60 | task.rowset_meta = rs_meta; |
4175 | 60 | task.recycle_rowset_key = std::string(recycle_key); |
4176 | 60 | task.non_versioned_rowset_key = std::string(non_versioned_rowset_key); |
4177 | 60 | task.versioned_rowset_key = versioned::meta_rowset_key( |
4178 | 60 | {instance_id_, rs_meta.tablet_id(), rs_meta.rowset_id_v2()}); |
4179 | 60 | return task; |
4180 | 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 | 4172 | 60 | "") -> RowsetDeleteTask { | 4173 | 60 | RowsetDeleteTask task; | 4174 | 60 | task.rowset_meta = rs_meta; | 4175 | 60 | task.recycle_rowset_key = std::string(recycle_key); | 4176 | 60 | task.non_versioned_rowset_key = std::string(non_versioned_rowset_key); | 4177 | 60 | task.versioned_rowset_key = versioned::meta_rowset_key( | 4178 | 60 | {instance_id_, rs_meta.tablet_id(), rs_meta.rowset_id_v2()}); | 4179 | 60 | return task; | 4180 | 60 | }; |
|
4181 | | |
4182 | 60 | for (const auto& [rs_meta, versionstamp] : load_rowset_metas) { |
4183 | 60 | update_rowset_stats(rs_meta); |
4184 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4185 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4186 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4187 | 60 | std::string rowset_load_key = |
4188 | 60 | versioned::meta_rowset_load_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4189 | 60 | std::string rowset_key = meta_rowset_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4190 | 60 | RowsetDeleteTask task = create_delete_task( |
4191 | 60 | rs_meta, encode_versioned_key(rowset_load_key, versionstamp), rowset_key); |
4192 | 60 | all_tasks.push_back(std::move(task)); |
4193 | 60 | } |
4194 | | |
4195 | 11 | for (const auto& [rs_meta, versionstamp] : compact_rowset_metas) { |
4196 | 0 | update_rowset_stats(rs_meta); |
4197 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4198 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4199 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4200 | 0 | std::string rowset_compact_key = versioned::meta_rowset_compact_key( |
4201 | 0 | {instance_id_, tablet_id, rs_meta.end_version()}); |
4202 | 0 | std::string rowset_key = meta_rowset_key({instance_id_, tablet_id, rs_meta.end_version()}); |
4203 | 0 | RowsetDeleteTask task = create_delete_task( |
4204 | 0 | rs_meta, encode_versioned_key(rowset_compact_key, versionstamp), rowset_key); |
4205 | 0 | all_tasks.push_back(std::move(task)); |
4206 | 0 | } |
4207 | | |
4208 | 11 | auto handle_recycle_rowset_kv = [&](std::string_view k, std::string_view v) { |
4209 | 0 | RecycleRowsetPB recycle_rowset; |
4210 | 0 | if (!recycle_rowset.ParseFromArray(v.data(), v.size())) { |
4211 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
4212 | 0 | return -1; |
4213 | 0 | } |
4214 | 0 | if (!recycle_rowset.has_type()) { // compatible with old version `RecycleRowsetPB` |
4215 | 0 | if (!recycle_rowset.has_resource_id()) [[unlikely]] { // impossible |
4216 | | // in old version, keep this key-value pair and it needs to be checked manually |
4217 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4218 | 0 | return -1; |
4219 | 0 | } |
4220 | 0 | if (recycle_rowset.resource_id().empty()) [[unlikely]] { |
4221 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
4222 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
4223 | 0 | << hex(k) << " value=" << proto_to_json(recycle_rowset); |
4224 | 0 | return -1; |
4225 | 0 | } |
4226 | | // decode rowset_id |
4227 | 0 | auto k1 = k; |
4228 | 0 | k1.remove_prefix(1); |
4229 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
4230 | 0 | decode_key(&k1, &out); |
4231 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
4232 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
4233 | 0 | LOG_INFO("delete old-version rowset data") |
4234 | 0 | .tag("instance_id", instance_id_) |
4235 | 0 | .tag("tablet_id", tablet_id) |
4236 | 0 | .tag("rowset_id", rowset_id); |
4237 | | |
4238 | | // Old version RecycleRowsetPB lacks full rowset_meta info (num_segments, schema, etc.), |
4239 | | // so we must use prefix deletion directly instead of batch delete. |
4240 | 0 | concurrent_delete_executor.add( |
4241 | 0 | [tablet_id, resource_id = recycle_rowset.resource_id(), rowset_id, this]() { |
4242 | | // delete by prefix, the recycle rowset key will be deleted by range later. |
4243 | 0 | return delete_rowset_data(resource_id, tablet_id, rowset_id); |
4244 | 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 |
4245 | 0 | } else { |
4246 | 0 | const auto& rowset_meta = recycle_rowset.rowset_meta(); |
4247 | | // Version 0-1 rowset has no resource_id and no actual data files, |
4248 | | // but still needs ref_count key cleanup, so we add it to all_tasks. |
4249 | | // It will be filtered out in Phase 2 when building rowsets_to_delete. |
4250 | 0 | RowsetDeleteTask task = create_delete_task(rowset_meta, k); |
4251 | 0 | all_tasks.push_back(std::move(task)); |
4252 | 0 | } |
4253 | 0 | return 0; |
4254 | 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_ |
4255 | | |
4256 | 11 | if (scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_recycle_rowset_kv))) { |
4257 | 0 | LOG_WARNING("failed to recycle rowset kv of tablet") |
4258 | 0 | .tag("tablet id", tablet_id) |
4259 | 0 | .tag("instance_id", instance_id_) |
4260 | 0 | .tag("reason", "failed to scan and recycle RecycleRowsetPB"); |
4261 | 0 | ret = -1; |
4262 | 0 | } |
4263 | | |
4264 | | // Phase 1: Classify tasks by ref_count |
4265 | 11 | std::vector<RowsetDeleteTask> batch_delete_tasks; |
4266 | 60 | for (auto& task : all_tasks) { |
4267 | 60 | int classify_ret = classify_rowset_task_by_ref_count(task, batch_delete_tasks); |
4268 | 60 | if (classify_ret < 0) { |
4269 | 0 | LOG_WARNING("failed to classify rowset task, fallback to old logic") |
4270 | 0 | .tag("instance_id", instance_id_) |
4271 | 0 | .tag("tablet_id", tablet_id) |
4272 | 0 | .tag("rowset_id", task.rowset_meta.rowset_id_v2()); |
4273 | 0 | concurrent_delete_executor.add([this, t = std::move(task)]() mutable { |
4274 | 0 | return recycle_rowset_meta_and_data(t.recycle_rowset_key, t.rowset_meta, |
4275 | 0 | t.non_versioned_rowset_key); |
4276 | 0 | }); Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEEN3$_5clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler24recycle_versioned_tabletElRNS0_22RecyclerMetricsContextEEN3$_5clEv |
4277 | 0 | } |
4278 | 60 | } |
4279 | | |
4280 | 11 | g_bvar_recycler_batch_delete_rowset_plan_count.put(instance_id_, batch_delete_tasks.size()); |
4281 | | |
4282 | 11 | LOG_INFO("batch delete plan created") |
4283 | 11 | .tag("instance_id", instance_id_) |
4284 | 11 | .tag("tablet_id", tablet_id) |
4285 | 11 | .tag("plan_count", batch_delete_tasks.size()); |
4286 | | |
4287 | | // Phase 2: Execute batch delete using existing delete_rowset_data |
4288 | 11 | if (!batch_delete_tasks.empty()) { |
4289 | 10 | std::map<std::string, RowsetMetaCloudPB> rowsets_to_delete; |
4290 | 49 | for (const auto& task : batch_delete_tasks) { |
4291 | | // Version 0-1 rowset has no resource_id and no actual data files, skip it |
4292 | 49 | if (task.rowset_meta.resource_id().empty()) { |
4293 | 10 | LOG_INFO("skip rowset with empty resource_id in batch delete") |
4294 | 10 | .tag("instance_id", instance_id_) |
4295 | 10 | .tag("tablet_id", tablet_id) |
4296 | 10 | .tag("rowset_id", task.rowset_meta.rowset_id_v2()); |
4297 | 10 | continue; |
4298 | 10 | } |
4299 | 39 | rowsets_to_delete[task.rowset_meta.rowset_id_v2()] = task.rowset_meta; |
4300 | 39 | } |
4301 | | |
4302 | | // Only call delete_rowset_data if there are rowsets with actual data to delete |
4303 | 10 | bool delete_success = true; |
4304 | 10 | if (!rowsets_to_delete.empty()) { |
4305 | 9 | RecyclerMetricsContext batch_metrics_context(instance_id_, |
4306 | 9 | "batch_delete_versioned_tablet"); |
4307 | 9 | int delete_ret = delete_rowset_data( |
4308 | 9 | rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, batch_metrics_context); |
4309 | 9 | if (delete_ret != 0) { |
4310 | 0 | LOG_WARNING("batch delete execution failed") |
4311 | 0 | .tag("instance_id", instance_id_) |
4312 | 0 | .tag("tablet_id", tablet_id); |
4313 | 0 | g_bvar_recycler_batch_delete_failures.put(instance_id_, 1); |
4314 | 0 | ret = -1; |
4315 | 0 | delete_success = false; |
4316 | 0 | } |
4317 | 9 | } |
4318 | | |
4319 | | // Phase 3: Only cleanup metadata if data deletion succeeded. |
4320 | | // If deletion failed, keep recycle_rowset_key so next round will retry. |
4321 | 10 | if (delete_success) { |
4322 | 10 | int cleanup_ret = cleanup_rowset_metadata(batch_delete_tasks); |
4323 | 10 | if (cleanup_ret != 0) { |
4324 | 0 | LOG_WARNING("batch delete cleanup failed") |
4325 | 0 | .tag("instance_id", instance_id_) |
4326 | 0 | .tag("tablet_id", tablet_id); |
4327 | 0 | ret = -1; |
4328 | 0 | } |
4329 | 10 | } |
4330 | 10 | } |
4331 | | |
4332 | | // Always wait for fallback tasks to complete before returning |
4333 | 11 | bool finished = true; |
4334 | 11 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
4335 | 11 | for (int r : rets) { |
4336 | 0 | if (r != 0) { |
4337 | 0 | ret = -1; |
4338 | 0 | } |
4339 | 0 | } |
4340 | | |
4341 | 11 | ret = finished ? ret : -1; |
4342 | | |
4343 | 11 | if (ret != 0) { // failed recycle tablet data |
4344 | 0 | LOG_WARNING("recycle versioned tablet failed") |
4345 | 0 | .tag("finished", finished) |
4346 | 0 | .tag("ret", ret) |
4347 | 0 | .tag("instance_id", instance_id_) |
4348 | 0 | .tag("tablet_id", tablet_id); |
4349 | 0 | return ret; |
4350 | 0 | } |
4351 | | |
4352 | 11 | tablet_metrics_context_.total_recycled_data_size += |
4353 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4354 | 11 | tablet_metrics_context_.total_recycled_num += 1; |
4355 | 11 | segment_metrics_context_.total_recycled_num += recycle_segments_number; |
4356 | 11 | segment_metrics_context_.total_recycled_data_size += |
4357 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4358 | 11 | metrics_context.total_recycled_data_size += |
4359 | 11 | recycle_rowsets_data_size + recycle_rowsets_index_size; |
4360 | 11 | tablet_metrics_context_.report(); |
4361 | 11 | segment_metrics_context_.report(); |
4362 | 11 | metrics_context.report(); |
4363 | | |
4364 | 11 | txn.reset(); |
4365 | 11 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
4366 | 0 | LOG_WARNING("failed to recycle tablet ") |
4367 | 0 | .tag("tablet id", tablet_id) |
4368 | 0 | .tag("instance_id", instance_id_) |
4369 | 0 | .tag("reason", "failed to create txn"); |
4370 | 0 | ret = -1; |
4371 | 0 | } |
4372 | | // delete all rowset kv in this tablet |
4373 | 11 | txn->remove(rs_key0, rs_key1); |
4374 | 11 | txn->remove(recyc_rs_key0, recyc_rs_key1); |
4375 | | |
4376 | | // remove delete bitmap for MoW table |
4377 | 11 | std::string pending_key = meta_pending_delete_bitmap_key({instance_id_, tablet_id}); |
4378 | 11 | txn->remove(pending_key); |
4379 | 11 | std::string delete_bitmap_start = meta_delete_bitmap_key({instance_id_, tablet_id, "", 0, 0}); |
4380 | 11 | std::string delete_bitmap_end = meta_delete_bitmap_key({instance_id_, tablet_id + 1, "", 0, 0}); |
4381 | 11 | txn->remove(delete_bitmap_start, delete_bitmap_end); |
4382 | | |
4383 | 11 | std::string dbm_start_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id, ""}); |
4384 | 11 | std::string dbm_end_key = versioned::meta_delete_bitmap_key({instance_id_, tablet_id + 1, ""}); |
4385 | 11 | txn->remove(dbm_start_key, dbm_end_key); |
4386 | 11 | LOG(INFO) << "remove delete bitmap kv, tablet=" << tablet_id << ", begin=" << hex(dbm_start_key) |
4387 | 11 | << " end=" << hex(dbm_end_key); |
4388 | | |
4389 | 11 | std::string versioned_idx_key = versioned::tablet_index_key({instance_id_, tablet_id}); |
4390 | 11 | std::string tablet_index_val; |
4391 | 11 | err = txn->get(versioned_idx_key, &tablet_index_val); |
4392 | 11 | if (err != TxnErrorCode::TXN_KEY_NOT_FOUND && err != TxnErrorCode::TXN_OK) { |
4393 | 0 | LOG_WARNING("failed to get tablet index kv") |
4394 | 0 | .tag("instance_id", instance_id_) |
4395 | 0 | .tag("tablet_id", tablet_id) |
4396 | 0 | .tag("err", err); |
4397 | 0 | ret = -1; |
4398 | 11 | } else if (err == TxnErrorCode::TXN_OK) { |
4399 | | // If the tablet index kv exists, we need to delete it |
4400 | 10 | TabletIndexPB tablet_index_pb; |
4401 | 10 | if (!tablet_index_pb.ParseFromString(tablet_index_val)) { |
4402 | 0 | LOG_WARNING("failed to parse tablet index pb") |
4403 | 0 | .tag("instance_id", instance_id_) |
4404 | 0 | .tag("tablet_id", tablet_id); |
4405 | 0 | ret = -1; |
4406 | 10 | } else { |
4407 | 10 | std::string versioned_inverted_idx_key = versioned::tablet_inverted_index_key( |
4408 | 10 | {instance_id_, tablet_index_pb.db_id(), tablet_index_pb.table_id(), |
4409 | 10 | tablet_index_pb.index_id(), tablet_index_pb.partition_id(), tablet_id}); |
4410 | 10 | txn->remove(versioned_inverted_idx_key); |
4411 | 10 | txn->remove(versioned_idx_key); |
4412 | 10 | } |
4413 | 10 | } |
4414 | | |
4415 | 11 | err = txn->commit(); |
4416 | 11 | if (err != TxnErrorCode::TXN_OK) { |
4417 | 0 | LOG(WARNING) << "failed to delete rowset kv of tablet " << tablet_id << ", err=" << err; |
4418 | 0 | ret = -1; |
4419 | 0 | } |
4420 | | |
4421 | 11 | if (ret == 0) { |
4422 | | // All object files under tablet have been deleted |
4423 | 11 | std::lock_guard lock(recycled_tablets_mtx_); |
4424 | 11 | recycled_tablets_.insert(tablet_id); |
4425 | 11 | } |
4426 | | |
4427 | 11 | return ret; |
4428 | 11 | } |
4429 | | |
4430 | 27 | int InstanceRecycler::recycle_rowsets() { |
4431 | 27 | if (should_recycle_versioned_keys()) { |
4432 | 5 | return recycle_versioned_rowsets(); |
4433 | 5 | } |
4434 | | |
4435 | 22 | const std::string task_name = "recycle_rowsets"; |
4436 | 22 | int64_t num_scanned = 0; |
4437 | 22 | int64_t num_expired = 0; |
4438 | 22 | int64_t num_prepare = 0; |
4439 | 22 | int64_t num_compacted = 0; |
4440 | 22 | int64_t num_empty_rowset = 0; |
4441 | 22 | size_t total_rowset_key_size = 0; |
4442 | 22 | size_t total_rowset_value_size = 0; |
4443 | 22 | size_t expired_rowset_size = 0; |
4444 | 22 | std::atomic_long num_recycled = 0; |
4445 | 22 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4446 | | |
4447 | 22 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
4448 | 22 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
4449 | 22 | std::string recyc_rs_key0; |
4450 | 22 | std::string recyc_rs_key1; |
4451 | 22 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
4452 | 22 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
4453 | | |
4454 | 22 | LOG_WARNING("begin to recycle rowsets").tag("instance_id", instance_id_); |
4455 | | |
4456 | 22 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4457 | 22 | register_recycle_task(task_name, start_time); |
4458 | | |
4459 | 22 | DORIS_CLOUD_DEFER { |
4460 | 22 | unregister_recycle_task(task_name); |
4461 | 22 | int64_t cost = |
4462 | 22 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4463 | 22 | metrics_context.finish_report(); |
4464 | 22 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) |
4465 | 22 | .tag("instance_id", instance_id_) |
4466 | 22 | .tag("num_scanned", num_scanned) |
4467 | 22 | .tag("num_expired", num_expired) |
4468 | 22 | .tag("num_recycled", num_recycled) |
4469 | 22 | .tag("num_recycled.prepare", num_prepare) |
4470 | 22 | .tag("num_recycled.compacted", num_compacted) |
4471 | 22 | .tag("num_recycled.empty_rowset", num_empty_rowset) |
4472 | 22 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
4473 | 22 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
4474 | 22 | .tag("expired_rowset_meta_size", expired_rowset_size); |
4475 | 22 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_0clEv Line | Count | Source | 4459 | 7 | DORIS_CLOUD_DEFER { | 4460 | 7 | unregister_recycle_task(task_name); | 4461 | 7 | int64_t cost = | 4462 | 7 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4463 | 7 | metrics_context.finish_report(); | 4464 | 7 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4465 | 7 | .tag("instance_id", instance_id_) | 4466 | 7 | .tag("num_scanned", num_scanned) | 4467 | 7 | .tag("num_expired", num_expired) | 4468 | 7 | .tag("num_recycled", num_recycled) | 4469 | 7 | .tag("num_recycled.prepare", num_prepare) | 4470 | 7 | .tag("num_recycled.compacted", num_compacted) | 4471 | 7 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4472 | 7 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4473 | 7 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4474 | 7 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4475 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_0clEv Line | Count | Source | 4459 | 15 | DORIS_CLOUD_DEFER { | 4460 | 15 | unregister_recycle_task(task_name); | 4461 | 15 | int64_t cost = | 4462 | 15 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4463 | 15 | metrics_context.finish_report(); | 4464 | 15 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4465 | 15 | .tag("instance_id", instance_id_) | 4466 | 15 | .tag("num_scanned", num_scanned) | 4467 | 15 | .tag("num_expired", num_expired) | 4468 | 15 | .tag("num_recycled", num_recycled) | 4469 | 15 | .tag("num_recycled.prepare", num_prepare) | 4470 | 15 | .tag("num_recycled.compacted", num_compacted) | 4471 | 15 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4472 | 15 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4473 | 15 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4474 | 15 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4475 | 15 | }; |
|
4476 | | |
4477 | 22 | std::vector<std::string> rowset_keys; |
4478 | | // rowset_id -> rowset_meta |
4479 | | // store rowset id and meta for statistics rs size when delete |
4480 | 22 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets; |
4481 | | |
4482 | | // Store keys of rowset recycled by background workers |
4483 | 22 | std::mutex async_recycled_rowset_keys_mutex; |
4484 | 22 | std::vector<std::string> async_recycled_rowset_keys; |
4485 | 22 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
4486 | 22 | config::instance_recycler_worker_pool_size, "recycle_rowsets"); |
4487 | 22 | worker_pool->start(); |
4488 | | // TODO bacth delete |
4489 | 4.00k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
4490 | 4.00k | std::string dbm_start_key = |
4491 | 4.00k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); |
4492 | 4.00k | std::string dbm_end_key = dbm_start_key; |
4493 | 4.00k | encode_int64(INT64_MAX, &dbm_end_key); |
4494 | 4.00k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); |
4495 | 4.00k | if (ret != 0) { |
4496 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" |
4497 | 0 | << instance_id_; |
4498 | 0 | } |
4499 | 4.00k | return ret; |
4500 | 4.00k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 4489 | 2 | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 4490 | 2 | std::string dbm_start_key = | 4491 | 2 | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 4492 | 2 | std::string dbm_end_key = dbm_start_key; | 4493 | 2 | encode_int64(INT64_MAX, &dbm_end_key); | 4494 | 2 | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 4495 | 2 | if (ret != 0) { | 4496 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 4497 | 0 | << instance_id_; | 4498 | 0 | } | 4499 | 2 | return ret; | 4500 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 4489 | 3.99k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 4490 | 3.99k | std::string dbm_start_key = | 4491 | 3.99k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 4492 | 3.99k | std::string dbm_end_key = dbm_start_key; | 4493 | 3.99k | encode_int64(INT64_MAX, &dbm_end_key); | 4494 | 3.99k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 4495 | 3.99k | if (ret != 0) { | 4496 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 4497 | 0 | << instance_id_; | 4498 | 0 | } | 4499 | 3.99k | return ret; | 4500 | 3.99k | }; |
|
4501 | 22 | auto delete_rowset_data_by_prefix = [&](std::string key, const std::string& resource_id, |
4502 | 902 | int64_t tablet_id, const std::string& rowset_id) { |
4503 | | // Try to delete rowset data in background thread |
4504 | 902 | int ret = worker_pool->submit_with_timeout( |
4505 | 902 | [&, resource_id, tablet_id, rowset_id, key]() mutable { |
4506 | 812 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
4507 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
4508 | 0 | return; |
4509 | 0 | } |
4510 | 812 | std::vector<std::string> keys; |
4511 | 812 | { |
4512 | 812 | std::lock_guard lock(async_recycled_rowset_keys_mutex); |
4513 | 812 | async_recycled_rowset_keys.push_back(std::move(key)); |
4514 | 812 | if (async_recycled_rowset_keys.size() > 100) { |
4515 | 7 | keys.swap(async_recycled_rowset_keys); |
4516 | 7 | } |
4517 | 812 | } |
4518 | 812 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); |
4519 | 812 | if (keys.empty()) return; |
4520 | 7 | if (txn_remove(txn_kv_.get(), keys) != 0) { |
4521 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" |
4522 | 0 | << instance_id_; |
4523 | 7 | } else { |
4524 | 7 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); |
4525 | 7 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, |
4526 | 7 | num_recycled, start_time); |
4527 | 7 | } |
4528 | 7 | }, recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv Line | Count | Source | 4505 | 2 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4506 | 2 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4507 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4508 | 0 | return; | 4509 | 0 | } | 4510 | 2 | std::vector<std::string> keys; | 4511 | 2 | { | 4512 | 2 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4513 | 2 | async_recycled_rowset_keys.push_back(std::move(key)); | 4514 | 2 | if (async_recycled_rowset_keys.size() > 100) { | 4515 | 0 | keys.swap(async_recycled_rowset_keys); | 4516 | 0 | } | 4517 | 2 | } | 4518 | 2 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4519 | 2 | if (keys.empty()) return; | 4520 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4521 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4522 | 0 | << instance_id_; | 4523 | 0 | } else { | 4524 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4525 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4526 | 0 | num_recycled, start_time); | 4527 | 0 | } | 4528 | 0 | }, |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ENUlvE_clEv Line | Count | Source | 4505 | 810 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4506 | 810 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4507 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4508 | 0 | return; | 4509 | 0 | } | 4510 | 810 | std::vector<std::string> keys; | 4511 | 810 | { | 4512 | 810 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4513 | 810 | async_recycled_rowset_keys.push_back(std::move(key)); | 4514 | 810 | if (async_recycled_rowset_keys.size() > 100) { | 4515 | 7 | keys.swap(async_recycled_rowset_keys); | 4516 | 7 | } | 4517 | 810 | } | 4518 | 810 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4519 | 810 | if (keys.empty()) return; | 4520 | 7 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4521 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4522 | 0 | << instance_id_; | 4523 | 7 | } else { | 4524 | 7 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4525 | 7 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4526 | 7 | num_recycled, start_time); | 4527 | 7 | } | 4528 | 7 | }, |
|
4529 | 902 | 0); |
4530 | 902 | if (ret == 0) return 0; |
4531 | | // Submit task failed, delete rowset data in current thread |
4532 | 90 | 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 -1; |
4535 | 0 | } |
4536 | 90 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { |
4537 | 0 | return -1; |
4538 | 0 | } |
4539 | 90 | rowset_keys.push_back(std::move(key)); |
4540 | 90 | return 0; |
4541 | 90 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ Line | Count | Source | 4502 | 2 | int64_t tablet_id, const std::string& rowset_id) { | 4503 | | // Try to delete rowset data in background thread | 4504 | 2 | int ret = worker_pool->submit_with_timeout( | 4505 | 2 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4506 | 2 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4507 | 2 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4508 | 2 | return; | 4509 | 2 | } | 4510 | 2 | std::vector<std::string> keys; | 4511 | 2 | { | 4512 | 2 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4513 | 2 | async_recycled_rowset_keys.push_back(std::move(key)); | 4514 | 2 | if (async_recycled_rowset_keys.size() > 100) { | 4515 | 2 | keys.swap(async_recycled_rowset_keys); | 4516 | 2 | } | 4517 | 2 | } | 4518 | 2 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4519 | 2 | if (keys.empty()) return; | 4520 | 2 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4521 | 2 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4522 | 2 | << instance_id_; | 4523 | 2 | } else { | 4524 | 2 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4525 | 2 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4526 | 2 | num_recycled, start_time); | 4527 | 2 | } | 4528 | 2 | }, | 4529 | 2 | 0); | 4530 | 2 | if (ret == 0) return 0; | 4531 | | // Submit task failed, delete rowset data in current thread | 4532 | 0 | 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 -1; | 4535 | 0 | } | 4536 | 0 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { | 4537 | 0 | return -1; | 4538 | 0 | } | 4539 | 0 | rowset_keys.push_back(std::move(key)); | 4540 | 0 | return 0; | 4541 | 0 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_3clENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKS8_lSA_ Line | Count | Source | 4502 | 900 | int64_t tablet_id, const std::string& rowset_id) { | 4503 | | // Try to delete rowset data in background thread | 4504 | 900 | int ret = worker_pool->submit_with_timeout( | 4505 | 900 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4506 | 900 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4507 | 900 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4508 | 900 | return; | 4509 | 900 | } | 4510 | 900 | std::vector<std::string> keys; | 4511 | 900 | { | 4512 | 900 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4513 | 900 | async_recycled_rowset_keys.push_back(std::move(key)); | 4514 | 900 | if (async_recycled_rowset_keys.size() > 100) { | 4515 | 900 | keys.swap(async_recycled_rowset_keys); | 4516 | 900 | } | 4517 | 900 | } | 4518 | 900 | delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id); | 4519 | 900 | if (keys.empty()) return; | 4520 | 900 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4521 | 900 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4522 | 900 | << instance_id_; | 4523 | 900 | } else { | 4524 | 900 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4525 | 900 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4526 | 900 | num_recycled, start_time); | 4527 | 900 | } | 4528 | 900 | }, | 4529 | 900 | 0); | 4530 | 900 | if (ret == 0) return 0; | 4531 | | // Submit task failed, delete rowset data in current thread | 4532 | 90 | 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 -1; | 4535 | 0 | } | 4536 | 90 | if (delete_versioned_delete_bitmap_kvs(tablet_id, rowset_id) != 0) { | 4537 | 0 | return -1; | 4538 | 0 | } | 4539 | 90 | rowset_keys.push_back(std::move(key)); | 4540 | 90 | return 0; | 4541 | 90 | }; |
|
4542 | | |
4543 | 22 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
4544 | | |
4545 | 7.75k | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { |
4546 | 7.75k | ++num_scanned; |
4547 | 7.75k | total_rowset_key_size += k.size(); |
4548 | 7.75k | total_rowset_value_size += v.size(); |
4549 | 7.75k | RecycleRowsetPB rowset; |
4550 | 7.75k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
4551 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
4552 | 0 | return -1; |
4553 | 0 | } |
4554 | | |
4555 | 7.75k | int64_t current_time = ::time(nullptr); |
4556 | 7.75k | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
4557 | | |
4558 | 7.75k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
4559 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration |
4560 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); |
4561 | 7.75k | if (current_time < expiration) { // not expired |
4562 | 0 | return 0; |
4563 | 0 | } |
4564 | 7.75k | ++num_expired; |
4565 | 7.75k | expired_rowset_size += v.size(); |
4566 | | |
4567 | 7.75k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` |
4568 | 250 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible |
4569 | | // in old version, keep this key-value pair and it needs to be checked manually |
4570 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4571 | 0 | return -1; |
4572 | 0 | } |
4573 | 250 | if (rowset.resource_id().empty()) [[unlikely]] { |
4574 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
4575 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
4576 | 0 | << hex(k) << " value=" << proto_to_json(rowset); |
4577 | 0 | rowset_keys.emplace_back(k); |
4578 | 0 | return -1; |
4579 | 0 | } |
4580 | | // decode rowset_id |
4581 | 250 | auto k1 = k; |
4582 | 250 | k1.remove_prefix(1); |
4583 | 250 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
4584 | 250 | decode_key(&k1, &out); |
4585 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
4586 | 250 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
4587 | 250 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
4588 | 250 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id |
4589 | 250 | << " task_type=" << metrics_context.operation_type; |
4590 | 250 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), |
4591 | 250 | rowset.tablet_id(), rowset_id) != 0) { |
4592 | 0 | return -1; |
4593 | 0 | } |
4594 | 250 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); |
4595 | 250 | metrics_context.total_recycled_num++; |
4596 | 250 | segment_metrics_context_.total_recycled_data_size += |
4597 | 250 | rowset.rowset_meta().total_disk_size(); |
4598 | 250 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); |
4599 | 250 | segment_metrics_context_.report(); |
4600 | 250 | metrics_context.report(); |
4601 | 250 | return 0; |
4602 | 250 | } |
4603 | | |
4604 | 7.50k | auto* rowset_meta = rowset.mutable_rowset_meta(); |
4605 | 7.50k | if (config::enable_mark_delete_rowset_before_recycle) { |
4606 | 7.50k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); |
4607 | 7.50k | if (mark_ret == -1) { |
4608 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ |
4609 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4610 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
4611 | 0 | << "]"; |
4612 | 0 | return -1; |
4613 | 7.50k | } else if (mark_ret == 1) { |
4614 | 3.75k | LOG(INFO) |
4615 | 3.75k | << "rowset already marked as recycled, recycler will delete data and kv at " |
4616 | 3.75k | "next turn, instance_id=" |
4617 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4618 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; |
4619 | 3.75k | return 0; |
4620 | 3.75k | } |
4621 | 7.50k | } |
4622 | | |
4623 | 3.75k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { |
4624 | 3.75k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" |
4625 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" |
4626 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; |
4627 | | |
4628 | 3.75k | if (rowset_meta->end_version() != 1) { |
4629 | 3.75k | int ret = abort_txn_or_job_for_recycle(rowset); |
4630 | | |
4631 | 3.75k | if (ret != 0) { |
4632 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" |
4633 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() |
4634 | 0 | << " version=[" << rowset_meta->start_version() << '-' |
4635 | 0 | << rowset_meta->end_version() << "]"; |
4636 | 0 | return ret; |
4637 | 0 | } |
4638 | 3.75k | } |
4639 | 3.75k | } |
4640 | | |
4641 | | // TODO(plat1ko): check rowset not referenced |
4642 | 3.75k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible |
4643 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { |
4644 | 0 | LOG_INFO("recycle rowset that has empty resource id"); |
4645 | 0 | } else { |
4646 | | // other situations, keep this key-value pair and it needs to be checked manually |
4647 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
4648 | 0 | return -1; |
4649 | 0 | } |
4650 | 0 | } |
4651 | 3.75k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
4652 | 3.75k | << " tablet_id=" << rowset_meta->tablet_id() |
4653 | 3.75k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" |
4654 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
4655 | 3.75k | << "] txn_id=" << rowset_meta->txn_id() |
4656 | 3.75k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) |
4657 | 3.75k | << " rowset_meta_size=" << v.size() |
4658 | 3.75k | << " creation_time=" << rowset_meta->creation_time() |
4659 | 3.75k | << " task_type=" << metrics_context.operation_type; |
4660 | 3.75k | if (rowset.type() == RecycleRowsetPB::PREPARE) { |
4661 | | // unable to calculate file path, can only be deleted by rowset id prefix |
4662 | 652 | num_prepare += 1; |
4663 | 652 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), |
4664 | 652 | rowset_meta->tablet_id(), |
4665 | 652 | rowset_meta->rowset_id_v2()) != 0) { |
4666 | 0 | return -1; |
4667 | 0 | } |
4668 | 3.10k | } else { |
4669 | 3.10k | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; |
4670 | 3.10k | rowset_keys.emplace_back(k); |
4671 | 3.10k | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); |
4672 | 3.10k | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset |
4673 | 3.10k | ++num_empty_rowset; |
4674 | 3.10k | } |
4675 | 3.10k | } |
4676 | 3.75k | return 0; |
4677 | 3.75k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 4545 | 7 | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { | 4546 | 7 | ++num_scanned; | 4547 | 7 | total_rowset_key_size += k.size(); | 4548 | 7 | total_rowset_value_size += v.size(); | 4549 | 7 | RecycleRowsetPB rowset; | 4550 | 7 | if (!rowset.ParseFromArray(v.data(), v.size())) { | 4551 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 4552 | 0 | return -1; | 4553 | 0 | } | 4554 | | | 4555 | 7 | int64_t current_time = ::time(nullptr); | 4556 | 7 | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 4557 | | | 4558 | 7 | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4559 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 4560 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 4561 | 7 | if (current_time < expiration) { // not expired | 4562 | 0 | return 0; | 4563 | 0 | } | 4564 | 7 | ++num_expired; | 4565 | 7 | expired_rowset_size += v.size(); | 4566 | | | 4567 | 7 | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 4568 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 4569 | | // in old version, keep this key-value pair and it needs to be checked manually | 4570 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4571 | 0 | return -1; | 4572 | 0 | } | 4573 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { | 4574 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 4575 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 4576 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 4577 | 0 | rowset_keys.emplace_back(k); | 4578 | 0 | return -1; | 4579 | 0 | } | 4580 | | // decode rowset_id | 4581 | 0 | auto k1 = k; | 4582 | 0 | k1.remove_prefix(1); | 4583 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 4584 | 0 | decode_key(&k1, &out); | 4585 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 4586 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 4587 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4588 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id | 4589 | 0 | << " task_type=" << metrics_context.operation_type; | 4590 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 4591 | 0 | rowset.tablet_id(), rowset_id) != 0) { | 4592 | 0 | return -1; | 4593 | 0 | } | 4594 | 0 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); | 4595 | 0 | metrics_context.total_recycled_num++; | 4596 | 0 | segment_metrics_context_.total_recycled_data_size += | 4597 | 0 | rowset.rowset_meta().total_disk_size(); | 4598 | 0 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); | 4599 | 0 | segment_metrics_context_.report(); | 4600 | 0 | metrics_context.report(); | 4601 | 0 | return 0; | 4602 | 0 | } | 4603 | | | 4604 | 7 | auto* rowset_meta = rowset.mutable_rowset_meta(); | 4605 | 7 | if (config::enable_mark_delete_rowset_before_recycle) { | 4606 | 7 | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 4607 | 7 | if (mark_ret == -1) { | 4608 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 4609 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4610 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4611 | 0 | << "]"; | 4612 | 0 | return -1; | 4613 | 7 | } else if (mark_ret == 1) { | 4614 | 5 | LOG(INFO) | 4615 | 5 | << "rowset already marked as recycled, recycler will delete data and kv at " | 4616 | 5 | "next turn, instance_id=" | 4617 | 5 | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4618 | 5 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4619 | 5 | return 0; | 4620 | 5 | } | 4621 | 7 | } | 4622 | | | 4623 | 2 | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 4624 | 2 | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 4625 | 2 | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4626 | 2 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4627 | | | 4628 | 2 | if (rowset_meta->end_version() != 1) { | 4629 | 2 | int ret = abort_txn_or_job_for_recycle(rowset); | 4630 | | | 4631 | 2 | if (ret != 0) { | 4632 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 4633 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() | 4634 | 0 | << " version=[" << rowset_meta->start_version() << '-' | 4635 | 0 | << rowset_meta->end_version() << "]"; | 4636 | 0 | return ret; | 4637 | 0 | } | 4638 | 2 | } | 4639 | 2 | } | 4640 | | | 4641 | | // TODO(plat1ko): check rowset not referenced | 4642 | 2 | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 4643 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 4644 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 4645 | 0 | } else { | 4646 | | // other situations, keep this key-value pair and it needs to be checked manually | 4647 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4648 | 0 | return -1; | 4649 | 0 | } | 4650 | 0 | } | 4651 | 2 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4652 | 2 | << " tablet_id=" << rowset_meta->tablet_id() | 4653 | 2 | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 4654 | 2 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4655 | 2 | << "] txn_id=" << rowset_meta->txn_id() | 4656 | 2 | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 4657 | 2 | << " rowset_meta_size=" << v.size() | 4658 | 2 | << " creation_time=" << rowset_meta->creation_time() | 4659 | 2 | << " task_type=" << metrics_context.operation_type; | 4660 | 2 | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 4661 | | // unable to calculate file path, can only be deleted by rowset id prefix | 4662 | 2 | num_prepare += 1; | 4663 | 2 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 4664 | 2 | rowset_meta->tablet_id(), | 4665 | 2 | rowset_meta->rowset_id_v2()) != 0) { | 4666 | 0 | return -1; | 4667 | 0 | } | 4668 | 2 | } else { | 4669 | 0 | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; | 4670 | 0 | rowset_keys.emplace_back(k); | 4671 | 0 | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); | 4672 | 0 | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset | 4673 | 0 | ++num_empty_rowset; | 4674 | 0 | } | 4675 | 0 | } | 4676 | 2 | return 0; | 4677 | 2 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 4545 | 7.75k | auto handle_rowset_kv = [&](std::string_view k, std::string_view v) -> int { | 4546 | 7.75k | ++num_scanned; | 4547 | 7.75k | total_rowset_key_size += k.size(); | 4548 | 7.75k | total_rowset_value_size += v.size(); | 4549 | 7.75k | RecycleRowsetPB rowset; | 4550 | 7.75k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 4551 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 4552 | 0 | return -1; | 4553 | 0 | } | 4554 | | | 4555 | 7.75k | int64_t current_time = ::time(nullptr); | 4556 | 7.75k | int64_t expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 4557 | | | 4558 | 7.75k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4559 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 4560 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 4561 | 7.75k | if (current_time < expiration) { // not expired | 4562 | 0 | return 0; | 4563 | 0 | } | 4564 | 7.75k | ++num_expired; | 4565 | 7.75k | expired_rowset_size += v.size(); | 4566 | | | 4567 | 7.75k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 4568 | 250 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 4569 | | // in old version, keep this key-value pair and it needs to be checked manually | 4570 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4571 | 0 | return -1; | 4572 | 0 | } | 4573 | 250 | if (rowset.resource_id().empty()) [[unlikely]] { | 4574 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 4575 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 4576 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 4577 | 0 | rowset_keys.emplace_back(k); | 4578 | 0 | return -1; | 4579 | 0 | } | 4580 | | // decode rowset_id | 4581 | 250 | auto k1 = k; | 4582 | 250 | k1.remove_prefix(1); | 4583 | 250 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 4584 | 250 | decode_key(&k1, &out); | 4585 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 4586 | 250 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 4587 | 250 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4588 | 250 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id | 4589 | 250 | << " task_type=" << metrics_context.operation_type; | 4590 | 250 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 4591 | 250 | rowset.tablet_id(), rowset_id) != 0) { | 4592 | 0 | return -1; | 4593 | 0 | } | 4594 | 250 | metrics_context.total_recycled_data_size += rowset.rowset_meta().total_disk_size(); | 4595 | 250 | metrics_context.total_recycled_num++; | 4596 | 250 | segment_metrics_context_.total_recycled_data_size += | 4597 | 250 | rowset.rowset_meta().total_disk_size(); | 4598 | 250 | segment_metrics_context_.total_recycled_num += rowset.rowset_meta().num_segments(); | 4599 | 250 | segment_metrics_context_.report(); | 4600 | 250 | metrics_context.report(); | 4601 | 250 | return 0; | 4602 | 250 | } | 4603 | | | 4604 | 7.50k | auto* rowset_meta = rowset.mutable_rowset_meta(); | 4605 | 7.50k | if (config::enable_mark_delete_rowset_before_recycle) { | 4606 | 7.50k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 4607 | 7.50k | if (mark_ret == -1) { | 4608 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 4609 | 0 | << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4610 | 0 | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4611 | 0 | << "]"; | 4612 | 0 | return -1; | 4613 | 7.50k | } else if (mark_ret == 1) { | 4614 | 3.75k | LOG(INFO) | 4615 | 3.75k | << "rowset already marked as recycled, recycler will delete data and kv at " | 4616 | 3.75k | "next turn, instance_id=" | 4617 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4618 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4619 | 3.75k | return 0; | 4620 | 3.75k | } | 4621 | 7.50k | } | 4622 | | | 4623 | 3.75k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 4624 | 3.75k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 4625 | 3.75k | << instance_id_ << " tablet_id=" << rowset_meta->tablet_id() << " version=[" | 4626 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() << "]"; | 4627 | | | 4628 | 3.75k | if (rowset_meta->end_version() != 1) { | 4629 | 3.75k | int ret = abort_txn_or_job_for_recycle(rowset); | 4630 | | | 4631 | 3.75k | if (ret != 0) { | 4632 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 4633 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() | 4634 | 0 | << " version=[" << rowset_meta->start_version() << '-' | 4635 | 0 | << rowset_meta->end_version() << "]"; | 4636 | 0 | return ret; | 4637 | 0 | } | 4638 | 3.75k | } | 4639 | 3.75k | } | 4640 | | | 4641 | | // TODO(plat1ko): check rowset not referenced | 4642 | 3.75k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 4643 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 4644 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 4645 | 0 | } else { | 4646 | | // other situations, keep this key-value pair and it needs to be checked manually | 4647 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 4648 | 0 | return -1; | 4649 | 0 | } | 4650 | 0 | } | 4651 | 3.75k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 4652 | 3.75k | << " tablet_id=" << rowset_meta->tablet_id() | 4653 | 3.75k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 4654 | 3.75k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 4655 | 3.75k | << "] txn_id=" << rowset_meta->txn_id() | 4656 | 3.75k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 4657 | 3.75k | << " rowset_meta_size=" << v.size() | 4658 | 3.75k | << " creation_time=" << rowset_meta->creation_time() | 4659 | 3.75k | << " task_type=" << metrics_context.operation_type; | 4660 | 3.75k | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 4661 | | // unable to calculate file path, can only be deleted by rowset id prefix | 4662 | 650 | num_prepare += 1; | 4663 | 650 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 4664 | 650 | rowset_meta->tablet_id(), | 4665 | 650 | rowset_meta->rowset_id_v2()) != 0) { | 4666 | 0 | return -1; | 4667 | 0 | } | 4668 | 3.10k | } else { | 4669 | 3.10k | num_compacted += rowset.type() == RecycleRowsetPB::COMPACT; | 4670 | 3.10k | rowset_keys.emplace_back(k); | 4671 | 3.10k | rowsets.emplace(rowset_meta->rowset_id_v2(), std::move(*rowset_meta)); | 4672 | 3.10k | if (rowset_meta->num_segments() <= 0) { // Skip empty rowset | 4673 | 3.10k | ++num_empty_rowset; | 4674 | 3.10k | } | 4675 | 3.10k | } | 4676 | 3.75k | return 0; | 4677 | 3.75k | }; |
|
4678 | | |
4679 | 49 | auto loop_done = [&]() -> int { |
4680 | 49 | std::vector<std::string> rowset_keys_to_delete; |
4681 | | // rowset_id -> rowset_meta |
4682 | | // store rowset id and meta for statistics rs size when delete |
4683 | 49 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; |
4684 | 49 | rowset_keys_to_delete.swap(rowset_keys); |
4685 | 49 | rowsets_to_delete.swap(rowsets); |
4686 | 49 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), |
4687 | 49 | rowsets_to_delete = std::move(rowsets_to_delete)]() { |
4688 | 49 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, |
4689 | 49 | metrics_context) != 0) { |
4690 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; |
4691 | 0 | return; |
4692 | 0 | } |
4693 | 3.10k | for (const auto& [_, rs] : rowsets_to_delete) { |
4694 | 3.10k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
4695 | 0 | return; |
4696 | 0 | } |
4697 | 3.10k | } |
4698 | 49 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { |
4699 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
4700 | 0 | return; |
4701 | 0 | } |
4702 | 49 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); |
4703 | 49 | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEvENKUlvE_clEv Line | Count | Source | 4687 | 7 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4688 | 7 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4689 | 7 | metrics_context) != 0) { | 4690 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4691 | 0 | return; | 4692 | 0 | } | 4693 | 7 | for (const auto& [_, rs] : rowsets_to_delete) { | 4694 | 0 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4695 | 0 | return; | 4696 | 0 | } | 4697 | 0 | } | 4698 | 7 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4699 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4700 | 0 | return; | 4701 | 0 | } | 4702 | 7 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4703 | 7 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEvENKUlvE_clEv Line | Count | Source | 4687 | 42 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4688 | 42 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4689 | 42 | metrics_context) != 0) { | 4690 | 0 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4691 | 0 | return; | 4692 | 0 | } | 4693 | 3.10k | for (const auto& [_, rs] : rowsets_to_delete) { | 4694 | 3.10k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4695 | 0 | return; | 4696 | 0 | } | 4697 | 3.10k | } | 4698 | 42 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4699 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4700 | 0 | return; | 4701 | 0 | } | 4702 | 42 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4703 | 42 | }); |
|
4704 | 49 | return 0; |
4705 | 49 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEv Line | Count | Source | 4679 | 7 | auto loop_done = [&]() -> int { | 4680 | 7 | std::vector<std::string> rowset_keys_to_delete; | 4681 | | // rowset_id -> rowset_meta | 4682 | | // store rowset id and meta for statistics rs size when delete | 4683 | 7 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; | 4684 | 7 | rowset_keys_to_delete.swap(rowset_keys); | 4685 | 7 | rowsets_to_delete.swap(rowsets); | 4686 | 7 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), | 4687 | 7 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4688 | 7 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4689 | 7 | metrics_context) != 0) { | 4690 | 7 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4691 | 7 | return; | 4692 | 7 | } | 4693 | 7 | for (const auto& [_, rs] : rowsets_to_delete) { | 4694 | 7 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4695 | 7 | return; | 4696 | 7 | } | 4697 | 7 | } | 4698 | 7 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4699 | 7 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4700 | 7 | return; | 4701 | 7 | } | 4702 | 7 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4703 | 7 | }); | 4704 | 7 | return 0; | 4705 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler15recycle_rowsetsEvENK3$_2clEv Line | Count | Source | 4679 | 42 | auto loop_done = [&]() -> int { | 4680 | 42 | std::vector<std::string> rowset_keys_to_delete; | 4681 | | // rowset_id -> rowset_meta | 4682 | | // store rowset id and meta for statistics rs size when delete | 4683 | 42 | std::map<std::string, doris::RowsetMetaCloudPB> rowsets_to_delete; | 4684 | 42 | rowset_keys_to_delete.swap(rowset_keys); | 4685 | 42 | rowsets_to_delete.swap(rowsets); | 4686 | 42 | worker_pool->submit([&, rowset_keys_to_delete = std::move(rowset_keys_to_delete), | 4687 | 42 | rowsets_to_delete = std::move(rowsets_to_delete)]() { | 4688 | 42 | if (delete_rowset_data(rowsets_to_delete, RowsetRecyclingState::FORMAL_ROWSET, | 4689 | 42 | metrics_context) != 0) { | 4690 | 42 | LOG(WARNING) << "failed to delete rowset data, instance_id=" << instance_id_; | 4691 | 42 | return; | 4692 | 42 | } | 4693 | 42 | for (const auto& [_, rs] : rowsets_to_delete) { | 4694 | 42 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 4695 | 42 | return; | 4696 | 42 | } | 4697 | 42 | } | 4698 | 42 | if (txn_remove(txn_kv_.get(), rowset_keys_to_delete) != 0) { | 4699 | 42 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 4700 | 42 | return; | 4701 | 42 | } | 4702 | 42 | num_recycled.fetch_add(rowset_keys_to_delete.size(), std::memory_order_relaxed); | 4703 | 42 | }); | 4704 | 42 | return 0; | 4705 | 42 | }; |
|
4706 | | |
4707 | 22 | if (config::enable_recycler_stats_metrics) { |
4708 | 0 | scan_and_statistics_rowsets(); |
4709 | 0 | } |
4710 | | // recycle_func and loop_done for scan and recycle |
4711 | 22 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv), |
4712 | 22 | std::move(loop_done)); |
4713 | | |
4714 | 22 | worker_pool->stop(); |
4715 | | |
4716 | 22 | if (!async_recycled_rowset_keys.empty()) { |
4717 | 5 | if (txn_remove(txn_kv_.get(), async_recycled_rowset_keys) != 0) { |
4718 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
4719 | 0 | return -1; |
4720 | 5 | } else { |
4721 | 5 | num_recycled.fetch_add(async_recycled_rowset_keys.size(), std::memory_order_relaxed); |
4722 | 5 | } |
4723 | 5 | } |
4724 | 22 | return ret; |
4725 | 22 | } |
4726 | | |
4727 | 13 | int InstanceRecycler::recycle_restore_jobs() { |
4728 | 13 | const std::string task_name = "recycle_restore_jobs"; |
4729 | 13 | int64_t num_scanned = 0; |
4730 | 13 | int64_t num_expired = 0; |
4731 | 13 | int64_t num_recycled = 0; |
4732 | 13 | int64_t num_aborted = 0; |
4733 | | |
4734 | 13 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4735 | | |
4736 | 13 | JobRestoreTabletKeyInfo restore_job_key_info0 {instance_id_, 0}; |
4737 | 13 | JobRestoreTabletKeyInfo restore_job_key_info1 {instance_id_, INT64_MAX}; |
4738 | 13 | std::string restore_job_key0; |
4739 | 13 | std::string restore_job_key1; |
4740 | 13 | job_restore_tablet_key(restore_job_key_info0, &restore_job_key0); |
4741 | 13 | job_restore_tablet_key(restore_job_key_info1, &restore_job_key1); |
4742 | | |
4743 | 13 | LOG_INFO("begin to recycle restore jobs").tag("instance_id", instance_id_); |
4744 | | |
4745 | 13 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4746 | 13 | register_recycle_task(task_name, start_time); |
4747 | | |
4748 | 13 | DORIS_CLOUD_DEFER { |
4749 | 12 | unregister_recycle_task(task_name); |
4750 | 12 | int64_t cost = |
4751 | 12 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4752 | 12 | metrics_context.finish_report(); |
4753 | | |
4754 | 12 | LOG_INFO("recycle restore jobs finished, cost={}s", cost) |
4755 | 12 | .tag("instance_id", instance_id_) |
4756 | 12 | .tag("num_scanned", num_scanned) |
4757 | 12 | .tag("num_expired", num_expired) |
4758 | 12 | .tag("num_recycled", num_recycled) |
4759 | 12 | .tag("num_aborted", num_aborted); |
4760 | 12 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_0clEv Line | Count | Source | 4748 | 12 | DORIS_CLOUD_DEFER { | 4749 | 12 | unregister_recycle_task(task_name); | 4750 | 12 | int64_t cost = | 4751 | 12 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4752 | 12 | metrics_context.finish_report(); | 4753 | | | 4754 | 12 | LOG_INFO("recycle restore jobs finished, cost={}s", cost) | 4755 | 12 | .tag("instance_id", instance_id_) | 4756 | 12 | .tag("num_scanned", num_scanned) | 4757 | 12 | .tag("num_expired", num_expired) | 4758 | 12 | .tag("num_recycled", num_recycled) | 4759 | 12 | .tag("num_aborted", num_aborted); | 4760 | 12 | }; |
|
4761 | | |
4762 | 13 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
4763 | | |
4764 | 13 | std::vector<std::string_view> restore_job_keys; |
4765 | 41 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { |
4766 | 41 | ++num_scanned; |
4767 | 41 | RestoreJobCloudPB restore_job_pb; |
4768 | 41 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { |
4769 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
4770 | 0 | return -1; |
4771 | 0 | } |
4772 | 41 | int64_t expiration = |
4773 | 41 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); |
4774 | 41 | VLOG_DEBUG << "recycle restore job scan, key=" << hex(k) << " num_scanned=" << num_scanned |
4775 | 0 | << " num_expired=" << num_expired << " expiration time=" << expiration |
4776 | 0 | << " job expiration=" << restore_job_pb.expired_at_s() |
4777 | 0 | << " ctime=" << restore_job_pb.ctime_s() << " mtime=" << restore_job_pb.mtime_s() |
4778 | 0 | << " state=" << restore_job_pb.state(); |
4779 | 41 | int64_t current_time = ::time(nullptr); |
4780 | 41 | if (current_time < expiration) { // not expired |
4781 | 0 | return 0; |
4782 | 0 | } |
4783 | 41 | ++num_expired; |
4784 | | |
4785 | 41 | int64_t tablet_id = restore_job_pb.tablet_id(); |
4786 | 41 | LOG(INFO) << "begin to recycle expired restore jobs, instance_id=" << instance_id_ |
4787 | 41 | << " restore_job_pb=" << restore_job_pb.DebugString(); |
4788 | | |
4789 | 41 | std::unique_ptr<Transaction> txn; |
4790 | 41 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
4791 | 41 | if (err != TxnErrorCode::TXN_OK) { |
4792 | 0 | LOG_WARNING("failed to recycle restore job") |
4793 | 0 | .tag("err", err) |
4794 | 0 | .tag("tablet id", tablet_id) |
4795 | 0 | .tag("instance_id", instance_id_) |
4796 | 0 | .tag("reason", "failed to create txn"); |
4797 | 0 | return -1; |
4798 | 0 | } |
4799 | | |
4800 | 41 | std::string val; |
4801 | 41 | err = txn->get(k, &val); |
4802 | 41 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { // maybe recycled, skip it |
4803 | 0 | LOG_INFO("restore job {} has been recycled", tablet_id); |
4804 | 0 | return 0; |
4805 | 0 | } |
4806 | 41 | if (err != TxnErrorCode::TXN_OK) { |
4807 | 0 | LOG_WARNING("failed to get kv"); |
4808 | 0 | return -1; |
4809 | 0 | } |
4810 | 41 | restore_job_pb.Clear(); |
4811 | 41 | if (!restore_job_pb.ParseFromString(val)) { |
4812 | 0 | LOG_WARNING("malformed recycle restore job value").tag("key", hex(k)); |
4813 | 0 | return -1; |
4814 | 0 | } |
4815 | | |
4816 | | // PREPARED or COMMITTED, change state to DROPPED and return |
4817 | 41 | if (restore_job_pb.state() == RestoreJobCloudPB::PREPARED || |
4818 | 41 | restore_job_pb.state() == RestoreJobCloudPB::COMMITTED) { |
4819 | 0 | restore_job_pb.set_state(RestoreJobCloudPB::DROPPED); |
4820 | 0 | restore_job_pb.set_need_recycle_data(true); |
4821 | 0 | txn->put(k, restore_job_pb.SerializeAsString()); |
4822 | 0 | err = txn->commit(); |
4823 | 0 | if (err != TxnErrorCode::TXN_OK) { |
4824 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
4825 | 0 | return -1; |
4826 | 0 | } |
4827 | 0 | num_aborted++; |
4828 | 0 | return 0; |
4829 | 0 | } |
4830 | | |
4831 | | // Change state to RECYCLING |
4832 | 41 | if (restore_job_pb.state() != RestoreJobCloudPB::RECYCLING) { |
4833 | 21 | restore_job_pb.set_state(RestoreJobCloudPB::RECYCLING); |
4834 | 21 | txn->put(k, restore_job_pb.SerializeAsString()); |
4835 | 21 | err = txn->commit(); |
4836 | 21 | if (err != TxnErrorCode::TXN_OK) { |
4837 | 0 | LOG_WARNING("failed to commit txn: {}", err); |
4838 | 0 | return -1; |
4839 | 0 | } |
4840 | 21 | return 0; |
4841 | 21 | } |
4842 | | |
4843 | 20 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); |
4844 | 20 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); |
4845 | | |
4846 | | // Recycle all data associated with the restore job. |
4847 | | // This includes rowsets, segments, and related resources. |
4848 | 20 | bool need_recycle_data = restore_job_pb.need_recycle_data(); |
4849 | 20 | if (need_recycle_data && recycle_tablet(tablet_id, metrics_context) != 0) { |
4850 | 0 | LOG_WARNING("failed to recycle tablet") |
4851 | 0 | .tag("tablet_id", tablet_id) |
4852 | 0 | .tag("instance_id", instance_id_); |
4853 | 0 | return -1; |
4854 | 0 | } |
4855 | | |
4856 | | // delete all restore job rowset kv |
4857 | 20 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); |
4858 | | |
4859 | 20 | err = txn->commit(); |
4860 | 20 | if (err != TxnErrorCode::TXN_OK) { |
4861 | 0 | LOG_WARNING("failed to recycle tablet restore job rowset kv") |
4862 | 0 | .tag("err", err) |
4863 | 0 | .tag("tablet id", tablet_id) |
4864 | 0 | .tag("instance_id", instance_id_) |
4865 | 0 | .tag("reason", "failed to commit txn"); |
4866 | 0 | return -1; |
4867 | 0 | } |
4868 | | |
4869 | 20 | metrics_context.total_recycled_num = ++num_recycled; |
4870 | 20 | metrics_context.report(); |
4871 | 20 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
4872 | 20 | restore_job_keys.push_back(k); |
4873 | | |
4874 | 20 | LOG(INFO) << "finish to recycle expired restore job, key=" << hex(k) |
4875 | 20 | << " tablet_id=" << tablet_id; |
4876 | 20 | return 0; |
4877 | 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 | 4765 | 41 | auto recycle_func = [&, this](std::string_view k, std::string_view v) -> int { | 4766 | 41 | ++num_scanned; | 4767 | 41 | RestoreJobCloudPB restore_job_pb; | 4768 | 41 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { | 4769 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); | 4770 | 0 | return -1; | 4771 | 0 | } | 4772 | 41 | int64_t expiration = | 4773 | 41 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); | 4774 | 41 | VLOG_DEBUG << "recycle restore job scan, key=" << hex(k) << " num_scanned=" << num_scanned | 4775 | 0 | << " num_expired=" << num_expired << " expiration time=" << expiration | 4776 | 0 | << " job expiration=" << restore_job_pb.expired_at_s() | 4777 | 0 | << " ctime=" << restore_job_pb.ctime_s() << " mtime=" << restore_job_pb.mtime_s() | 4778 | 0 | << " state=" << restore_job_pb.state(); | 4779 | 41 | int64_t current_time = ::time(nullptr); | 4780 | 41 | if (current_time < expiration) { // not expired | 4781 | 0 | return 0; | 4782 | 0 | } | 4783 | 41 | ++num_expired; | 4784 | | | 4785 | 41 | int64_t tablet_id = restore_job_pb.tablet_id(); | 4786 | 41 | LOG(INFO) << "begin to recycle expired restore jobs, instance_id=" << instance_id_ | 4787 | 41 | << " restore_job_pb=" << restore_job_pb.DebugString(); | 4788 | | | 4789 | 41 | std::unique_ptr<Transaction> txn; | 4790 | 41 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 4791 | 41 | if (err != TxnErrorCode::TXN_OK) { | 4792 | 0 | LOG_WARNING("failed to recycle restore job") | 4793 | 0 | .tag("err", err) | 4794 | 0 | .tag("tablet id", tablet_id) | 4795 | 0 | .tag("instance_id", instance_id_) | 4796 | 0 | .tag("reason", "failed to create txn"); | 4797 | 0 | return -1; | 4798 | 0 | } | 4799 | | | 4800 | 41 | std::string val; | 4801 | 41 | err = txn->get(k, &val); | 4802 | 41 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { // maybe recycled, skip it | 4803 | 0 | LOG_INFO("restore job {} has been recycled", tablet_id); | 4804 | 0 | return 0; | 4805 | 0 | } | 4806 | 41 | if (err != TxnErrorCode::TXN_OK) { | 4807 | 0 | LOG_WARNING("failed to get kv"); | 4808 | 0 | return -1; | 4809 | 0 | } | 4810 | 41 | restore_job_pb.Clear(); | 4811 | 41 | if (!restore_job_pb.ParseFromString(val)) { | 4812 | 0 | LOG_WARNING("malformed recycle restore job value").tag("key", hex(k)); | 4813 | 0 | return -1; | 4814 | 0 | } | 4815 | | | 4816 | | // PREPARED or COMMITTED, change state to DROPPED and return | 4817 | 41 | if (restore_job_pb.state() == RestoreJobCloudPB::PREPARED || | 4818 | 41 | restore_job_pb.state() == RestoreJobCloudPB::COMMITTED) { | 4819 | 0 | restore_job_pb.set_state(RestoreJobCloudPB::DROPPED); | 4820 | 0 | restore_job_pb.set_need_recycle_data(true); | 4821 | 0 | txn->put(k, restore_job_pb.SerializeAsString()); | 4822 | 0 | err = txn->commit(); | 4823 | 0 | if (err != TxnErrorCode::TXN_OK) { | 4824 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 4825 | 0 | return -1; | 4826 | 0 | } | 4827 | 0 | num_aborted++; | 4828 | 0 | return 0; | 4829 | 0 | } | 4830 | | | 4831 | | // Change state to RECYCLING | 4832 | 41 | if (restore_job_pb.state() != RestoreJobCloudPB::RECYCLING) { | 4833 | 21 | restore_job_pb.set_state(RestoreJobCloudPB::RECYCLING); | 4834 | 21 | txn->put(k, restore_job_pb.SerializeAsString()); | 4835 | 21 | err = txn->commit(); | 4836 | 21 | if (err != TxnErrorCode::TXN_OK) { | 4837 | 0 | LOG_WARNING("failed to commit txn: {}", err); | 4838 | 0 | return -1; | 4839 | 0 | } | 4840 | 21 | return 0; | 4841 | 21 | } | 4842 | | | 4843 | 20 | std::string restore_job_rs_key0 = job_restore_rowset_key({instance_id_, tablet_id, 0}); | 4844 | 20 | std::string restore_job_rs_key1 = job_restore_rowset_key({instance_id_, tablet_id + 1, 0}); | 4845 | | | 4846 | | // Recycle all data associated with the restore job. | 4847 | | // This includes rowsets, segments, and related resources. | 4848 | 20 | bool need_recycle_data = restore_job_pb.need_recycle_data(); | 4849 | 20 | if (need_recycle_data && recycle_tablet(tablet_id, metrics_context) != 0) { | 4850 | 0 | LOG_WARNING("failed to recycle tablet") | 4851 | 0 | .tag("tablet_id", tablet_id) | 4852 | 0 | .tag("instance_id", instance_id_); | 4853 | 0 | return -1; | 4854 | 0 | } | 4855 | | | 4856 | | // delete all restore job rowset kv | 4857 | 20 | txn->remove(restore_job_rs_key0, restore_job_rs_key1); | 4858 | | | 4859 | 20 | err = txn->commit(); | 4860 | 20 | if (err != TxnErrorCode::TXN_OK) { | 4861 | 0 | LOG_WARNING("failed to recycle tablet restore job rowset kv") | 4862 | 0 | .tag("err", err) | 4863 | 0 | .tag("tablet id", tablet_id) | 4864 | 0 | .tag("instance_id", instance_id_) | 4865 | 0 | .tag("reason", "failed to commit txn"); | 4866 | 0 | return -1; | 4867 | 0 | } | 4868 | | | 4869 | 20 | metrics_context.total_recycled_num = ++num_recycled; | 4870 | 20 | metrics_context.report(); | 4871 | 20 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 4872 | 20 | restore_job_keys.push_back(k); | 4873 | | | 4874 | 20 | LOG(INFO) << "finish to recycle expired restore job, key=" << hex(k) | 4875 | 20 | << " tablet_id=" << tablet_id; | 4876 | 20 | return 0; | 4877 | 20 | }; |
|
4878 | | |
4879 | 13 | auto loop_done = [&restore_job_keys, this]() -> int { |
4880 | 3 | if (restore_job_keys.empty()) return 0; |
4881 | 1 | DORIS_CLOUD_DEFER { |
4882 | 1 | restore_job_keys.clear(); |
4883 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEvENKUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 4881 | 1 | DORIS_CLOUD_DEFER { | 4882 | 1 | restore_job_keys.clear(); | 4883 | 1 | }; |
|
4884 | | |
4885 | 1 | std::unique_ptr<Transaction> txn; |
4886 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
4887 | 1 | if (err != TxnErrorCode::TXN_OK) { |
4888 | 0 | LOG_WARNING("failed to recycle restore job") |
4889 | 0 | .tag("err", err) |
4890 | 0 | .tag("instance_id", instance_id_) |
4891 | 0 | .tag("reason", "failed to create txn"); |
4892 | 0 | return -1; |
4893 | 0 | } |
4894 | 20 | for (auto& k : restore_job_keys) { |
4895 | 20 | txn->remove(k); |
4896 | 20 | } |
4897 | 1 | err = txn->commit(); |
4898 | 1 | if (err != TxnErrorCode::TXN_OK) { |
4899 | 0 | LOG_WARNING("failed to recycle restore job") |
4900 | 0 | .tag("err", err) |
4901 | 0 | .tag("instance_id", instance_id_) |
4902 | 0 | .tag("reason", "failed to commit txn"); |
4903 | 0 | return -1; |
4904 | 0 | } |
4905 | 1 | return 0; |
4906 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler20recycle_restore_jobsEvENK3$_1clEv Line | Count | Source | 4879 | 3 | auto loop_done = [&restore_job_keys, this]() -> int { | 4880 | 3 | if (restore_job_keys.empty()) return 0; | 4881 | 1 | DORIS_CLOUD_DEFER { | 4882 | 1 | restore_job_keys.clear(); | 4883 | 1 | }; | 4884 | | | 4885 | 1 | std::unique_ptr<Transaction> txn; | 4886 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 4887 | 1 | if (err != TxnErrorCode::TXN_OK) { | 4888 | 0 | LOG_WARNING("failed to recycle restore job") | 4889 | 0 | .tag("err", err) | 4890 | 0 | .tag("instance_id", instance_id_) | 4891 | 0 | .tag("reason", "failed to create txn"); | 4892 | 0 | return -1; | 4893 | 0 | } | 4894 | 20 | for (auto& k : restore_job_keys) { | 4895 | 20 | txn->remove(k); | 4896 | 20 | } | 4897 | 1 | err = txn->commit(); | 4898 | 1 | if (err != TxnErrorCode::TXN_OK) { | 4899 | 0 | LOG_WARNING("failed to recycle restore job") | 4900 | 0 | .tag("err", err) | 4901 | 0 | .tag("instance_id", instance_id_) | 4902 | 0 | .tag("reason", "failed to commit txn"); | 4903 | 0 | return -1; | 4904 | 0 | } | 4905 | 1 | return 0; | 4906 | 1 | }; |
|
4907 | | |
4908 | 13 | if (config::enable_recycler_stats_metrics) { |
4909 | 0 | scan_and_statistics_restore_jobs(); |
4910 | 0 | } |
4911 | | |
4912 | 13 | return scan_and_recycle(restore_job_key0, restore_job_key1, std::move(recycle_func), |
4913 | 13 | std::move(loop_done)); |
4914 | 13 | } |
4915 | | |
4916 | 9 | int InstanceRecycler::recycle_versioned_rowsets() { |
4917 | 9 | const std::string task_name = "recycle_rowsets"; |
4918 | 9 | int64_t num_scanned = 0; |
4919 | 9 | int64_t num_expired = 0; |
4920 | 9 | int64_t num_prepare = 0; |
4921 | 9 | int64_t num_compacted = 0; |
4922 | 9 | int64_t num_empty_rowset = 0; |
4923 | 9 | size_t total_rowset_key_size = 0; |
4924 | 9 | size_t total_rowset_value_size = 0; |
4925 | 9 | size_t expired_rowset_size = 0; |
4926 | 9 | std::atomic_long num_recycled = 0; |
4927 | 9 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
4928 | | |
4929 | 9 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
4930 | 9 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
4931 | 9 | std::string recyc_rs_key0; |
4932 | 9 | std::string recyc_rs_key1; |
4933 | 9 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
4934 | 9 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
4935 | | |
4936 | 9 | LOG_WARNING("begin to recycle rowsets").tag("instance_id", instance_id_); |
4937 | | |
4938 | 9 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
4939 | 9 | register_recycle_task(task_name, start_time); |
4940 | | |
4941 | 9 | DORIS_CLOUD_DEFER { |
4942 | 9 | unregister_recycle_task(task_name); |
4943 | 9 | int64_t cost = |
4944 | 9 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
4945 | 9 | metrics_context.finish_report(); |
4946 | 9 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) |
4947 | 9 | .tag("instance_id", instance_id_) |
4948 | 9 | .tag("num_scanned", num_scanned) |
4949 | 9 | .tag("num_expired", num_expired) |
4950 | 9 | .tag("num_recycled", num_recycled) |
4951 | 9 | .tag("num_recycled.prepare", num_prepare) |
4952 | 9 | .tag("num_recycled.compacted", num_compacted) |
4953 | 9 | .tag("num_recycled.empty_rowset", num_empty_rowset) |
4954 | 9 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
4955 | 9 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
4956 | 9 | .tag("expired_rowset_meta_size", expired_rowset_size); |
4957 | 9 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_0clEv Line | Count | Source | 4941 | 9 | DORIS_CLOUD_DEFER { | 4942 | 9 | unregister_recycle_task(task_name); | 4943 | 9 | int64_t cost = | 4944 | 9 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 4945 | 9 | metrics_context.finish_report(); | 4946 | 9 | LOG_WARNING("recycle rowsets finished, cost={}s", cost) | 4947 | 9 | .tag("instance_id", instance_id_) | 4948 | 9 | .tag("num_scanned", num_scanned) | 4949 | 9 | .tag("num_expired", num_expired) | 4950 | 9 | .tag("num_recycled", num_recycled) | 4951 | 9 | .tag("num_recycled.prepare", num_prepare) | 4952 | 9 | .tag("num_recycled.compacted", num_compacted) | 4953 | 9 | .tag("num_recycled.empty_rowset", num_empty_rowset) | 4954 | 9 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 4955 | 9 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 4956 | 9 | .tag("expired_rowset_meta_size", expired_rowset_size); | 4957 | 9 | }; |
|
4958 | | |
4959 | 9 | std::vector<std::string> orphan_rowset_keys; |
4960 | | |
4961 | | // Store keys of rowset recycled by background workers |
4962 | 9 | std::mutex async_recycled_rowset_keys_mutex; |
4963 | 9 | std::vector<std::string> async_recycled_rowset_keys; |
4964 | 9 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
4965 | 9 | config::instance_recycler_worker_pool_size, "recycle_rowsets"); |
4966 | 9 | worker_pool->start(); |
4967 | 9 | auto delete_rowset_data_by_prefix = [&](std::string key, const std::string& resource_id, |
4968 | 400 | int64_t tablet_id, const std::string& rowset_id) { |
4969 | | // Try to delete rowset data in background thread |
4970 | 400 | int ret = worker_pool->submit_with_timeout( |
4971 | 400 | [&, resource_id, tablet_id, rowset_id, key]() mutable { |
4972 | 400 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
4973 | 400 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
4974 | 400 | return; |
4975 | 400 | } |
4976 | | // The async recycled rowsets are staled format or has not been used, |
4977 | | // so we don't need to check the rowset ref count key. |
4978 | 0 | std::vector<std::string> keys; |
4979 | 0 | { |
4980 | 0 | std::lock_guard lock(async_recycled_rowset_keys_mutex); |
4981 | 0 | async_recycled_rowset_keys.push_back(std::move(key)); |
4982 | 0 | if (async_recycled_rowset_keys.size() > 100) { |
4983 | 0 | keys.swap(async_recycled_rowset_keys); |
4984 | 0 | } |
4985 | 0 | } |
4986 | 0 | if (keys.empty()) return; |
4987 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { |
4988 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" |
4989 | 0 | << instance_id_; |
4990 | 0 | } else { |
4991 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); |
4992 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, |
4993 | 0 | num_recycled, start_time); |
4994 | 0 | } |
4995 | 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 | 4971 | 400 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4972 | 400 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4973 | 400 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4974 | 400 | return; | 4975 | 400 | } | 4976 | | // The async recycled rowsets are staled format or has not been used, | 4977 | | // so we don't need to check the rowset ref count key. | 4978 | 0 | std::vector<std::string> keys; | 4979 | 0 | { | 4980 | 0 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4981 | 0 | async_recycled_rowset_keys.push_back(std::move(key)); | 4982 | 0 | if (async_recycled_rowset_keys.size() > 100) { | 4983 | 0 | keys.swap(async_recycled_rowset_keys); | 4984 | 0 | } | 4985 | 0 | } | 4986 | 0 | if (keys.empty()) return; | 4987 | 0 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4988 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4989 | 0 | << instance_id_; | 4990 | 0 | } else { | 4991 | 0 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4992 | 0 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4993 | 0 | num_recycled, start_time); | 4994 | 0 | } | 4995 | 0 | }, |
|
4996 | 400 | 0); |
4997 | 400 | if (ret == 0) return 0; |
4998 | | // Submit task failed, delete rowset data in current thread |
4999 | 0 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { |
5000 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); |
5001 | 0 | return -1; |
5002 | 0 | } |
5003 | 0 | orphan_rowset_keys.push_back(std::move(key)); |
5004 | 0 | return 0; |
5005 | 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 | 4968 | 400 | int64_t tablet_id, const std::string& rowset_id) { | 4969 | | // Try to delete rowset data in background thread | 4970 | 400 | int ret = worker_pool->submit_with_timeout( | 4971 | 400 | [&, resource_id, tablet_id, rowset_id, key]() mutable { | 4972 | 400 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 4973 | 400 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 4974 | 400 | return; | 4975 | 400 | } | 4976 | | // The async recycled rowsets are staled format or has not been used, | 4977 | | // so we don't need to check the rowset ref count key. | 4978 | 400 | std::vector<std::string> keys; | 4979 | 400 | { | 4980 | 400 | std::lock_guard lock(async_recycled_rowset_keys_mutex); | 4981 | 400 | async_recycled_rowset_keys.push_back(std::move(key)); | 4982 | 400 | if (async_recycled_rowset_keys.size() > 100) { | 4983 | 400 | keys.swap(async_recycled_rowset_keys); | 4984 | 400 | } | 4985 | 400 | } | 4986 | 400 | if (keys.empty()) return; | 4987 | 400 | if (txn_remove(txn_kv_.get(), keys) != 0) { | 4988 | 400 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" | 4989 | 400 | << instance_id_; | 4990 | 400 | } else { | 4991 | 400 | num_recycled.fetch_add(keys.size(), std::memory_order_relaxed); | 4992 | 400 | check_recycle_task(instance_id_, "recycle_rowsets", num_scanned, | 4993 | 400 | num_recycled, start_time); | 4994 | 400 | } | 4995 | 400 | }, | 4996 | 400 | 0); | 4997 | 400 | if (ret == 0) return 0; | 4998 | | // Submit task failed, delete rowset data in current thread | 4999 | 0 | if (delete_rowset_data(resource_id, tablet_id, rowset_id) != 0) { | 5000 | 0 | LOG(WARNING) << "failed to delete rowset data, key=" << hex(key); | 5001 | 0 | return -1; | 5002 | 0 | } | 5003 | 0 | orphan_rowset_keys.push_back(std::move(key)); | 5004 | 0 | return 0; | 5005 | 0 | }; |
|
5006 | | |
5007 | 9 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5008 | | |
5009 | 2.01k | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { |
5010 | 2.01k | ++num_scanned; |
5011 | 2.01k | total_rowset_key_size += k.size(); |
5012 | 2.01k | total_rowset_value_size += v.size(); |
5013 | 2.01k | RecycleRowsetPB rowset; |
5014 | 2.01k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
5015 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); |
5016 | 0 | return -1; |
5017 | 0 | } |
5018 | | |
5019 | 2.01k | int final_expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
5020 | | |
5021 | 2.01k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
5022 | 0 | << " num_expired=" << num_expired << " expiration=" << final_expiration |
5023 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); |
5024 | 2.01k | int64_t current_time = ::time(nullptr); |
5025 | 2.01k | if (current_time < final_expiration) { // not expired |
5026 | 0 | return 0; |
5027 | 0 | } |
5028 | 2.01k | ++num_expired; |
5029 | 2.01k | expired_rowset_size += v.size(); |
5030 | 2.01k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` |
5031 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible |
5032 | | // in old version, keep this key-value pair and it needs to be checked manually |
5033 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
5034 | 0 | return -1; |
5035 | 0 | } |
5036 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { |
5037 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. |
5038 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" |
5039 | 0 | << hex(k) << " value=" << proto_to_json(rowset); |
5040 | 0 | orphan_rowset_keys.emplace_back(k); |
5041 | 0 | return -1; |
5042 | 0 | } |
5043 | | // decode rowset_id |
5044 | 0 | auto k1 = k; |
5045 | 0 | k1.remove_prefix(1); |
5046 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5047 | 0 | decode_key(&k1, &out); |
5048 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB |
5049 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); |
5050 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5051 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id; |
5052 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), |
5053 | 0 | rowset.tablet_id(), rowset_id) != 0) { |
5054 | 0 | return -1; |
5055 | 0 | } |
5056 | 0 | return 0; |
5057 | 0 | } |
5058 | | // TODO(plat1ko): check rowset not referenced |
5059 | 2.01k | auto rowset_meta = rowset.mutable_rowset_meta(); |
5060 | 2.01k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible |
5061 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { |
5062 | 0 | LOG_INFO("recycle rowset that has empty resource id"); |
5063 | 0 | } else { |
5064 | | // other situations, keep this key-value pair and it needs to be checked manually |
5065 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); |
5066 | 0 | return -1; |
5067 | 0 | } |
5068 | 0 | } |
5069 | 2.01k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5070 | 2.01k | << " tablet_id=" << rowset_meta->tablet_id() |
5071 | 2.01k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" |
5072 | 2.01k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() |
5073 | 2.01k | << "] txn_id=" << rowset_meta->txn_id() |
5074 | 2.01k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) |
5075 | 2.01k | << " rowset_meta_size=" << v.size() |
5076 | 2.01k | << " creation_time=" << rowset_meta->creation_time(); |
5077 | 2.01k | if (rowset.type() == RecycleRowsetPB::PREPARE) { |
5078 | | // unable to calculate file path, can only be deleted by rowset id prefix |
5079 | 400 | num_prepare += 1; |
5080 | 400 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), |
5081 | 400 | rowset_meta->tablet_id(), |
5082 | 400 | rowset_meta->rowset_id_v2()) != 0) { |
5083 | 0 | return -1; |
5084 | 0 | } |
5085 | 1.61k | } else { |
5086 | 1.61k | bool is_compacted = rowset.type() == RecycleRowsetPB::COMPACT; |
5087 | 1.61k | worker_pool->submit( |
5088 | 1.61k | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { |
5089 | 1.61k | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { |
5090 | 1.60k | return; |
5091 | 1.60k | } |
5092 | 13 | num_compacted += is_compacted; |
5093 | 13 | num_recycled.fetch_add(1, std::memory_order_relaxed); |
5094 | 13 | if (rowset_meta.num_segments() == 0) { |
5095 | 0 | ++num_empty_rowset; |
5096 | 0 | } |
5097 | 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 | 5088 | 1.61k | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { | 5089 | 1.61k | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { | 5090 | 1.60k | return; | 5091 | 1.60k | } | 5092 | 13 | num_compacted += is_compacted; | 5093 | 13 | num_recycled.fetch_add(1, std::memory_order_relaxed); | 5094 | 13 | if (rowset_meta.num_segments() == 0) { | 5095 | 0 | ++num_empty_rowset; | 5096 | 0 | } | 5097 | 13 | }); |
|
5098 | 1.61k | } |
5099 | 2.01k | return 0; |
5100 | 2.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 | 5009 | 2.01k | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5010 | 2.01k | ++num_scanned; | 5011 | 2.01k | total_rowset_key_size += k.size(); | 5012 | 2.01k | total_rowset_value_size += v.size(); | 5013 | 2.01k | RecycleRowsetPB rowset; | 5014 | 2.01k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5015 | 0 | LOG_WARNING("malformed recycle rowset").tag("key", hex(k)); | 5016 | 0 | return -1; | 5017 | 0 | } | 5018 | | | 5019 | 2.01k | int final_expiration = calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5020 | | | 5021 | 2.01k | VLOG_DEBUG << "recycle rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5022 | 0 | << " num_expired=" << num_expired << " expiration=" << final_expiration | 5023 | 0 | << " RecycleRowsetPB=" << rowset.ShortDebugString(); | 5024 | 2.01k | int64_t current_time = ::time(nullptr); | 5025 | 2.01k | if (current_time < final_expiration) { // not expired | 5026 | 0 | return 0; | 5027 | 0 | } | 5028 | 2.01k | ++num_expired; | 5029 | 2.01k | expired_rowset_size += v.size(); | 5030 | 2.01k | if (!rowset.has_type()) { // old version `RecycleRowsetPB` | 5031 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { // impossible | 5032 | | // in old version, keep this key-value pair and it needs to be checked manually | 5033 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 5034 | 0 | return -1; | 5035 | 0 | } | 5036 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { | 5037 | | // old version `RecycleRowsetPB` may has empty resource_id, just remove the kv. | 5038 | 0 | LOG(INFO) << "delete the recycle rowset kv that has empty resource_id, key=" | 5039 | 0 | << hex(k) << " value=" << proto_to_json(rowset); | 5040 | 0 | orphan_rowset_keys.emplace_back(k); | 5041 | 0 | return -1; | 5042 | 0 | } | 5043 | | // decode rowset_id | 5044 | 0 | auto k1 = k; | 5045 | 0 | k1.remove_prefix(1); | 5046 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5047 | 0 | decode_key(&k1, &out); | 5048 | | // 0x01 "recycle" ${instance_id} "rowset" ${tablet_id} ${rowset_id} -> RecycleRowsetPB | 5049 | 0 | const auto& rowset_id = std::get<std::string>(std::get<0>(out[4])); | 5050 | 0 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5051 | 0 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset_id; | 5052 | 0 | if (delete_rowset_data_by_prefix(std::string(k), rowset.resource_id(), | 5053 | 0 | rowset.tablet_id(), rowset_id) != 0) { | 5054 | 0 | return -1; | 5055 | 0 | } | 5056 | 0 | return 0; | 5057 | 0 | } | 5058 | | // TODO(plat1ko): check rowset not referenced | 5059 | 2.01k | auto rowset_meta = rowset.mutable_rowset_meta(); | 5060 | 2.01k | if (!rowset_meta->has_resource_id()) [[unlikely]] { // impossible | 5061 | 0 | if (rowset.type() != RecycleRowsetPB::PREPARE && rowset_meta->num_segments() == 0) { | 5062 | 0 | LOG_INFO("recycle rowset that has empty resource id"); | 5063 | 0 | } else { | 5064 | | // other situations, keep this key-value pair and it needs to be checked manually | 5065 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", hex(k)); | 5066 | 0 | return -1; | 5067 | 0 | } | 5068 | 0 | } | 5069 | 2.01k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5070 | 2.01k | << " tablet_id=" << rowset_meta->tablet_id() | 5071 | 2.01k | << " rowset_id=" << rowset_meta->rowset_id_v2() << " version=[" | 5072 | 2.01k | << rowset_meta->start_version() << '-' << rowset_meta->end_version() | 5073 | 2.01k | << "] txn_id=" << rowset_meta->txn_id() | 5074 | 2.01k | << " type=" << RecycleRowsetPB_Type_Name(rowset.type()) | 5075 | 2.01k | << " rowset_meta_size=" << v.size() | 5076 | 2.01k | << " creation_time=" << rowset_meta->creation_time(); | 5077 | 2.01k | if (rowset.type() == RecycleRowsetPB::PREPARE) { | 5078 | | // unable to calculate file path, can only be deleted by rowset id prefix | 5079 | 400 | num_prepare += 1; | 5080 | 400 | if (delete_rowset_data_by_prefix(std::string(k), rowset_meta->resource_id(), | 5081 | 400 | rowset_meta->tablet_id(), | 5082 | 400 | rowset_meta->rowset_id_v2()) != 0) { | 5083 | 0 | return -1; | 5084 | 0 | } | 5085 | 1.61k | } else { | 5086 | 1.61k | bool is_compacted = rowset.type() == RecycleRowsetPB::COMPACT; | 5087 | 1.61k | worker_pool->submit( | 5088 | 1.61k | [&, is_compacted, k = std::string(k), rowset_meta = std::move(*rowset_meta)]() { | 5089 | 1.61k | if (recycle_rowset_meta_and_data(k, rowset_meta) != 0) { | 5090 | 1.61k | return; | 5091 | 1.61k | } | 5092 | 1.61k | num_compacted += is_compacted; | 5093 | 1.61k | num_recycled.fetch_add(1, std::memory_order_relaxed); | 5094 | 1.61k | if (rowset_meta.num_segments() == 0) { | 5095 | 1.61k | ++num_empty_rowset; | 5096 | 1.61k | } | 5097 | 1.61k | }); | 5098 | 1.61k | } | 5099 | 2.01k | return 0; | 5100 | 2.01k | }; |
|
5101 | | |
5102 | 9 | if (config::enable_recycler_stats_metrics) { |
5103 | 0 | scan_and_statistics_rowsets(); |
5104 | 0 | } |
5105 | | |
5106 | 9 | auto loop_done = [&]() -> int { |
5107 | 6 | if (txn_remove(txn_kv_.get(), orphan_rowset_keys)) { |
5108 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
5109 | 0 | } |
5110 | 6 | orphan_rowset_keys.clear(); |
5111 | 6 | return 0; |
5112 | 6 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_2clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_versioned_rowsetsEvENK3$_2clEv Line | Count | Source | 5106 | 6 | auto loop_done = [&]() -> int { | 5107 | 6 | if (txn_remove(txn_kv_.get(), orphan_rowset_keys)) { | 5108 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; | 5109 | 0 | } | 5110 | 6 | orphan_rowset_keys.clear(); | 5111 | 6 | return 0; | 5112 | 6 | }; |
|
5113 | | |
5114 | | // recycle_func and loop_done for scan and recycle |
5115 | 9 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv), |
5116 | 9 | std::move(loop_done)); |
5117 | | |
5118 | 9 | worker_pool->stop(); |
5119 | | |
5120 | 9 | if (!async_recycled_rowset_keys.empty()) { |
5121 | 0 | if (txn_remove(txn_kv_.get(), async_recycled_rowset_keys) != 0) { |
5122 | 0 | LOG(WARNING) << "failed to delete recycle rowset kv, instance_id=" << instance_id_; |
5123 | 0 | return -1; |
5124 | 0 | } else { |
5125 | 0 | num_recycled.fetch_add(async_recycled_rowset_keys.size(), std::memory_order_relaxed); |
5126 | 0 | } |
5127 | 0 | } |
5128 | 9 | return ret; |
5129 | 9 | } |
5130 | | |
5131 | | int InstanceRecycler::recycle_rowset_meta_and_data(std::string_view recycle_rowset_key, |
5132 | | const RowsetMetaCloudPB& rowset_meta, |
5133 | 1.61k | std::string_view non_versioned_rowset_key) { |
5134 | 1.61k | constexpr int MAX_RETRY = 10; |
5135 | 1.61k | int64_t tablet_id = rowset_meta.tablet_id(); |
5136 | 1.61k | const std::string& rowset_id = rowset_meta.rowset_id_v2(); |
5137 | 1.61k | std::string_view reference_instance_id = instance_id_; |
5138 | 1.61k | if (rowset_meta.has_reference_instance_id()) { |
5139 | 8 | reference_instance_id = rowset_meta.reference_instance_id(); |
5140 | 8 | } |
5141 | | |
5142 | 1.61k | AnnotateTag tablet_id_tag("tablet_id", tablet_id); |
5143 | 1.61k | AnnotateTag rowset_id_tag("rowset_id", rowset_id); |
5144 | 1.61k | AnnotateTag rowset_key_tag("recycle_rowset_key", hex(recycle_rowset_key)); |
5145 | 1.61k | AnnotateTag instance_id_tag("instance_id", instance_id_); |
5146 | 1.61k | AnnotateTag ref_instance_id_tag("ref_instance_id", reference_instance_id); |
5147 | 1.61k | for (int i = 0; i < MAX_RETRY; ++i) { |
5148 | 1.61k | std::unique_ptr<Transaction> txn; |
5149 | 1.61k | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5150 | 1.61k | if (err != TxnErrorCode::TXN_OK) { |
5151 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
5152 | 0 | return -1; |
5153 | 0 | } |
5154 | | |
5155 | 1.61k | std::string rowset_ref_count_key = |
5156 | 1.61k | versioned::data_rowset_ref_count_key({reference_instance_id, tablet_id, rowset_id}); |
5157 | 1.61k | int64_t ref_count = 0; |
5158 | 1.61k | { |
5159 | 1.61k | std::string value; |
5160 | 1.61k | TxnErrorCode err = txn->get(rowset_ref_count_key, &value); |
5161 | 1.61k | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
5162 | | // This is the old version rowset, we could recycle it directly. |
5163 | 1.60k | ref_count = 1; |
5164 | 1.60k | } else if (err != TxnErrorCode::TXN_OK) { |
5165 | 0 | LOG_WARNING("failed to get rowset ref count key").tag("err", err); |
5166 | 0 | return -1; |
5167 | 11 | } else if (!txn->decode_atomic_int(value, &ref_count)) { |
5168 | 0 | LOG_WARNING("failed to decode rowset data ref count").tag("value", hex(value)); |
5169 | 0 | return -1; |
5170 | 0 | } |
5171 | 1.61k | } |
5172 | | |
5173 | 1.61k | if (ref_count == 1) { |
5174 | | // It would not be added since it is recycling. |
5175 | 1.61k | if (delete_rowset_data(rowset_meta) != 0) { |
5176 | 1.60k | LOG_WARNING("failed to delete rowset data"); |
5177 | 1.60k | return -1; |
5178 | 1.60k | } |
5179 | | |
5180 | | // Reset the transaction to avoid timeout. |
5181 | 10 | err = txn_kv_->create_txn(&txn); |
5182 | 10 | if (err != TxnErrorCode::TXN_OK) { |
5183 | 0 | LOG_WARNING("failed to create txn").tag("err", err); |
5184 | 0 | return -1; |
5185 | 0 | } |
5186 | 10 | txn->remove(rowset_ref_count_key); |
5187 | 10 | LOG_INFO("delete rowset data ref count key") |
5188 | 10 | .tag("txn_id", rowset_meta.txn_id()) |
5189 | 10 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
5190 | | |
5191 | 10 | std::string dbm_start_key = |
5192 | 10 | meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id, 0, 0}); |
5193 | 10 | std::string dbm_end_key = meta_delete_bitmap_key( |
5194 | 10 | {reference_instance_id, tablet_id, rowset_id, |
5195 | 10 | std::numeric_limits<int64_t>::max(), std::numeric_limits<int64_t>::max()}); |
5196 | 10 | txn->remove(dbm_start_key, dbm_end_key); |
5197 | 10 | LOG_INFO("remove delete bitmap kv") |
5198 | 10 | .tag("begin", hex(dbm_start_key)) |
5199 | 10 | .tag("end", hex(dbm_end_key)); |
5200 | | |
5201 | 10 | std::string versioned_dbm_start_key = versioned::meta_delete_bitmap_key( |
5202 | 10 | {reference_instance_id, tablet_id, rowset_id}); |
5203 | 10 | std::string versioned_dbm_end_key = versioned_dbm_start_key; |
5204 | 10 | encode_int64(INT64_MAX, &versioned_dbm_end_key); |
5205 | 10 | txn->remove(versioned_dbm_start_key, versioned_dbm_end_key); |
5206 | 10 | LOG_INFO("remove versioned delete bitmap kv") |
5207 | 10 | .tag("begin", hex(versioned_dbm_start_key)) |
5208 | 10 | .tag("end", hex(versioned_dbm_end_key)); |
5209 | | |
5210 | 10 | std::string meta_rowset_key_begin = |
5211 | 10 | versioned::meta_rowset_key({reference_instance_id, tablet_id, rowset_id}); |
5212 | 10 | std::string meta_rowset_key_end = meta_rowset_key_begin; |
5213 | 10 | encode_int64(INT64_MAX, &meta_rowset_key_end); |
5214 | 10 | txn->remove(meta_rowset_key_begin, meta_rowset_key_end); |
5215 | 10 | LOG_INFO("remove meta rowset key").tag("key", hex(meta_rowset_key_begin)); |
5216 | 10 | } else { |
5217 | | // Decrease the rowset ref count. |
5218 | | // |
5219 | | // The read conflict range will protect the rowset ref count key, if any conflict happens, |
5220 | | // we will retry and check whether the rowset ref count is 1 and the data need to be deleted. |
5221 | 3 | txn->atomic_add(rowset_ref_count_key, -1); |
5222 | 3 | LOG_INFO("decrease rowset data ref count") |
5223 | 3 | .tag("txn_id", rowset_meta.txn_id()) |
5224 | 3 | .tag("ref_count", ref_count - 1) |
5225 | 3 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
5226 | 3 | } |
5227 | | |
5228 | 13 | if (!recycle_rowset_key.empty()) { // empty when recycle ref rowsets for deleted instance |
5229 | 13 | txn->remove(recycle_rowset_key); |
5230 | 13 | LOG_INFO("remove recycle rowset key").tag("key", hex(recycle_rowset_key)); |
5231 | 13 | } |
5232 | 13 | if (!non_versioned_rowset_key.empty()) { |
5233 | 0 | txn->remove(non_versioned_rowset_key); |
5234 | 0 | LOG_INFO("remove non versioned rowset key").tag("key", hex(non_versioned_rowset_key)); |
5235 | 0 | } |
5236 | | |
5237 | 13 | err = txn->commit(); |
5238 | 13 | if (err == TxnErrorCode::TXN_CONFLICT) { // unlikely |
5239 | | // The rowset ref count key has been changed, we need to retry. |
5240 | 0 | VLOG_DEBUG << "decrease rowset ref count but txn conflict, retry" |
5241 | 0 | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id |
5242 | 0 | << ", ref_count=" << ref_count << ", retry=" << i; |
5243 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
5244 | 0 | continue; |
5245 | 13 | } else if (err != TxnErrorCode::TXN_OK) { |
5246 | 0 | LOG_WARNING("failed to recycle rowset meta and data").tag("err", err); |
5247 | 0 | return -1; |
5248 | 0 | } |
5249 | 13 | LOG_INFO("recycle rowset meta and data success"); |
5250 | 13 | return 0; |
5251 | 13 | } |
5252 | 0 | LOG_WARNING("failed to recycle rowset meta and data after retry") |
5253 | 0 | .tag("tablet_id", tablet_id) |
5254 | 0 | .tag("rowset_id", rowset_id) |
5255 | 0 | .tag("retry", MAX_RETRY); |
5256 | 0 | return -1; |
5257 | 1.61k | } |
5258 | | |
5259 | 29 | int InstanceRecycler::recycle_tmp_rowsets() { |
5260 | 29 | const std::string task_name = "recycle_tmp_rowsets"; |
5261 | 29 | int64_t num_scanned = 0; |
5262 | 29 | int64_t num_expired = 0; |
5263 | 29 | std::atomic_long num_recycled = 0; |
5264 | 29 | size_t expired_rowset_size = 0; |
5265 | 29 | size_t total_rowset_key_size = 0; |
5266 | 29 | size_t total_rowset_value_size = 0; |
5267 | 29 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5268 | | |
5269 | 29 | MetaRowsetTmpKeyInfo tmp_rs_key_info0 {instance_id_, 0, 0}; |
5270 | 29 | MetaRowsetTmpKeyInfo tmp_rs_key_info1 {instance_id_, INT64_MAX, 0}; |
5271 | 29 | std::string tmp_rs_key0; |
5272 | 29 | std::string tmp_rs_key1; |
5273 | 29 | meta_rowset_tmp_key(tmp_rs_key_info0, &tmp_rs_key0); |
5274 | 29 | meta_rowset_tmp_key(tmp_rs_key_info1, &tmp_rs_key1); |
5275 | | |
5276 | 29 | LOG_WARNING("begin to recycle tmp rowsets").tag("instance_id", instance_id_); |
5277 | | |
5278 | 29 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5279 | 29 | register_recycle_task(task_name, start_time); |
5280 | | |
5281 | 29 | DORIS_CLOUD_DEFER { |
5282 | 29 | unregister_recycle_task(task_name); |
5283 | 29 | int64_t cost = |
5284 | 29 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5285 | 29 | metrics_context.finish_report(); |
5286 | 29 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) |
5287 | 29 | .tag("instance_id", instance_id_) |
5288 | 29 | .tag("num_scanned", num_scanned) |
5289 | 29 | .tag("num_expired", num_expired) |
5290 | 29 | .tag("num_recycled", num_recycled) |
5291 | 29 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) |
5292 | 29 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) |
5293 | 29 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); |
5294 | 29 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_0clEv Line | Count | Source | 5281 | 12 | DORIS_CLOUD_DEFER { | 5282 | 12 | unregister_recycle_task(task_name); | 5283 | 12 | int64_t cost = | 5284 | 12 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5285 | 12 | metrics_context.finish_report(); | 5286 | 12 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) | 5287 | 12 | .tag("instance_id", instance_id_) | 5288 | 12 | .tag("num_scanned", num_scanned) | 5289 | 12 | .tag("num_expired", num_expired) | 5290 | 12 | .tag("num_recycled", num_recycled) | 5291 | 12 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 5292 | 12 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 5293 | 12 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); | 5294 | 12 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_0clEv Line | Count | Source | 5281 | 17 | DORIS_CLOUD_DEFER { | 5282 | 17 | unregister_recycle_task(task_name); | 5283 | 17 | int64_t cost = | 5284 | 17 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5285 | 17 | metrics_context.finish_report(); | 5286 | 17 | LOG_WARNING("recycle tmp rowsets finished, cost={}s", cost) | 5287 | 17 | .tag("instance_id", instance_id_) | 5288 | 17 | .tag("num_scanned", num_scanned) | 5289 | 17 | .tag("num_expired", num_expired) | 5290 | 17 | .tag("num_recycled", num_recycled) | 5291 | 17 | .tag("total_rowset_meta_key_size_scanned", total_rowset_key_size) | 5292 | 17 | .tag("total_rowset_meta_value_size_scanned", total_rowset_value_size) | 5293 | 17 | .tag("expired_rowset_meta_size_recycled", expired_rowset_size); | 5294 | 17 | }; |
|
5295 | | |
5296 | | // Elements in `tmp_rowset_keys` has the same lifetime as `it` |
5297 | | |
5298 | 29 | std::vector<std::string> tmp_rowset_keys; |
5299 | 29 | std::vector<std::string> tmp_rowset_ref_count_keys; |
5300 | | |
5301 | | // rowset_id -> rowset_meta |
5302 | | // store tmp_rowset id and meta for statistics rs size when delete |
5303 | 29 | std::map<std::string, doris::RowsetMetaCloudPB> tmp_rowsets; |
5304 | 29 | auto worker_pool = std::make_unique<SimpleThreadPool>( |
5305 | 29 | config::instance_recycler_worker_pool_size, "recycle_tmp_rowsets"); |
5306 | 29 | worker_pool->start(); |
5307 | | |
5308 | 29 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5309 | | |
5310 | 29 | auto handle_rowset_kv = [&num_scanned, &num_expired, &tmp_rowset_keys, &tmp_rowsets, |
5311 | 29 | &expired_rowset_size, &total_rowset_key_size, &total_rowset_value_size, |
5312 | 29 | &earlest_ts, &tmp_rowset_ref_count_keys, this, |
5313 | 102k | &metrics_context](std::string_view k, std::string_view v) -> int { |
5314 | 102k | ++num_scanned; |
5315 | 102k | total_rowset_key_size += k.size(); |
5316 | 102k | total_rowset_value_size += v.size(); |
5317 | 102k | doris::RowsetMetaCloudPB rowset; |
5318 | 102k | if (!rowset.ParseFromArray(v.data(), v.size())) { |
5319 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); |
5320 | 0 | return -1; |
5321 | 0 | } |
5322 | 102k | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
5323 | 102k | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned |
5324 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration |
5325 | 0 | << " txn_expiration=" << rowset.txn_expiration() |
5326 | 0 | << " rowset_creation_time=" << rowset.creation_time(); |
5327 | 102k | int64_t current_time = ::time(nullptr); |
5328 | 102k | if (current_time < expiration) { // not expired |
5329 | 0 | return 0; |
5330 | 0 | } |
5331 | | |
5332 | 102k | if (config::enable_mark_delete_rowset_before_recycle) { |
5333 | 102k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); |
5334 | 102k | if (mark_ret == -1) { |
5335 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ |
5336 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" |
5337 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5338 | 0 | return -1; |
5339 | 102k | } else if (mark_ret == 1) { |
5340 | 51.0k | LOG(INFO) |
5341 | 51.0k | << "rowset already marked as recycled, recycler will delete data and kv at " |
5342 | 51.0k | "next turn, instance_id=" |
5343 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5344 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5345 | 51.0k | return 0; |
5346 | 51.0k | } |
5347 | 102k | } |
5348 | | |
5349 | 51.0k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { |
5350 | 51.0k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" |
5351 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5352 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5353 | | |
5354 | 51.0k | int ret = abort_txn_or_job_for_recycle(rowset); |
5355 | 51.0k | if (ret != 0) { |
5356 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" |
5357 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" |
5358 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; |
5359 | 0 | return ret; |
5360 | 0 | } |
5361 | 51.0k | } |
5362 | | |
5363 | 51.0k | ++num_expired; |
5364 | 51.0k | expired_rowset_size += v.size(); |
5365 | 51.0k | if (!rowset.has_resource_id()) { |
5366 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible |
5367 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); |
5368 | 0 | return -1; |
5369 | 0 | } |
5370 | | // might be a delete pred rowset |
5371 | 0 | tmp_rowset_keys.emplace_back(k); |
5372 | 0 | return 0; |
5373 | 0 | } |
5374 | | // TODO(plat1ko): check rowset not referenced |
5375 | 51.0k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ |
5376 | 51.0k | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() |
5377 | 51.0k | << " version=[" << rowset.start_version() << '-' << rowset.end_version() |
5378 | 51.0k | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() |
5379 | 51.0k | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned |
5380 | 51.0k | << " num_expired=" << num_expired |
5381 | 51.0k | << " task_type=" << metrics_context.operation_type; |
5382 | | |
5383 | 51.0k | tmp_rowset_keys.emplace_back(k.data(), k.size()); |
5384 | | // Remove the rowset ref count key directly since it has not been used. |
5385 | 51.0k | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( |
5386 | 51.0k | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); |
5387 | 51.0k | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ |
5388 | 51.0k | << "key=" << hex(rowset_ref_count_key); |
5389 | 51.0k | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); |
5390 | | |
5391 | 51.0k | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); |
5392 | 51.0k | return 0; |
5393 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5313 | 16 | &metrics_context](std::string_view k, std::string_view v) -> int { | 5314 | 16 | ++num_scanned; | 5315 | 16 | total_rowset_key_size += k.size(); | 5316 | 16 | total_rowset_value_size += v.size(); | 5317 | 16 | doris::RowsetMetaCloudPB rowset; | 5318 | 16 | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5319 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); | 5320 | 0 | return -1; | 5321 | 0 | } | 5322 | 16 | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5323 | 16 | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5324 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 5325 | 0 | << " txn_expiration=" << rowset.txn_expiration() | 5326 | 0 | << " rowset_creation_time=" << rowset.creation_time(); | 5327 | 16 | int64_t current_time = ::time(nullptr); | 5328 | 16 | if (current_time < expiration) { // not expired | 5329 | 0 | return 0; | 5330 | 0 | } | 5331 | | | 5332 | 16 | if (config::enable_mark_delete_rowset_before_recycle) { | 5333 | 16 | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 5334 | 16 | if (mark_ret == -1) { | 5335 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 5336 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" | 5337 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5338 | 0 | return -1; | 5339 | 16 | } else if (mark_ret == 1) { | 5340 | 9 | LOG(INFO) | 5341 | 9 | << "rowset already marked as recycled, recycler will delete data and kv at " | 5342 | 9 | "next turn, instance_id=" | 5343 | 9 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5344 | 9 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5345 | 9 | return 0; | 5346 | 9 | } | 5347 | 16 | } | 5348 | | | 5349 | 7 | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 5350 | 7 | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 5351 | 7 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5352 | 7 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5353 | | | 5354 | 7 | int ret = abort_txn_or_job_for_recycle(rowset); | 5355 | 7 | if (ret != 0) { | 5356 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 5357 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5358 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5359 | 0 | return ret; | 5360 | 0 | } | 5361 | 7 | } | 5362 | | | 5363 | 7 | ++num_expired; | 5364 | 7 | expired_rowset_size += v.size(); | 5365 | 7 | if (!rowset.has_resource_id()) { | 5366 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible | 5367 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); | 5368 | 0 | return -1; | 5369 | 0 | } | 5370 | | // might be a delete pred rowset | 5371 | 0 | tmp_rowset_keys.emplace_back(k); | 5372 | 0 | return 0; | 5373 | 0 | } | 5374 | | // TODO(plat1ko): check rowset not referenced | 5375 | 7 | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5376 | 7 | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() | 5377 | 7 | << " version=[" << rowset.start_version() << '-' << rowset.end_version() | 5378 | 7 | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() | 5379 | 7 | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned | 5380 | 7 | << " num_expired=" << num_expired | 5381 | 7 | << " task_type=" << metrics_context.operation_type; | 5382 | | | 5383 | 7 | tmp_rowset_keys.emplace_back(k.data(), k.size()); | 5384 | | // Remove the rowset ref count key directly since it has not been used. | 5385 | 7 | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( | 5386 | 7 | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); | 5387 | 7 | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ | 5388 | 7 | << "key=" << hex(rowset_ref_count_key); | 5389 | 7 | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); | 5390 | | | 5391 | 7 | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); | 5392 | 7 | return 0; | 5393 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5313 | 102k | &metrics_context](std::string_view k, std::string_view v) -> int { | 5314 | 102k | ++num_scanned; | 5315 | 102k | total_rowset_key_size += k.size(); | 5316 | 102k | total_rowset_value_size += v.size(); | 5317 | 102k | doris::RowsetMetaCloudPB rowset; | 5318 | 102k | if (!rowset.ParseFromArray(v.data(), v.size())) { | 5319 | 0 | LOG_WARNING("malformed rowset meta").tag("key", hex(k)); | 5320 | 0 | return -1; | 5321 | 0 | } | 5322 | 102k | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); | 5323 | 102k | VLOG_DEBUG << "recycle tmp rowset scan, key=" << hex(k) << " num_scanned=" << num_scanned | 5324 | 0 | << " num_expired=" << num_expired << " expiration=" << expiration | 5325 | 0 | << " txn_expiration=" << rowset.txn_expiration() | 5326 | 0 | << " rowset_creation_time=" << rowset.creation_time(); | 5327 | 102k | int64_t current_time = ::time(nullptr); | 5328 | 102k | if (current_time < expiration) { // not expired | 5329 | 0 | return 0; | 5330 | 0 | } | 5331 | | | 5332 | 102k | if (config::enable_mark_delete_rowset_before_recycle) { | 5333 | 102k | int mark_ret = mark_rowset_as_recycled(txn_kv_.get(), instance_id_, k, rowset); | 5334 | 102k | if (mark_ret == -1) { | 5335 | 0 | LOG(WARNING) << "failed to mark rowset as recycled, instance_id=" << instance_id_ | 5336 | 0 | << " tablet_id=" << rowset.tablet_id() << " version=[" | 5337 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5338 | 0 | return -1; | 5339 | 102k | } else if (mark_ret == 1) { | 5340 | 51.0k | LOG(INFO) | 5341 | 51.0k | << "rowset already marked as recycled, recycler will delete data and kv at " | 5342 | 51.0k | "next turn, instance_id=" | 5343 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5344 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5345 | 51.0k | return 0; | 5346 | 51.0k | } | 5347 | 102k | } | 5348 | | | 5349 | 51.0k | if (config::enable_abort_txn_and_job_for_delete_rowset_before_recycle) { | 5350 | 51.0k | LOG(INFO) << "begin to abort txn or job for related rowset, instance_id=" | 5351 | 51.0k | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5352 | 51.0k | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5353 | | | 5354 | 51.0k | int ret = abort_txn_or_job_for_recycle(rowset); | 5355 | 51.0k | if (ret != 0) { | 5356 | 0 | LOG(WARNING) << "failed to abort txn or job for related rowset, instance_id=" | 5357 | 0 | << instance_id_ << " tablet_id=" << rowset.tablet_id() << " version=[" | 5358 | 0 | << rowset.start_version() << '-' << rowset.end_version() << "]"; | 5359 | 0 | return ret; | 5360 | 0 | } | 5361 | 51.0k | } | 5362 | | | 5363 | 51.0k | ++num_expired; | 5364 | 51.0k | expired_rowset_size += v.size(); | 5365 | 51.0k | if (!rowset.has_resource_id()) { | 5366 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible | 5367 | 0 | LOG_WARNING("rowset meta has empty resource id").tag("key", k); | 5368 | 0 | return -1; | 5369 | 0 | } | 5370 | | // might be a delete pred rowset | 5371 | 0 | tmp_rowset_keys.emplace_back(k); | 5372 | 0 | return 0; | 5373 | 0 | } | 5374 | | // TODO(plat1ko): check rowset not referenced | 5375 | 51.0k | LOG(INFO) << "delete rowset data, instance_id=" << instance_id_ | 5376 | 51.0k | << " tablet_id=" << rowset.tablet_id() << " rowset_id=" << rowset.rowset_id_v2() | 5377 | 51.0k | << " version=[" << rowset.start_version() << '-' << rowset.end_version() | 5378 | 51.0k | << "] txn_id=" << rowset.txn_id() << " rowset_meta_size=" << v.size() | 5379 | 51.0k | << " creation_time=" << rowset.creation_time() << " num_scanned=" << num_scanned | 5380 | 51.0k | << " num_expired=" << num_expired | 5381 | 51.0k | << " task_type=" << metrics_context.operation_type; | 5382 | | | 5383 | 51.0k | tmp_rowset_keys.emplace_back(k.data(), k.size()); | 5384 | | // Remove the rowset ref count key directly since it has not been used. | 5385 | 51.0k | std::string rowset_ref_count_key = versioned::data_rowset_ref_count_key( | 5386 | 51.0k | {instance_id_, rowset.tablet_id(), rowset.rowset_id_v2()}); | 5387 | 51.0k | LOG(INFO) << "delete rowset ref count key, instance_id=" << instance_id_ | 5388 | 51.0k | << "key=" << hex(rowset_ref_count_key); | 5389 | 51.0k | tmp_rowset_ref_count_keys.push_back(rowset_ref_count_key); | 5390 | | | 5391 | 51.0k | tmp_rowsets.emplace(rowset.rowset_id_v2(), std::move(rowset)); | 5392 | 51.0k | return 0; | 5393 | 51.0k | }; |
|
5394 | | |
5395 | | // TODO bacth delete |
5396 | 51.0k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
5397 | 51.0k | std::string dbm_start_key = |
5398 | 51.0k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); |
5399 | 51.0k | std::string dbm_end_key = dbm_start_key; |
5400 | 51.0k | encode_int64(INT64_MAX, &dbm_end_key); |
5401 | 51.0k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); |
5402 | 51.0k | if (ret != 0) { |
5403 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" |
5404 | 0 | << instance_id_ << ", tablet_id=" << tablet_id |
5405 | 0 | << ", rowset_id=" << rowset_id; |
5406 | 0 | } |
5407 | 51.0k | return ret; |
5408 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_3clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5396 | 7 | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5397 | 7 | std::string dbm_start_key = | 5398 | 7 | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 5399 | 7 | std::string dbm_end_key = dbm_start_key; | 5400 | 7 | encode_int64(INT64_MAX, &dbm_end_key); | 5401 | 7 | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 5402 | 7 | if (ret != 0) { | 5403 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 5404 | 0 | << instance_id_ << ", tablet_id=" << tablet_id | 5405 | 0 | << ", rowset_id=" << rowset_id; | 5406 | 0 | } | 5407 | 7 | return ret; | 5408 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_3clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5396 | 51.0k | auto delete_versioned_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5397 | 51.0k | std::string dbm_start_key = | 5398 | 51.0k | versioned::meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id}); | 5399 | 51.0k | std::string dbm_end_key = dbm_start_key; | 5400 | 51.0k | encode_int64(INT64_MAX, &dbm_end_key); | 5401 | 51.0k | auto ret = txn_remove(txn_kv_.get(), dbm_start_key, dbm_end_key); | 5402 | 51.0k | if (ret != 0) { | 5403 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, instance_id=" | 5404 | 0 | << instance_id_ << ", tablet_id=" << tablet_id | 5405 | 0 | << ", rowset_id=" << rowset_id; | 5406 | 0 | } | 5407 | 51.0k | return ret; | 5408 | 51.0k | }; |
|
5409 | | |
5410 | 51.0k | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { |
5411 | 51.0k | auto delete_bitmap_start = |
5412 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); |
5413 | 51.0k | auto delete_bitmap_end = |
5414 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); |
5415 | 51.0k | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); |
5416 | 51.0k | if (ret != 0) { |
5417 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ |
5418 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; |
5419 | 0 | } |
5420 | 51.0k | return ret; |
5421 | 51.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5410 | 7 | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5411 | 7 | auto delete_bitmap_start = | 5412 | 7 | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); | 5413 | 7 | auto delete_bitmap_end = | 5414 | 7 | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); | 5415 | 7 | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); | 5416 | 7 | if (ret != 0) { | 5417 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ | 5418 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; | 5419 | 0 | } | 5420 | 7 | return ret; | 5421 | 7 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_4clElRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5410 | 51.0k | auto delete_delete_bitmap_kvs = [&](int64_t tablet_id, const std::string& rowset_id) { | 5411 | 51.0k | auto delete_bitmap_start = | 5412 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, 0, 0}); | 5413 | 51.0k | auto delete_bitmap_end = | 5414 | 51.0k | meta_delete_bitmap_key({instance_id_, tablet_id, rowset_id, INT64_MAX, INT64_MAX}); | 5415 | 51.0k | auto ret = txn_remove(txn_kv_.get(), delete_bitmap_start, delete_bitmap_end); | 5416 | 51.0k | if (ret != 0) { | 5417 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, instance_id=" << instance_id_ | 5418 | 0 | << ", tablet_id=" << tablet_id << ", rowset_id=" << rowset_id; | 5419 | 0 | } | 5420 | 51.0k | return ret; | 5421 | 51.0k | }; |
|
5422 | | |
5423 | 29 | auto loop_done = [&]() -> int { |
5424 | 26 | DORIS_CLOUD_DEFER { |
5425 | 26 | tmp_rowset_keys.clear(); |
5426 | 26 | tmp_rowsets.clear(); |
5427 | 26 | tmp_rowset_ref_count_keys.clear(); |
5428 | 26 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5424 | 12 | DORIS_CLOUD_DEFER { | 5425 | 12 | tmp_rowset_keys.clear(); | 5426 | 12 | tmp_rowsets.clear(); | 5427 | 12 | tmp_rowset_ref_count_keys.clear(); | 5428 | 12 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5424 | 14 | DORIS_CLOUD_DEFER { | 5425 | 14 | tmp_rowset_keys.clear(); | 5426 | 14 | tmp_rowsets.clear(); | 5427 | 14 | tmp_rowset_ref_count_keys.clear(); | 5428 | 14 | }; |
|
5429 | 26 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, |
5430 | 26 | tmp_rowsets_to_delete = tmp_rowsets, |
5431 | 26 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { |
5432 | 26 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, |
5433 | 26 | metrics_context) != 0) { |
5434 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; |
5435 | 0 | return; |
5436 | 0 | } |
5437 | 51.0k | for (const auto& [_, rs] : tmp_rowsets_to_delete) { |
5438 | 51.0k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
5439 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" |
5440 | 0 | << rs.ShortDebugString(); |
5441 | 0 | return; |
5442 | 0 | } |
5443 | 51.0k | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { |
5444 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" |
5445 | 0 | << rs.ShortDebugString(); |
5446 | 0 | return; |
5447 | 0 | } |
5448 | 51.0k | } |
5449 | 26 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { |
5450 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; |
5451 | 0 | return; |
5452 | 0 | } |
5453 | 26 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { |
5454 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; |
5455 | 0 | return; |
5456 | 0 | } |
5457 | 26 | num_recycled += tmp_rowset_keys.size(); |
5458 | 26 | return; |
5459 | 26 | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5431 | 12 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5432 | 12 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5433 | 12 | metrics_context) != 0) { | 5434 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5435 | 0 | return; | 5436 | 0 | } | 5437 | 12 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5438 | 7 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5439 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5440 | 0 | << rs.ShortDebugString(); | 5441 | 0 | return; | 5442 | 0 | } | 5443 | 7 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5444 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5445 | 0 | << rs.ShortDebugString(); | 5446 | 0 | return; | 5447 | 0 | } | 5448 | 7 | } | 5449 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5450 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5451 | 0 | return; | 5452 | 0 | } | 5453 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5454 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5455 | 0 | return; | 5456 | 0 | } | 5457 | 12 | num_recycled += tmp_rowset_keys.size(); | 5458 | 12 | return; | 5459 | 12 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5431 | 14 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5432 | 14 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5433 | 14 | metrics_context) != 0) { | 5434 | 0 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5435 | 0 | return; | 5436 | 0 | } | 5437 | 51.0k | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5438 | 51.0k | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5439 | 0 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5440 | 0 | << rs.ShortDebugString(); | 5441 | 0 | return; | 5442 | 0 | } | 5443 | 51.0k | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5444 | 0 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5445 | 0 | << rs.ShortDebugString(); | 5446 | 0 | return; | 5447 | 0 | } | 5448 | 51.0k | } | 5449 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5450 | 0 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5451 | 0 | return; | 5452 | 0 | } | 5453 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5454 | 0 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5455 | 0 | return; | 5456 | 0 | } | 5457 | 14 | num_recycled += tmp_rowset_keys.size(); | 5458 | 14 | return; | 5459 | 14 | }); |
|
5460 | 26 | return 0; |
5461 | 26 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEv Line | Count | Source | 5423 | 12 | auto loop_done = [&]() -> int { | 5424 | 12 | DORIS_CLOUD_DEFER { | 5425 | 12 | tmp_rowset_keys.clear(); | 5426 | 12 | tmp_rowsets.clear(); | 5427 | 12 | tmp_rowset_ref_count_keys.clear(); | 5428 | 12 | }; | 5429 | 12 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, | 5430 | 12 | tmp_rowsets_to_delete = tmp_rowsets, | 5431 | 12 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5432 | 12 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5433 | 12 | metrics_context) != 0) { | 5434 | 12 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5435 | 12 | return; | 5436 | 12 | } | 5437 | 12 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5438 | 12 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5439 | 12 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5440 | 12 | << rs.ShortDebugString(); | 5441 | 12 | return; | 5442 | 12 | } | 5443 | 12 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5444 | 12 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5445 | 12 | << rs.ShortDebugString(); | 5446 | 12 | return; | 5447 | 12 | } | 5448 | 12 | } | 5449 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5450 | 12 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5451 | 12 | return; | 5452 | 12 | } | 5453 | 12 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5454 | 12 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5455 | 12 | return; | 5456 | 12 | } | 5457 | 12 | num_recycled += tmp_rowset_keys.size(); | 5458 | 12 | return; | 5459 | 12 | }); | 5460 | 12 | return 0; | 5461 | 12 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler19recycle_tmp_rowsetsEvENK3$_1clEv Line | Count | Source | 5423 | 14 | auto loop_done = [&]() -> int { | 5424 | 14 | DORIS_CLOUD_DEFER { | 5425 | 14 | tmp_rowset_keys.clear(); | 5426 | 14 | tmp_rowsets.clear(); | 5427 | 14 | tmp_rowset_ref_count_keys.clear(); | 5428 | 14 | }; | 5429 | 14 | worker_pool->submit([&, tmp_rowset_keys_to_delete = tmp_rowset_keys, | 5430 | 14 | tmp_rowsets_to_delete = tmp_rowsets, | 5431 | 14 | tmp_rowset_ref_count_keys_to_delete = tmp_rowset_ref_count_keys]() { | 5432 | 14 | if (delete_rowset_data(tmp_rowsets_to_delete, RowsetRecyclingState::TMP_ROWSET, | 5433 | 14 | metrics_context) != 0) { | 5434 | 14 | LOG(WARNING) << "failed to delete tmp rowset data, instance_id=" << instance_id_; | 5435 | 14 | return; | 5436 | 14 | } | 5437 | 14 | for (const auto& [_, rs] : tmp_rowsets_to_delete) { | 5438 | 14 | if (delete_versioned_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5439 | 14 | LOG(WARNING) << "failed to delete versioned delete bitmap kv, rs=" | 5440 | 14 | << rs.ShortDebugString(); | 5441 | 14 | return; | 5442 | 14 | } | 5443 | 14 | if (delete_delete_bitmap_kvs(rs.tablet_id(), rs.rowset_id_v2()) != 0) { | 5444 | 14 | LOG(WARNING) << "failed to delete delete bitmap kv, rs=" | 5445 | 14 | << rs.ShortDebugString(); | 5446 | 14 | return; | 5447 | 14 | } | 5448 | 14 | } | 5449 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_keys_to_delete) != 0) { | 5450 | 14 | LOG(WARNING) << "failed to tmp rowset kv, instance_id=" << instance_id_; | 5451 | 14 | return; | 5452 | 14 | } | 5453 | 14 | if (txn_remove(txn_kv_.get(), tmp_rowset_ref_count_keys_to_delete) != 0) { | 5454 | 14 | LOG(WARNING) << "failed to tmp rowset ref count kv, instance_id=" << instance_id_; | 5455 | 14 | return; | 5456 | 14 | } | 5457 | 14 | num_recycled += tmp_rowset_keys.size(); | 5458 | 14 | return; | 5459 | 14 | }); | 5460 | 14 | return 0; | 5461 | 14 | }; |
|
5462 | | |
5463 | 29 | if (config::enable_recycler_stats_metrics) { |
5464 | 0 | scan_and_statistics_tmp_rowsets(); |
5465 | 0 | } |
5466 | | // recycle_func and loop_done for scan and recycle |
5467 | 29 | int ret = scan_and_recycle(tmp_rs_key0, tmp_rs_key1, std::move(handle_rowset_kv), |
5468 | 29 | std::move(loop_done)); |
5469 | | |
5470 | 29 | worker_pool->stop(); |
5471 | 29 | return ret; |
5472 | 29 | } |
5473 | | |
5474 | | int InstanceRecycler::scan_and_recycle( |
5475 | | std::string begin, std::string_view end, |
5476 | | std::function<int(std::string_view k, std::string_view v)> recycle_func, |
5477 | 256 | std::function<int()> loop_done) { |
5478 | 256 | LOG(INFO) << "begin scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) << ")"; |
5479 | 256 | int ret = 0; |
5480 | 256 | int64_t cnt = 0; |
5481 | 256 | int get_range_retried = 0; |
5482 | 256 | std::string err; |
5483 | 256 | DORIS_CLOUD_DEFER_COPY(begin, end) { |
5484 | 256 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) |
5485 | 256 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried |
5486 | 256 | << " ret=" << ret << " err=" << err; |
5487 | 256 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler16scan_and_recycleENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_ESt8functionIFiS9_S9_EESA_IFivEEENK3$_0clEv Line | Count | Source | 5483 | 31 | DORIS_CLOUD_DEFER_COPY(begin, end) { | 5484 | 31 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) | 5485 | 31 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried | 5486 | 31 | << " ret=" << ret << " err=" << err; | 5487 | 31 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler16scan_and_recycleENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt17basic_string_viewIcS5_ESt8functionIFiS9_S9_EESA_IFivEEENK3$_0clEv Line | Count | Source | 5483 | 225 | DORIS_CLOUD_DEFER_COPY(begin, end) { | 5484 | 225 | LOG(INFO) << "finish scan_and_recycle key_range=[" << hex(begin) << "," << hex(end) | 5485 | 225 | << ") num_scanned=" << cnt << " get_range_retried=" << get_range_retried | 5486 | 225 | << " ret=" << ret << " err=" << err; | 5487 | 225 | }; |
|
5488 | | |
5489 | 256 | std::unique_ptr<RangeGetIterator> it; |
5490 | 309 | do { |
5491 | 309 | if (get_range_retried > 1000) { |
5492 | 0 | err = "txn_get exceeds max retry, may not scan all keys"; |
5493 | 0 | ret = -1; |
5494 | 0 | return -1; |
5495 | 0 | } |
5496 | 309 | int get_ret = txn_get(txn_kv_.get(), begin, end, it); |
5497 | 309 | if (get_ret != 0) { // txn kv may complain "Request for future version" |
5498 | 0 | LOG(WARNING) << "failed to get kv, range=[" << hex(begin) << "," << hex(end) |
5499 | 0 | << ") num_scanned=" << cnt << " txn_get_ret=" << get_ret |
5500 | 0 | << " get_range_retried=" << get_range_retried; |
5501 | 0 | ++get_range_retried; |
5502 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
5503 | 0 | continue; // try again |
5504 | 0 | } |
5505 | 309 | if (!it->has_next()) { |
5506 | 134 | LOG(INFO) << "no keys in the given range=[" << hex(begin) << "," << hex(end) << ")"; |
5507 | 134 | break; // scan finished |
5508 | 134 | } |
5509 | 150k | while (it->has_next()) { |
5510 | 150k | ++cnt; |
5511 | | // recycle corresponding resources |
5512 | 150k | auto [k, v] = it->next(); |
5513 | 150k | if (!it->has_next()) { |
5514 | 175 | begin = k; |
5515 | 175 | VLOG_DEBUG << "iterator has no more kvs. key=" << hex(k); |
5516 | 175 | } |
5517 | | // if we want to continue scanning, the recycle_func should not return non-zero |
5518 | 150k | if (recycle_func(k, v) != 0) { |
5519 | 4.00k | err = "recycle_func error"; |
5520 | 4.00k | ret = -1; |
5521 | 4.00k | } |
5522 | 150k | } |
5523 | 175 | begin.push_back('\x00'); // Update to next smallest key for iteration |
5524 | | // if we want to continue scanning, the recycle_func should not return non-zero |
5525 | 175 | if (loop_done && loop_done() != 0) { |
5526 | 4 | err = "loop_done error"; |
5527 | 4 | ret = -1; |
5528 | 4 | } |
5529 | 175 | } while (it->more() && !stopped()); |
5530 | 256 | return ret; |
5531 | 256 | } |
5532 | | |
5533 | 19 | int InstanceRecycler::abort_timeout_txn() { |
5534 | 19 | const std::string task_name = "abort_timeout_txn"; |
5535 | 19 | int64_t num_scanned = 0; |
5536 | 19 | int64_t num_timeout = 0; |
5537 | 19 | int64_t num_abort = 0; |
5538 | 19 | int64_t num_advance = 0; |
5539 | 19 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5540 | | |
5541 | 19 | TxnRunningKeyInfo txn_running_key_info0 {instance_id_, 0, 0}; |
5542 | 19 | TxnRunningKeyInfo txn_running_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
5543 | 19 | std::string begin_txn_running_key; |
5544 | 19 | std::string end_txn_running_key; |
5545 | 19 | txn_running_key(txn_running_key_info0, &begin_txn_running_key); |
5546 | 19 | txn_running_key(txn_running_key_info1, &end_txn_running_key); |
5547 | | |
5548 | 19 | LOG_WARNING("begin to abort timeout txn").tag("instance_id", instance_id_); |
5549 | | |
5550 | 19 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5551 | 19 | register_recycle_task(task_name, start_time); |
5552 | | |
5553 | 19 | DORIS_CLOUD_DEFER { |
5554 | 19 | unregister_recycle_task(task_name); |
5555 | 19 | int64_t cost = |
5556 | 19 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5557 | 19 | metrics_context.finish_report(); |
5558 | 19 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) |
5559 | 19 | .tag("instance_id", instance_id_) |
5560 | 19 | .tag("num_scanned", num_scanned) |
5561 | 19 | .tag("num_timeout", num_timeout) |
5562 | 19 | .tag("num_abort", num_abort) |
5563 | 19 | .tag("num_advance", num_advance); |
5564 | 19 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_0clEv Line | Count | Source | 5553 | 3 | DORIS_CLOUD_DEFER { | 5554 | 3 | unregister_recycle_task(task_name); | 5555 | 3 | int64_t cost = | 5556 | 3 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5557 | 3 | metrics_context.finish_report(); | 5558 | 3 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) | 5559 | 3 | .tag("instance_id", instance_id_) | 5560 | 3 | .tag("num_scanned", num_scanned) | 5561 | 3 | .tag("num_timeout", num_timeout) | 5562 | 3 | .tag("num_abort", num_abort) | 5563 | 3 | .tag("num_advance", num_advance); | 5564 | 3 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_0clEv Line | Count | Source | 5553 | 16 | DORIS_CLOUD_DEFER { | 5554 | 16 | unregister_recycle_task(task_name); | 5555 | 16 | int64_t cost = | 5556 | 16 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5557 | 16 | metrics_context.finish_report(); | 5558 | 16 | LOG_WARNING("end to abort timeout txn, cost={}s", cost) | 5559 | 16 | .tag("instance_id", instance_id_) | 5560 | 16 | .tag("num_scanned", num_scanned) | 5561 | 16 | .tag("num_timeout", num_timeout) | 5562 | 16 | .tag("num_abort", num_abort) | 5563 | 16 | .tag("num_advance", num_advance); | 5564 | 16 | }; |
|
5565 | | |
5566 | 19 | int64_t current_time = |
5567 | 19 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
5568 | | |
5569 | 19 | auto handle_txn_running_kv = [&num_scanned, &num_timeout, &num_abort, &num_advance, |
5570 | 19 | ¤t_time, &metrics_context, |
5571 | 19 | this](std::string_view k, std::string_view v) -> int { |
5572 | 9 | ++num_scanned; |
5573 | | |
5574 | 9 | std::unique_ptr<Transaction> txn; |
5575 | 9 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5576 | 9 | if (err != TxnErrorCode::TXN_OK) { |
5577 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); |
5578 | 0 | return -1; |
5579 | 0 | } |
5580 | 9 | std::string_view k1 = k; |
5581 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id |
5582 | 9 | k1.remove_prefix(1); // Remove key space |
5583 | 9 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5584 | 9 | if (decode_key(&k1, &out) != 0) { |
5585 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); |
5586 | 0 | return -1; |
5587 | 0 | } |
5588 | 9 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
5589 | 9 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
5590 | 9 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; |
5591 | | // Update txn_info |
5592 | 9 | std::string txn_inf_key, txn_inf_val; |
5593 | 9 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); |
5594 | 9 | err = txn->get(txn_inf_key, &txn_inf_val); |
5595 | 9 | if (err != TxnErrorCode::TXN_OK) { |
5596 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); |
5597 | 0 | return -1; |
5598 | 0 | } |
5599 | 9 | TxnInfoPB txn_info; |
5600 | 9 | if (!txn_info.ParseFromString(txn_inf_val)) { |
5601 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); |
5602 | 0 | return -1; |
5603 | 0 | } |
5604 | | |
5605 | 9 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { |
5606 | 3 | txn.reset(); |
5607 | 3 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); |
5608 | 3 | std::shared_ptr<TxnLazyCommitTask> task = |
5609 | 3 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); |
5610 | 3 | std::pair<MetaServiceCode, std::string> ret = task->wait(); |
5611 | 3 | if (ret.first != MetaServiceCode::OK) { |
5612 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first |
5613 | 0 | << "msg=" << ret.second; |
5614 | 0 | return -1; |
5615 | 0 | } |
5616 | 3 | ++num_advance; |
5617 | 3 | return 0; |
5618 | 6 | } else { |
5619 | 6 | TxnRunningPB txn_running_pb; |
5620 | 6 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { |
5621 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); |
5622 | 0 | return -1; |
5623 | 0 | } |
5624 | 6 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { |
5625 | 4 | return 0; |
5626 | 4 | } |
5627 | 2 | ++num_timeout; |
5628 | | |
5629 | 2 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); |
5630 | 2 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); |
5631 | 2 | txn_info.set_finish_time(current_time); |
5632 | 2 | txn_info.set_reason("timeout"); |
5633 | 2 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); |
5634 | 2 | txn_inf_val.clear(); |
5635 | 2 | if (!txn_info.SerializeToString(&txn_inf_val)) { |
5636 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); |
5637 | 0 | return -1; |
5638 | 0 | } |
5639 | 2 | txn->put(txn_inf_key, txn_inf_val); |
5640 | 2 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); |
5641 | | // Put recycle txn key |
5642 | 2 | std::string recyc_txn_key, recyc_txn_val; |
5643 | 2 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); |
5644 | 2 | RecycleTxnPB recycle_txn_pb; |
5645 | 2 | recycle_txn_pb.set_creation_time(current_time); |
5646 | 2 | recycle_txn_pb.set_label(txn_info.label()); |
5647 | 2 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { |
5648 | 0 | LOG_WARNING("failed to serialize txn recycle info") |
5649 | 0 | .tag("key", hex(k)) |
5650 | 0 | .tag("db_id", db_id) |
5651 | 0 | .tag("txn_id", txn_id); |
5652 | 0 | return -1; |
5653 | 0 | } |
5654 | 2 | txn->put(recyc_txn_key, recyc_txn_val); |
5655 | | // Remove txn running key |
5656 | 2 | txn->remove(k); |
5657 | 2 | err = txn->commit(); |
5658 | 2 | if (err != TxnErrorCode::TXN_OK) { |
5659 | 0 | LOG_WARNING("failed to commit txn err={}", err) |
5660 | 0 | .tag("key", hex(k)) |
5661 | 0 | .tag("db_id", db_id) |
5662 | 0 | .tag("txn_id", txn_id); |
5663 | 0 | return -1; |
5664 | 0 | } |
5665 | 2 | metrics_context.total_recycled_num = ++num_abort; |
5666 | 2 | metrics_context.report(); |
5667 | 2 | } |
5668 | | |
5669 | 2 | return 0; |
5670 | 9 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5571 | 3 | this](std::string_view k, std::string_view v) -> int { | 5572 | 3 | ++num_scanned; | 5573 | | | 5574 | 3 | std::unique_ptr<Transaction> txn; | 5575 | 3 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5576 | 3 | if (err != TxnErrorCode::TXN_OK) { | 5577 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5578 | 0 | return -1; | 5579 | 0 | } | 5580 | 3 | std::string_view k1 = k; | 5581 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id | 5582 | 3 | k1.remove_prefix(1); // Remove key space | 5583 | 3 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5584 | 3 | if (decode_key(&k1, &out) != 0) { | 5585 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); | 5586 | 0 | return -1; | 5587 | 0 | } | 5588 | 3 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5589 | 3 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5590 | 3 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5591 | | // Update txn_info | 5592 | 3 | std::string txn_inf_key, txn_inf_val; | 5593 | 3 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); | 5594 | 3 | err = txn->get(txn_inf_key, &txn_inf_val); | 5595 | 3 | if (err != TxnErrorCode::TXN_OK) { | 5596 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); | 5597 | 0 | return -1; | 5598 | 0 | } | 5599 | 3 | TxnInfoPB txn_info; | 5600 | 3 | if (!txn_info.ParseFromString(txn_inf_val)) { | 5601 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); | 5602 | 0 | return -1; | 5603 | 0 | } | 5604 | | | 5605 | 3 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { | 5606 | 3 | txn.reset(); | 5607 | 3 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); | 5608 | 3 | std::shared_ptr<TxnLazyCommitTask> task = | 5609 | 3 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); | 5610 | 3 | std::pair<MetaServiceCode, std::string> ret = task->wait(); | 5611 | 3 | if (ret.first != MetaServiceCode::OK) { | 5612 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first | 5613 | 0 | << "msg=" << ret.second; | 5614 | 0 | return -1; | 5615 | 0 | } | 5616 | 3 | ++num_advance; | 5617 | 3 | return 0; | 5618 | 3 | } else { | 5619 | 0 | TxnRunningPB txn_running_pb; | 5620 | 0 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { | 5621 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5622 | 0 | return -1; | 5623 | 0 | } | 5624 | 0 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { | 5625 | 0 | return 0; | 5626 | 0 | } | 5627 | 0 | ++num_timeout; | 5628 | |
| 5629 | 0 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); | 5630 | 0 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); | 5631 | 0 | txn_info.set_finish_time(current_time); | 5632 | 0 | txn_info.set_reason("timeout"); | 5633 | 0 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); | 5634 | 0 | txn_inf_val.clear(); | 5635 | 0 | if (!txn_info.SerializeToString(&txn_inf_val)) { | 5636 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); | 5637 | 0 | return -1; | 5638 | 0 | } | 5639 | 0 | txn->put(txn_inf_key, txn_inf_val); | 5640 | 0 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); | 5641 | | // Put recycle txn key | 5642 | 0 | std::string recyc_txn_key, recyc_txn_val; | 5643 | 0 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); | 5644 | 0 | RecycleTxnPB recycle_txn_pb; | 5645 | 0 | recycle_txn_pb.set_creation_time(current_time); | 5646 | 0 | recycle_txn_pb.set_label(txn_info.label()); | 5647 | 0 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { | 5648 | 0 | LOG_WARNING("failed to serialize txn recycle info") | 5649 | 0 | .tag("key", hex(k)) | 5650 | 0 | .tag("db_id", db_id) | 5651 | 0 | .tag("txn_id", txn_id); | 5652 | 0 | return -1; | 5653 | 0 | } | 5654 | 0 | txn->put(recyc_txn_key, recyc_txn_val); | 5655 | | // Remove txn running key | 5656 | 0 | txn->remove(k); | 5657 | 0 | err = txn->commit(); | 5658 | 0 | if (err != TxnErrorCode::TXN_OK) { | 5659 | 0 | LOG_WARNING("failed to commit txn err={}", err) | 5660 | 0 | .tag("key", hex(k)) | 5661 | 0 | .tag("db_id", db_id) | 5662 | 0 | .tag("txn_id", txn_id); | 5663 | 0 | return -1; | 5664 | 0 | } | 5665 | 0 | metrics_context.total_recycled_num = ++num_abort; | 5666 | 0 | metrics_context.report(); | 5667 | 0 | } | 5668 | | | 5669 | 0 | return 0; | 5670 | 3 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17abort_timeout_txnEvENK3$_1clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5571 | 6 | this](std::string_view k, std::string_view v) -> int { | 5572 | 6 | ++num_scanned; | 5573 | | | 5574 | 6 | std::unique_ptr<Transaction> txn; | 5575 | 6 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5576 | 6 | if (err != TxnErrorCode::TXN_OK) { | 5577 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5578 | 0 | return -1; | 5579 | 0 | } | 5580 | 6 | std::string_view k1 = k; | 5581 | | //TxnRunningKeyInfo 0:instance_id 1:db_id 2:txn_id | 5582 | 6 | k1.remove_prefix(1); // Remove key space | 5583 | 6 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5584 | 6 | if (decode_key(&k1, &out) != 0) { | 5585 | 0 | LOG_ERROR("failed to decode key").tag("key", hex(k)); | 5586 | 0 | return -1; | 5587 | 0 | } | 5588 | 6 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5589 | 6 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5590 | 6 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5591 | | // Update txn_info | 5592 | 6 | std::string txn_inf_key, txn_inf_val; | 5593 | 6 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); | 5594 | 6 | err = txn->get(txn_inf_key, &txn_inf_val); | 5595 | 6 | if (err != TxnErrorCode::TXN_OK) { | 5596 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(txn_inf_key)); | 5597 | 0 | return -1; | 5598 | 0 | } | 5599 | 6 | TxnInfoPB txn_info; | 5600 | 6 | if (!txn_info.ParseFromString(txn_inf_val)) { | 5601 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(k)); | 5602 | 0 | return -1; | 5603 | 0 | } | 5604 | | | 5605 | 6 | if (TxnStatusPB::TXN_STATUS_COMMITTED == txn_info.status()) { | 5606 | 0 | txn.reset(); | 5607 | 0 | TEST_SYNC_POINT_CALLBACK("abort_timeout_txn::advance_last_pending_txn_id", &txn_info); | 5608 | 0 | std::shared_ptr<TxnLazyCommitTask> task = | 5609 | 0 | txn_lazy_committer_->submit(instance_id_, txn_info.txn_id()); | 5610 | 0 | std::pair<MetaServiceCode, std::string> ret = task->wait(); | 5611 | 0 | if (ret.first != MetaServiceCode::OK) { | 5612 | 0 | LOG(WARNING) << "lazy commit txn failed txn_id=" << txn_id << " code=" << ret.first | 5613 | 0 | << "msg=" << ret.second; | 5614 | 0 | return -1; | 5615 | 0 | } | 5616 | 0 | ++num_advance; | 5617 | 0 | return 0; | 5618 | 6 | } else { | 5619 | 6 | TxnRunningPB txn_running_pb; | 5620 | 6 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { | 5621 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5622 | 0 | return -1; | 5623 | 0 | } | 5624 | 6 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { | 5625 | 4 | return 0; | 5626 | 4 | } | 5627 | 2 | ++num_timeout; | 5628 | | | 5629 | 2 | DCHECK(txn_info.status() != TxnStatusPB::TXN_STATUS_VISIBLE); | 5630 | 2 | txn_info.set_status(TxnStatusPB::TXN_STATUS_ABORTED); | 5631 | 2 | txn_info.set_finish_time(current_time); | 5632 | 2 | txn_info.set_reason("timeout"); | 5633 | 2 | VLOG_DEBUG << "txn_info=" << txn_info.ShortDebugString(); | 5634 | 2 | txn_inf_val.clear(); | 5635 | 2 | if (!txn_info.SerializeToString(&txn_inf_val)) { | 5636 | 0 | LOG_WARNING("failed to serialize txn info").tag("key", hex(k)); | 5637 | 0 | return -1; | 5638 | 0 | } | 5639 | 2 | txn->put(txn_inf_key, txn_inf_val); | 5640 | 2 | VLOG_DEBUG << "txn->put, txn_inf_key=" << hex(txn_inf_key); | 5641 | | // Put recycle txn key | 5642 | 2 | std::string recyc_txn_key, recyc_txn_val; | 5643 | 2 | recycle_txn_key({instance_id_, db_id, txn_id}, &recyc_txn_key); | 5644 | 2 | RecycleTxnPB recycle_txn_pb; | 5645 | 2 | recycle_txn_pb.set_creation_time(current_time); | 5646 | 2 | recycle_txn_pb.set_label(txn_info.label()); | 5647 | 2 | if (!recycle_txn_pb.SerializeToString(&recyc_txn_val)) { | 5648 | 0 | LOG_WARNING("failed to serialize txn recycle info") | 5649 | 0 | .tag("key", hex(k)) | 5650 | 0 | .tag("db_id", db_id) | 5651 | 0 | .tag("txn_id", txn_id); | 5652 | 0 | return -1; | 5653 | 0 | } | 5654 | 2 | txn->put(recyc_txn_key, recyc_txn_val); | 5655 | | // Remove txn running key | 5656 | 2 | txn->remove(k); | 5657 | 2 | err = txn->commit(); | 5658 | 2 | if (err != TxnErrorCode::TXN_OK) { | 5659 | 0 | LOG_WARNING("failed to commit txn err={}", err) | 5660 | 0 | .tag("key", hex(k)) | 5661 | 0 | .tag("db_id", db_id) | 5662 | 0 | .tag("txn_id", txn_id); | 5663 | 0 | return -1; | 5664 | 0 | } | 5665 | 2 | metrics_context.total_recycled_num = ++num_abort; | 5666 | 2 | metrics_context.report(); | 5667 | 2 | } | 5668 | | | 5669 | 2 | return 0; | 5670 | 6 | }; |
|
5671 | | |
5672 | 19 | if (config::enable_recycler_stats_metrics) { |
5673 | 0 | scan_and_statistics_abort_timeout_txn(); |
5674 | 0 | } |
5675 | | // recycle_func and loop_done for scan and recycle |
5676 | 19 | return scan_and_recycle(begin_txn_running_key, end_txn_running_key, |
5677 | 19 | std::move(handle_txn_running_kv)); |
5678 | 19 | } |
5679 | | |
5680 | 19 | int InstanceRecycler::recycle_expired_txn_label() { |
5681 | 19 | const std::string task_name = "recycle_expired_txn_label"; |
5682 | 19 | int64_t num_scanned = 0; |
5683 | 19 | int64_t num_expired = 0; |
5684 | 19 | int64_t num_recycled = 0; |
5685 | 19 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
5686 | 19 | int ret = 0; |
5687 | | |
5688 | 19 | RecycleTxnKeyInfo recycle_txn_key_info0 {instance_id_, 0, 0}; |
5689 | 19 | RecycleTxnKeyInfo recycle_txn_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
5690 | 19 | std::string begin_recycle_txn_key; |
5691 | 19 | std::string end_recycle_txn_key; |
5692 | 19 | recycle_txn_key(recycle_txn_key_info0, &begin_recycle_txn_key); |
5693 | 19 | recycle_txn_key(recycle_txn_key_info1, &end_recycle_txn_key); |
5694 | 19 | std::vector<std::string> recycle_txn_info_keys; |
5695 | | |
5696 | 19 | LOG_WARNING("begin to recycle expired txn").tag("instance_id", instance_id_); |
5697 | | |
5698 | 19 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
5699 | 19 | register_recycle_task(task_name, start_time); |
5700 | 19 | DORIS_CLOUD_DEFER { |
5701 | 19 | unregister_recycle_task(task_name); |
5702 | 19 | int64_t cost = |
5703 | 19 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
5704 | 19 | metrics_context.finish_report(); |
5705 | 19 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) |
5706 | 19 | .tag("instance_id", instance_id_) |
5707 | 19 | .tag("num_scanned", num_scanned) |
5708 | 19 | .tag("num_expired", num_expired) |
5709 | 19 | .tag("num_recycled", num_recycled); |
5710 | 19 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_0clEv Line | Count | Source | 5700 | 1 | DORIS_CLOUD_DEFER { | 5701 | 1 | unregister_recycle_task(task_name); | 5702 | 1 | int64_t cost = | 5703 | 1 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5704 | 1 | metrics_context.finish_report(); | 5705 | 1 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) | 5706 | 1 | .tag("instance_id", instance_id_) | 5707 | 1 | .tag("num_scanned", num_scanned) | 5708 | 1 | .tag("num_expired", num_expired) | 5709 | 1 | .tag("num_recycled", num_recycled); | 5710 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_0clEv Line | Count | Source | 5700 | 18 | DORIS_CLOUD_DEFER { | 5701 | 18 | unregister_recycle_task(task_name); | 5702 | 18 | int64_t cost = | 5703 | 18 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 5704 | 18 | metrics_context.finish_report(); | 5705 | 18 | LOG_WARNING("end to recycle expired txn, cost={}s", cost) | 5706 | 18 | .tag("instance_id", instance_id_) | 5707 | 18 | .tag("num_scanned", num_scanned) | 5708 | 18 | .tag("num_expired", num_expired) | 5709 | 18 | .tag("num_recycled", num_recycled); | 5710 | 18 | }; |
|
5711 | | |
5712 | 19 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
5713 | | |
5714 | 19 | SyncExecutor<int> concurrent_delete_executor( |
5715 | 19 | _thread_pool_group.s3_producer_pool, |
5716 | 19 | fmt::format("recycle expired txn label, instance id {}", instance_id_), |
5717 | 23.0k | [](const int& ret) { return ret != 0; });recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_2clERKi Line | Count | Source | 5717 | 1 | [](const int& ret) { return ret != 0; }); |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_2clERKi Line | Count | Source | 5717 | 23.0k | [](const int& ret) { return ret != 0; }); |
|
5718 | | |
5719 | 19 | int64_t current_time_ms = |
5720 | 19 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
5721 | | |
5722 | 30.0k | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { |
5723 | 30.0k | ++num_scanned; |
5724 | 30.0k | RecycleTxnPB recycle_txn_pb; |
5725 | 30.0k | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { |
5726 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); |
5727 | 0 | return -1; |
5728 | 0 | } |
5729 | 30.0k | if ((config::force_immediate_recycle) || |
5730 | 30.0k | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || |
5731 | 30.0k | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= |
5732 | 30.0k | current_time_ms)) { |
5733 | 23.0k | VLOG_DEBUG << "found recycle txn, key=" << hex(k); |
5734 | 23.0k | num_expired++; |
5735 | 23.0k | recycle_txn_info_keys.emplace_back(k); |
5736 | 23.0k | } |
5737 | 30.0k | return 0; |
5738 | 30.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5722 | 1 | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5723 | 1 | ++num_scanned; | 5724 | 1 | RecycleTxnPB recycle_txn_pb; | 5725 | 1 | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { | 5726 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5727 | 0 | return -1; | 5728 | 0 | } | 5729 | 1 | if ((config::force_immediate_recycle) || | 5730 | 1 | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || | 5731 | 1 | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= | 5732 | 1 | current_time_ms)) { | 5733 | 1 | VLOG_DEBUG << "found recycle txn, key=" << hex(k); | 5734 | 1 | num_expired++; | 5735 | 1 | recycle_txn_info_keys.emplace_back(k); | 5736 | 1 | } | 5737 | 1 | return 0; | 5738 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_3clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 5722 | 30.0k | auto handle_recycle_txn_kv = [&, this](std::string_view k, std::string_view v) -> int { | 5723 | 30.0k | ++num_scanned; | 5724 | 30.0k | RecycleTxnPB recycle_txn_pb; | 5725 | 30.0k | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { | 5726 | 0 | LOG_WARNING("malformed txn_running_pb").tag("key", hex(k)); | 5727 | 0 | return -1; | 5728 | 0 | } | 5729 | 30.0k | if ((config::force_immediate_recycle) || | 5730 | 30.0k | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || | 5731 | 30.0k | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= | 5732 | 30.0k | current_time_ms)) { | 5733 | 23.0k | VLOG_DEBUG << "found recycle txn, key=" << hex(k); | 5734 | 23.0k | num_expired++; | 5735 | 23.0k | recycle_txn_info_keys.emplace_back(k); | 5736 | 23.0k | } | 5737 | 30.0k | return 0; | 5738 | 30.0k | }; |
|
5739 | | |
5740 | | // int 0 for success, 1 for conflict, -1 for error |
5741 | 23.0k | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { |
5742 | 23.0k | std::string_view k1 = k; |
5743 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id |
5744 | 23.0k | k1.remove_prefix(1); // Remove key space |
5745 | 23.0k | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
5746 | 23.0k | int ret = decode_key(&k1, &out); |
5747 | 23.0k | if (ret != 0) { |
5748 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); |
5749 | 0 | return -1; |
5750 | 0 | } |
5751 | 23.0k | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
5752 | 23.0k | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
5753 | 23.0k | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; |
5754 | 23.0k | std::unique_ptr<Transaction> txn; |
5755 | 23.0k | TxnErrorCode err = txn_kv_->create_txn(&txn); |
5756 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5757 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); |
5758 | 0 | return -1; |
5759 | 0 | } |
5760 | | // Remove txn index kv |
5761 | 23.0k | auto index_key = txn_index_key({instance_id_, txn_id}); |
5762 | 23.0k | txn->remove(index_key); |
5763 | | // Remove txn info kv |
5764 | 23.0k | std::string info_key, info_val; |
5765 | 23.0k | txn_info_key({instance_id_, db_id, txn_id}, &info_key); |
5766 | 23.0k | err = txn->get(info_key, &info_val); |
5767 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5768 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); |
5769 | 0 | return -1; |
5770 | 0 | } |
5771 | 23.0k | TxnInfoPB txn_info; |
5772 | 23.0k | if (!txn_info.ParseFromString(info_val)) { |
5773 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); |
5774 | 0 | return -1; |
5775 | 0 | } |
5776 | 23.0k | txn->remove(info_key); |
5777 | | // Remove sub txn index kvs |
5778 | 23.0k | std::vector<std::string> sub_txn_index_keys; |
5779 | 23.0k | for (auto sub_txn_id : txn_info.sub_txn_ids()) { |
5780 | 22.9k | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); |
5781 | 22.9k | sub_txn_index_keys.push_back(sub_txn_index_key); |
5782 | 22.9k | } |
5783 | 23.0k | for (auto& sub_txn_index_key : sub_txn_index_keys) { |
5784 | 22.9k | txn->remove(sub_txn_index_key); |
5785 | 22.9k | } |
5786 | | // Update txn label |
5787 | 23.0k | std::string label_key, label_val; |
5788 | 23.0k | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); |
5789 | 23.0k | err = txn->get(label_key, &label_val); |
5790 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5791 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key |
5792 | 0 | << " err=" << err; |
5793 | 0 | return -1; |
5794 | 0 | } |
5795 | 23.0k | TxnLabelPB txn_label; |
5796 | 23.0k | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { |
5797 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); |
5798 | 0 | return -1; |
5799 | 0 | } |
5800 | 23.0k | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); |
5801 | 23.0k | if (it != txn_label.txn_ids().end()) { |
5802 | 23.0k | txn_label.mutable_txn_ids()->erase(it); |
5803 | 23.0k | } |
5804 | 23.0k | if (txn_label.txn_ids().empty()) { |
5805 | 23.0k | txn->remove(label_key); |
5806 | 23.0k | TEST_SYNC_POINT_CALLBACK( |
5807 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); |
5808 | 23.0k | } else { |
5809 | 73 | if (!txn_label.SerializeToString(&label_val)) { |
5810 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); |
5811 | 0 | return -1; |
5812 | 0 | } |
5813 | 73 | TEST_SYNC_POINT_CALLBACK( |
5814 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); |
5815 | 73 | txn->atomic_set_ver_value(label_key, label_val); |
5816 | 73 | TEST_SYNC_POINT_CALLBACK( |
5817 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); |
5818 | 73 | } |
5819 | | // Remove recycle txn kv |
5820 | 23.0k | txn->remove(k); |
5821 | 23.0k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); |
5822 | 23.0k | err = txn->commit(); |
5823 | 23.0k | if (err != TxnErrorCode::TXN_OK) { |
5824 | 62 | if (err == TxnErrorCode::TXN_CONFLICT) { |
5825 | 62 | TEST_SYNC_POINT_CALLBACK( |
5826 | 62 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); |
5827 | | // log the txn_id and label |
5828 | 62 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id |
5829 | 62 | << " txn_label_pb=" << txn_label.ShortDebugString() |
5830 | 62 | << " txn_label=" << txn_info.label(); |
5831 | 62 | return 1; |
5832 | 62 | } |
5833 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); |
5834 | 0 | return -1; |
5835 | 62 | } |
5836 | 23.0k | metrics_context.total_recycled_num = ++num_recycled; |
5837 | 23.0k | metrics_context.report(); |
5838 | | |
5839 | 23.0k | LOG(INFO) << "recycle expired txn, key=" << hex(k); |
5840 | 23.0k | return 0; |
5841 | 23.0k | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_4clERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5741 | 1 | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { | 5742 | 1 | std::string_view k1 = k; | 5743 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id | 5744 | 1 | k1.remove_prefix(1); // Remove key space | 5745 | 1 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5746 | 1 | int ret = decode_key(&k1, &out); | 5747 | 1 | if (ret != 0) { | 5748 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); | 5749 | 0 | return -1; | 5750 | 0 | } | 5751 | 1 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5752 | 1 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5753 | 1 | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5754 | 1 | std::unique_ptr<Transaction> txn; | 5755 | 1 | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5756 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5757 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5758 | 0 | return -1; | 5759 | 0 | } | 5760 | | // Remove txn index kv | 5761 | 1 | auto index_key = txn_index_key({instance_id_, txn_id}); | 5762 | 1 | txn->remove(index_key); | 5763 | | // Remove txn info kv | 5764 | 1 | std::string info_key, info_val; | 5765 | 1 | txn_info_key({instance_id_, db_id, txn_id}, &info_key); | 5766 | 1 | err = txn->get(info_key, &info_val); | 5767 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5768 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); | 5769 | 0 | return -1; | 5770 | 0 | } | 5771 | 1 | TxnInfoPB txn_info; | 5772 | 1 | if (!txn_info.ParseFromString(info_val)) { | 5773 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); | 5774 | 0 | return -1; | 5775 | 0 | } | 5776 | 1 | txn->remove(info_key); | 5777 | | // Remove sub txn index kvs | 5778 | 1 | std::vector<std::string> sub_txn_index_keys; | 5779 | 1 | for (auto sub_txn_id : txn_info.sub_txn_ids()) { | 5780 | 0 | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); | 5781 | 0 | sub_txn_index_keys.push_back(sub_txn_index_key); | 5782 | 0 | } | 5783 | 1 | for (auto& sub_txn_index_key : sub_txn_index_keys) { | 5784 | 0 | txn->remove(sub_txn_index_key); | 5785 | 0 | } | 5786 | | // Update txn label | 5787 | 1 | std::string label_key, label_val; | 5788 | 1 | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); | 5789 | 1 | err = txn->get(label_key, &label_val); | 5790 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5791 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key | 5792 | 0 | << " err=" << err; | 5793 | 0 | return -1; | 5794 | 0 | } | 5795 | 1 | TxnLabelPB txn_label; | 5796 | 1 | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { | 5797 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); | 5798 | 0 | return -1; | 5799 | 0 | } | 5800 | 1 | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); | 5801 | 1 | if (it != txn_label.txn_ids().end()) { | 5802 | 1 | txn_label.mutable_txn_ids()->erase(it); | 5803 | 1 | } | 5804 | 1 | if (txn_label.txn_ids().empty()) { | 5805 | 1 | txn->remove(label_key); | 5806 | 1 | TEST_SYNC_POINT_CALLBACK( | 5807 | 1 | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); | 5808 | 1 | } else { | 5809 | 0 | if (!txn_label.SerializeToString(&label_val)) { | 5810 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); | 5811 | 0 | return -1; | 5812 | 0 | } | 5813 | 0 | TEST_SYNC_POINT_CALLBACK( | 5814 | 0 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); | 5815 | 0 | txn->atomic_set_ver_value(label_key, label_val); | 5816 | 0 | TEST_SYNC_POINT_CALLBACK( | 5817 | 0 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); | 5818 | 0 | } | 5819 | | // Remove recycle txn kv | 5820 | 1 | txn->remove(k); | 5821 | 1 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); | 5822 | 1 | err = txn->commit(); | 5823 | 1 | if (err != TxnErrorCode::TXN_OK) { | 5824 | 0 | if (err == TxnErrorCode::TXN_CONFLICT) { | 5825 | 0 | TEST_SYNC_POINT_CALLBACK( | 5826 | 0 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); | 5827 | | // log the txn_id and label | 5828 | 0 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id | 5829 | 0 | << " txn_label_pb=" << txn_label.ShortDebugString() | 5830 | 0 | << " txn_label=" << txn_info.label(); | 5831 | 0 | return 1; | 5832 | 0 | } | 5833 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); | 5834 | 0 | return -1; | 5835 | 0 | } | 5836 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 5837 | 1 | metrics_context.report(); | 5838 | | | 5839 | 1 | LOG(INFO) << "recycle expired txn, key=" << hex(k); | 5840 | 1 | return 0; | 5841 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_4clERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 5741 | 23.0k | auto delete_recycle_txn_kv = [&](const std::string& k) -> int { | 5742 | 23.0k | std::string_view k1 = k; | 5743 | | //RecycleTxnKeyInfo 0:instance_id 1:db_id 2:txn_id | 5744 | 23.0k | k1.remove_prefix(1); // Remove key space | 5745 | 23.0k | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 5746 | 23.0k | int ret = decode_key(&k1, &out); | 5747 | 23.0k | if (ret != 0) { | 5748 | 0 | LOG_ERROR("failed to decode key, ret={}", ret).tag("key", hex(k)); | 5749 | 0 | return -1; | 5750 | 0 | } | 5751 | 23.0k | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); | 5752 | 23.0k | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); | 5753 | 23.0k | VLOG_DEBUG << "instance_id=" << instance_id_ << " db_id=" << db_id << " txn_id=" << txn_id; | 5754 | 23.0k | std::unique_ptr<Transaction> txn; | 5755 | 23.0k | TxnErrorCode err = txn_kv_->create_txn(&txn); | 5756 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5757 | 0 | LOG_ERROR("failed to create txn err={}", err).tag("key", hex(k)); | 5758 | 0 | return -1; | 5759 | 0 | } | 5760 | | // Remove txn index kv | 5761 | 23.0k | auto index_key = txn_index_key({instance_id_, txn_id}); | 5762 | 23.0k | txn->remove(index_key); | 5763 | | // Remove txn info kv | 5764 | 23.0k | std::string info_key, info_val; | 5765 | 23.0k | txn_info_key({instance_id_, db_id, txn_id}, &info_key); | 5766 | 23.0k | err = txn->get(info_key, &info_val); | 5767 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5768 | 0 | LOG_WARNING("failed to get txn info err={}", err).tag("key", hex(info_key)); | 5769 | 0 | return -1; | 5770 | 0 | } | 5771 | 23.0k | TxnInfoPB txn_info; | 5772 | 23.0k | if (!txn_info.ParseFromString(info_val)) { | 5773 | 0 | LOG_WARNING("failed to parse txn info").tag("key", hex(info_key)); | 5774 | 0 | return -1; | 5775 | 0 | } | 5776 | 23.0k | txn->remove(info_key); | 5777 | | // Remove sub txn index kvs | 5778 | 23.0k | std::vector<std::string> sub_txn_index_keys; | 5779 | 23.0k | for (auto sub_txn_id : txn_info.sub_txn_ids()) { | 5780 | 22.9k | auto sub_txn_index_key = txn_index_key({instance_id_, sub_txn_id}); | 5781 | 22.9k | sub_txn_index_keys.push_back(sub_txn_index_key); | 5782 | 22.9k | } | 5783 | 23.0k | for (auto& sub_txn_index_key : sub_txn_index_keys) { | 5784 | 22.9k | txn->remove(sub_txn_index_key); | 5785 | 22.9k | } | 5786 | | // Update txn label | 5787 | 23.0k | std::string label_key, label_val; | 5788 | 23.0k | txn_label_key({instance_id_, db_id, txn_info.label()}, &label_key); | 5789 | 23.0k | err = txn->get(label_key, &label_val); | 5790 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5791 | 0 | LOG(WARNING) << "failed to get txn label, txn_id=" << txn_id << " key=" << label_key | 5792 | 0 | << " err=" << err; | 5793 | 0 | return -1; | 5794 | 0 | } | 5795 | 23.0k | TxnLabelPB txn_label; | 5796 | 23.0k | if (!txn_label.ParseFromArray(label_val.data(), label_val.size() - VERSION_STAMP_LEN)) { | 5797 | 0 | LOG_WARNING("failed to parse txn label").tag("key", hex(label_key)); | 5798 | 0 | return -1; | 5799 | 0 | } | 5800 | 23.0k | auto it = std::find(txn_label.txn_ids().begin(), txn_label.txn_ids().end(), txn_id); | 5801 | 23.0k | if (it != txn_label.txn_ids().end()) { | 5802 | 23.0k | txn_label.mutable_txn_ids()->erase(it); | 5803 | 23.0k | } | 5804 | 23.0k | if (txn_label.txn_ids().empty()) { | 5805 | 23.0k | txn->remove(label_key); | 5806 | 23.0k | TEST_SYNC_POINT_CALLBACK( | 5807 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.remove_label_before"); | 5808 | 23.0k | } else { | 5809 | 73 | if (!txn_label.SerializeToString(&label_val)) { | 5810 | 0 | LOG(WARNING) << "failed to serialize txn label, key=" << hex(label_key); | 5811 | 0 | return -1; | 5812 | 0 | } | 5813 | 73 | TEST_SYNC_POINT_CALLBACK( | 5814 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_before"); | 5815 | 73 | txn->atomic_set_ver_value(label_key, label_val); | 5816 | 73 | TEST_SYNC_POINT_CALLBACK( | 5817 | 73 | "InstanceRecycler::recycle_expired_txn_label.update_label_after"); | 5818 | 73 | } | 5819 | | // Remove recycle txn kv | 5820 | 23.0k | txn->remove(k); | 5821 | 23.0k | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.before_commit"); | 5822 | 23.0k | err = txn->commit(); | 5823 | 23.0k | if (err != TxnErrorCode::TXN_OK) { | 5824 | 62 | if (err == TxnErrorCode::TXN_CONFLICT) { | 5825 | 62 | TEST_SYNC_POINT_CALLBACK( | 5826 | 62 | "InstanceRecycler::recycle_expired_txn_label.txn_conflict"); | 5827 | | // log the txn_id and label | 5828 | 62 | LOG(WARNING) << "txn conflict, txn_id=" << txn_id | 5829 | 62 | << " txn_label_pb=" << txn_label.ShortDebugString() | 5830 | 62 | << " txn_label=" << txn_info.label(); | 5831 | 62 | return 1; | 5832 | 62 | } | 5833 | 0 | LOG(WARNING) << "failed to delete expired txn, err=" << err << " key=" << hex(k); | 5834 | 0 | return -1; | 5835 | 62 | } | 5836 | 23.0k | metrics_context.total_recycled_num = ++num_recycled; | 5837 | 23.0k | metrics_context.report(); | 5838 | | | 5839 | 23.0k | LOG(INFO) << "recycle expired txn, key=" << hex(k); | 5840 | 23.0k | return 0; | 5841 | 23.0k | }; |
|
5842 | | |
5843 | 19 | auto loop_done = [&]() -> int { |
5844 | 10 | DORIS_CLOUD_DEFER { |
5845 | 10 | recycle_txn_info_keys.clear(); |
5846 | 10 | }; recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5844 | 1 | DORIS_CLOUD_DEFER { | 5845 | 1 | recycle_txn_info_keys.clear(); | 5846 | 1 | }; |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 5844 | 9 | DORIS_CLOUD_DEFER { | 5845 | 9 | recycle_txn_info_keys.clear(); | 5846 | 9 | }; |
|
5847 | 10 | TEST_SYNC_POINT_CALLBACK( |
5848 | 10 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", |
5849 | 10 | &recycle_txn_info_keys); |
5850 | 23.0k | for (const auto& k : recycle_txn_info_keys) { |
5851 | 23.0k | concurrent_delete_executor.add([&]() { |
5852 | 23.0k | int ret = delete_recycle_txn_kv(k); |
5853 | 23.0k | if (ret == 1) { |
5854 | 18 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); |
5855 | 54 | for (int i = 1; i <= max_retry; ++i) { |
5856 | 54 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); |
5857 | 54 | ret = delete_recycle_txn_kv(k); |
5858 | | // clang-format off |
5859 | 54 | TEST_SYNC_POINT_CALLBACK( |
5860 | 54 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); |
5861 | | // clang-format off |
5862 | 54 | if (ret != 1) { |
5863 | 18 | break; |
5864 | 18 | } |
5865 | | // random sleep 0-100 ms to retry |
5866 | 36 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); |
5867 | 36 | } |
5868 | 18 | } |
5869 | 23.0k | if (ret != 0) { |
5870 | 9 | LOG_WARNING("failed to delete recycle txn kv") |
5871 | 9 | .tag("instance id", instance_id_) |
5872 | 9 | .tag("key", hex(k)); |
5873 | 9 | return -1; |
5874 | 9 | } |
5875 | 23.0k | return 0; |
5876 | 23.0k | }); recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5851 | 1 | concurrent_delete_executor.add([&]() { | 5852 | 1 | int ret = delete_recycle_txn_kv(k); | 5853 | 1 | if (ret == 1) { | 5854 | 0 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5855 | 0 | for (int i = 1; i <= max_retry; ++i) { | 5856 | 0 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5857 | 0 | ret = delete_recycle_txn_kv(k); | 5858 | | // clang-format off | 5859 | 0 | TEST_SYNC_POINT_CALLBACK( | 5860 | 0 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5861 | | // clang-format off | 5862 | 0 | if (ret != 1) { | 5863 | 0 | break; | 5864 | 0 | } | 5865 | | // random sleep 0-100 ms to retry | 5866 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5867 | 0 | } | 5868 | 0 | } | 5869 | 1 | if (ret != 0) { | 5870 | 0 | LOG_WARNING("failed to delete recycle txn kv") | 5871 | 0 | .tag("instance id", instance_id_) | 5872 | 0 | .tag("key", hex(k)); | 5873 | 0 | return -1; | 5874 | 0 | } | 5875 | 1 | return 0; | 5876 | 1 | }); |
recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEvENKUlvE0_clEv Line | Count | Source | 5851 | 23.0k | concurrent_delete_executor.add([&]() { | 5852 | 23.0k | int ret = delete_recycle_txn_kv(k); | 5853 | 23.0k | if (ret == 1) { | 5854 | 18 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5855 | 54 | for (int i = 1; i <= max_retry; ++i) { | 5856 | 54 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5857 | 54 | ret = delete_recycle_txn_kv(k); | 5858 | | // clang-format off | 5859 | 54 | TEST_SYNC_POINT_CALLBACK( | 5860 | 54 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5861 | | // clang-format off | 5862 | 54 | if (ret != 1) { | 5863 | 18 | break; | 5864 | 18 | } | 5865 | | // random sleep 0-100 ms to retry | 5866 | 36 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5867 | 36 | } | 5868 | 18 | } | 5869 | 23.0k | if (ret != 0) { | 5870 | 9 | LOG_WARNING("failed to delete recycle txn kv") | 5871 | 9 | .tag("instance id", instance_id_) | 5872 | 9 | .tag("key", hex(k)); | 5873 | 9 | return -1; | 5874 | 9 | } | 5875 | 23.0k | return 0; | 5876 | 23.0k | }); |
|
5877 | 23.0k | } |
5878 | 10 | bool finished = true; |
5879 | 10 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); |
5880 | 23.0k | for (int r : rets) { |
5881 | 23.0k | if (r != 0) { |
5882 | 9 | ret = -1; |
5883 | 9 | } |
5884 | 23.0k | } |
5885 | | |
5886 | 10 | ret = finished ? ret : -1; |
5887 | | |
5888 | 10 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); |
5889 | | |
5890 | 10 | if (ret != 0) { |
5891 | 3 | LOG_WARNING("recycle txn kv ret!=0") |
5892 | 3 | .tag("finished", finished) |
5893 | 3 | .tag("ret", ret) |
5894 | 3 | .tag("instance_id", instance_id_); |
5895 | 3 | return ret; |
5896 | 3 | } |
5897 | 7 | return ret; |
5898 | 10 | }; recycler.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEv Line | Count | Source | 5843 | 1 | auto loop_done = [&]() -> int { | 5844 | 1 | DORIS_CLOUD_DEFER { | 5845 | 1 | recycle_txn_info_keys.clear(); | 5846 | 1 | }; | 5847 | 1 | TEST_SYNC_POINT_CALLBACK( | 5848 | 1 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", | 5849 | 1 | &recycle_txn_info_keys); | 5850 | 1 | for (const auto& k : recycle_txn_info_keys) { | 5851 | 1 | concurrent_delete_executor.add([&]() { | 5852 | 1 | int ret = delete_recycle_txn_kv(k); | 5853 | 1 | if (ret == 1) { | 5854 | 1 | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5855 | 1 | for (int i = 1; i <= max_retry; ++i) { | 5856 | 1 | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5857 | 1 | ret = delete_recycle_txn_kv(k); | 5858 | | // clang-format off | 5859 | 1 | TEST_SYNC_POINT_CALLBACK( | 5860 | 1 | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5861 | | // clang-format off | 5862 | 1 | if (ret != 1) { | 5863 | 1 | break; | 5864 | 1 | } | 5865 | | // random sleep 0-100 ms to retry | 5866 | 1 | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5867 | 1 | } | 5868 | 1 | } | 5869 | 1 | if (ret != 0) { | 5870 | 1 | LOG_WARNING("failed to delete recycle txn kv") | 5871 | 1 | .tag("instance id", instance_id_) | 5872 | 1 | .tag("key", hex(k)); | 5873 | 1 | return -1; | 5874 | 1 | } | 5875 | 1 | return 0; | 5876 | 1 | }); | 5877 | 1 | } | 5878 | 1 | bool finished = true; | 5879 | 1 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); | 5880 | 1 | for (int r : rets) { | 5881 | 1 | if (r != 0) { | 5882 | 0 | ret = -1; | 5883 | 0 | } | 5884 | 1 | } | 5885 | | | 5886 | 1 | ret = finished ? ret : -1; | 5887 | | | 5888 | 1 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); | 5889 | | | 5890 | 1 | if (ret != 0) { | 5891 | 0 | LOG_WARNING("recycle txn kv ret!=0") | 5892 | 0 | .tag("finished", finished) | 5893 | 0 | .tag("ret", ret) | 5894 | 0 | .tag("instance_id", instance_id_); | 5895 | 0 | return ret; | 5896 | 0 | } | 5897 | 1 | return ret; | 5898 | 1 | }; |
recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler25recycle_expired_txn_labelEvENK3$_1clEv Line | Count | Source | 5843 | 9 | auto loop_done = [&]() -> int { | 5844 | 9 | DORIS_CLOUD_DEFER { | 5845 | 9 | recycle_txn_info_keys.clear(); | 5846 | 9 | }; | 5847 | 9 | TEST_SYNC_POINT_CALLBACK( | 5848 | 9 | "InstanceRecycler::recycle_expired_txn_label.check_recycle_txn_info_keys", | 5849 | 9 | &recycle_txn_info_keys); | 5850 | 23.0k | for (const auto& k : recycle_txn_info_keys) { | 5851 | 23.0k | concurrent_delete_executor.add([&]() { | 5852 | 23.0k | int ret = delete_recycle_txn_kv(k); | 5853 | 23.0k | if (ret == 1) { | 5854 | 23.0k | const int max_retry = std::max(1, config::recycle_txn_delete_max_retry_times); | 5855 | 23.0k | for (int i = 1; i <= max_retry; ++i) { | 5856 | 23.0k | LOG(WARNING) << "txn conflict, retry times=" << i << " key=" << hex(k); | 5857 | 23.0k | ret = delete_recycle_txn_kv(k); | 5858 | | // clang-format off | 5859 | 23.0k | TEST_SYNC_POINT_CALLBACK( | 5860 | 23.0k | "InstanceRecycler::recycle_expired_txn_label.delete_recycle_txn_kv_error", &ret); | 5861 | | // clang-format off | 5862 | 23.0k | if (ret != 1) { | 5863 | 23.0k | break; | 5864 | 23.0k | } | 5865 | | // random sleep 0-100 ms to retry | 5866 | 23.0k | std::this_thread::sleep_for(std::chrono::milliseconds(rand() % 100)); | 5867 | 23.0k | } | 5868 | 23.0k | } | 5869 | 23.0k | if (ret != 0) { | 5870 | 23.0k | LOG_WARNING("failed to delete recycle txn kv") | 5871 | 23.0k | .tag("instance id", instance_id_) | 5872 | 23.0k | .tag("key", hex(k)); | 5873 | 23.0k | return -1; | 5874 | 23.0k | } | 5875 | 23.0k | return 0; | 5876 | 23.0k | }); | 5877 | 23.0k | } | 5878 | 9 | bool finished = true; | 5879 | 9 | std::vector<int> rets = concurrent_delete_executor.when_all(&finished); | 5880 | 23.0k | for (int r : rets) { | 5881 | 23.0k | if (r != 0) { | 5882 | 9 | ret = -1; | 5883 | 9 | } | 5884 | 23.0k | } | 5885 | | | 5886 | 9 | ret = finished ? ret : -1; | 5887 | | | 5888 | 9 | TEST_SYNC_POINT_CALLBACK("InstanceRecycler::recycle_expired_txn_label.failure", &ret); | 5889 | | | 5890 | 9 | if (ret != 0) { | 5891 | 3 | LOG_WARNING("recycle txn kv ret!=0") | 5892 | 3 | .tag("finished", finished) | 5893 | 3 | .tag("ret", ret) | 5894 | 3 | .tag("instance_id", instance_id_); | 5895 | 3 | return ret; | 5896 | 3 | } | 5897 | 6 | return ret; | 5898 | 9 | }; |
|
5899 | | |
5900 | 19 | if (config::enable_recycler_stats_metrics) { |
5901 | 0 | scan_and_statistics_expired_txn_label(); |
5902 | 0 | } |
5903 | | // recycle_func and loop_done for scan and recycle |
5904 | 19 | return scan_and_recycle(begin_recycle_txn_key, end_recycle_txn_key, |
5905 | 19 | std::move(handle_recycle_txn_kv), std::move(loop_done)); |
5906 | 19 | } |
5907 | | |
5908 | | struct CopyJobIdTuple { |
5909 | | std::string instance_id; |
5910 | | std::string stage_id; |
5911 | | long table_id; |
5912 | | std::string copy_id; |
5913 | | std::string stage_path; |
5914 | | }; |
5915 | | struct BatchObjStoreAccessor { |
5916 | | BatchObjStoreAccessor(std::shared_ptr<StorageVaultAccessor> accessor, uint64_t& batch_count, |
5917 | | TxnKv* txn_kv) |
5918 | 3 | : accessor_(std::move(accessor)), batch_count_(batch_count), txn_kv_(txn_kv) {}; |
5919 | 3 | ~BatchObjStoreAccessor() { |
5920 | 3 | if (!paths_.empty()) { |
5921 | 3 | consume(); |
5922 | 3 | } |
5923 | 3 | } |
5924 | | |
5925 | | /** |
5926 | | * To implicitely do batch work and submit the batch delete task to s3 |
5927 | | * The s3 delete opreations would be done in batches, and then delete CopyJobPB key one by one |
5928 | | * |
5929 | | * @param copy_job The protubuf struct consists of the copy job files. |
5930 | | * @param key The copy job's key on fdb, the key is originally occupied by fdb range iterator, to make sure |
5931 | | * it would last until we finish the delete task, here we need pass one string value |
5932 | | * @param cope_job_id_tuple One tuple {log_trace instance_id, stage_id, table_id, query_id, stage_path} to print log |
5933 | | */ |
5934 | 5 | void add(CopyJobPB copy_job, std::string key, const CopyJobIdTuple cope_job_id_tuple) { |
5935 | 5 | auto& [instance_id, stage_id, table_id, copy_id, path] = cope_job_id_tuple; |
5936 | 5 | auto& file_keys = copy_file_keys_[key]; |
5937 | 5 | file_keys.log_trace = |
5938 | 5 | fmt::format("instance_id={}, stage_id={}, table_id={}, query_id={}, path={}", |
5939 | 5 | instance_id, stage_id, table_id, copy_id, path); |
5940 | 5 | std::string_view log_trace = file_keys.log_trace; |
5941 | 2.03k | for (const auto& file : copy_job.object_files()) { |
5942 | 2.03k | auto relative_path = file.relative_path(); |
5943 | 2.03k | paths_.push_back(relative_path); |
5944 | 2.03k | file_keys.keys.push_back(copy_file_key( |
5945 | 2.03k | {instance_id, stage_id, table_id, file.relative_path(), file.etag()})); |
5946 | 2.03k | LOG_INFO(log_trace) |
5947 | 2.03k | .tag("relative_path", relative_path) |
5948 | 2.03k | .tag("batch_count", batch_count_); |
5949 | 2.03k | } |
5950 | 5 | LOG_INFO(log_trace) |
5951 | 5 | .tag("objects_num", copy_job.object_files().size()) |
5952 | 5 | .tag("batch_count", batch_count_); |
5953 | | // 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 |
5954 | | // recommend using delete objects when objects num is less than 10) |
5955 | 5 | if (paths_.size() < 1000) { |
5956 | 3 | return; |
5957 | 3 | } |
5958 | 2 | consume(); |
5959 | 2 | } |
5960 | | |
5961 | | private: |
5962 | 5 | void consume() { |
5963 | 5 | DORIS_CLOUD_DEFER { |
5964 | 5 | paths_.clear(); |
5965 | 5 | copy_file_keys_.clear(); |
5966 | 5 | batch_count_++; |
5967 | | |
5968 | 5 | LOG_WARNING("begin to delete {} internal stage objects in batch {}", paths_.size(), |
5969 | 5 | batch_count_); |
5970 | 5 | }; |
5971 | | |
5972 | 5 | StopWatch sw; |
5973 | | // TODO(yuejing): 在accessor的delete_objets的实现里可以考虑如果_paths数量不超过10个的话,就直接发10个delete objection operation而不是发post |
5974 | 5 | if (0 != accessor_->delete_files(paths_)) { |
5975 | 2 | LOG_WARNING("failed to delete {} internal stage objects in batch {} and it takes {} us", |
5976 | 2 | paths_.size(), batch_count_, sw.elapsed_us()); |
5977 | 2 | return; |
5978 | 2 | } |
5979 | 3 | LOG_WARNING("succeed to delete {} internal stage objects in batch {} and it takes {} us", |
5980 | 3 | paths_.size(), batch_count_, sw.elapsed_us()); |
5981 | | // delete fdb's keys |
5982 | 3 | for (auto& file_keys : copy_file_keys_) { |
5983 | 3 | auto& [log_trace, keys] = file_keys.second; |
5984 | 3 | std::unique_ptr<Transaction> txn; |
5985 | 3 | if (txn_kv_->create_txn(&txn) != cloud::TxnErrorCode::TXN_OK) { |
5986 | 0 | LOG(WARNING) << "failed to create txn"; |
5987 | 0 | continue; |
5988 | 0 | } |
5989 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. |
5990 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are |
5991 | | // limited, should not cause the txn commit failed. |
5992 | 1.02k | for (const auto& key : keys) { |
5993 | 1.02k | txn->remove(key); |
5994 | 1.02k | LOG_INFO("remove copy_file_key={}, {}", hex(key), log_trace); |
5995 | 1.02k | } |
5996 | 3 | txn->remove(file_keys.first); |
5997 | 3 | if (auto ret = txn->commit(); ret != cloud::TxnErrorCode::TXN_OK) { |
5998 | 0 | LOG(WARNING) << "failed to commit txn ret is " << ret; |
5999 | 0 | continue; |
6000 | 0 | } |
6001 | 3 | } |
6002 | 3 | } |
6003 | | std::shared_ptr<StorageVaultAccessor> accessor_; |
6004 | | // the path of the s3 files to be deleted |
6005 | | std::vector<std::string> paths_; |
6006 | | struct CopyFiles { |
6007 | | std::string log_trace; |
6008 | | std::vector<std::string> keys; |
6009 | | }; |
6010 | | // pair<std::string, std::vector<std::string>> |
6011 | | // first: instance_id_ stage_id table_id query_id |
6012 | | // second: keys to be deleted |
6013 | | // <fdb key, <{instance_id_ stage_id table_id query_id}, file keys to be deleted>> |
6014 | | std::unordered_map<std::string, CopyFiles> copy_file_keys_; |
6015 | | // used to distinguish different batch tasks, the task log consists of thread ID and batch number |
6016 | | // which can together uniquely identifies different tasks for tracing log |
6017 | | uint64_t& batch_count_; |
6018 | | TxnKv* txn_kv_; |
6019 | | }; |
6020 | | |
6021 | 13 | int InstanceRecycler::recycle_copy_jobs() { |
6022 | 13 | int64_t num_scanned = 0; |
6023 | 13 | int64_t num_finished = 0; |
6024 | 13 | int64_t num_expired = 0; |
6025 | 13 | int64_t num_recycled = 0; |
6026 | | // Used for INTERNAL stage's copy jobs to tag each batch for log trace |
6027 | 13 | uint64_t batch_count = 0; |
6028 | 13 | const std::string task_name = "recycle_copy_jobs"; |
6029 | 13 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
6030 | | |
6031 | 13 | LOG_WARNING("begin to recycle copy jobs").tag("instance_id", instance_id_); |
6032 | | |
6033 | 13 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6034 | 13 | register_recycle_task(task_name, start_time); |
6035 | | |
6036 | 13 | DORIS_CLOUD_DEFER { |
6037 | 13 | unregister_recycle_task(task_name); |
6038 | 13 | int64_t cost = |
6039 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6040 | 13 | metrics_context.finish_report(); |
6041 | 13 | LOG_WARNING("recycle copy jobs finished, cost={}s", cost) |
6042 | 13 | .tag("instance_id", instance_id_) |
6043 | 13 | .tag("num_scanned", num_scanned) |
6044 | 13 | .tag("num_finished", num_finished) |
6045 | 13 | .tag("num_expired", num_expired) |
6046 | 13 | .tag("num_recycled", num_recycled); |
6047 | 13 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler17recycle_copy_jobsEvENK3$_0clEv Line | Count | Source | 6036 | 13 | DORIS_CLOUD_DEFER { | 6037 | 13 | unregister_recycle_task(task_name); | 6038 | 13 | int64_t cost = | 6039 | 13 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6040 | 13 | metrics_context.finish_report(); | 6041 | 13 | LOG_WARNING("recycle copy jobs finished, cost={}s", cost) | 6042 | 13 | .tag("instance_id", instance_id_) | 6043 | 13 | .tag("num_scanned", num_scanned) | 6044 | 13 | .tag("num_finished", num_finished) | 6045 | 13 | .tag("num_expired", num_expired) | 6046 | 13 | .tag("num_recycled", num_recycled); | 6047 | 13 | }; |
|
6048 | | |
6049 | 13 | CopyJobKeyInfo key_info0 {instance_id_, "", 0, "", 0}; |
6050 | 13 | CopyJobKeyInfo key_info1 {instance_id_, "\xff", 0, "", 0}; |
6051 | 13 | std::string key0; |
6052 | 13 | std::string key1; |
6053 | 13 | copy_job_key(key_info0, &key0); |
6054 | 13 | copy_job_key(key_info1, &key1); |
6055 | 13 | std::unordered_map<std::string, std::shared_ptr<BatchObjStoreAccessor>> stage_accessor_map; |
6056 | 13 | auto recycle_func = [&start_time, &num_scanned, &num_finished, &num_expired, &num_recycled, |
6057 | 13 | &batch_count, &stage_accessor_map, &task_name, &metrics_context, |
6058 | 16 | this](std::string_view k, std::string_view v) -> int { |
6059 | 16 | ++num_scanned; |
6060 | 16 | CopyJobPB copy_job; |
6061 | 16 | if (!copy_job.ParseFromArray(v.data(), v.size())) { |
6062 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); |
6063 | 0 | return -1; |
6064 | 0 | } |
6065 | | |
6066 | | // decode copy job key |
6067 | 16 | auto k1 = k; |
6068 | 16 | k1.remove_prefix(1); |
6069 | 16 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6070 | 16 | decode_key(&k1, &out); |
6071 | | // 0x01 "copy" ${instance_id} "job" ${stage_id} ${table_id} ${copy_id} ${group_id} |
6072 | | // -> CopyJobPB |
6073 | 16 | const auto& stage_id = std::get<std::string>(std::get<0>(out[3])); |
6074 | 16 | const auto& table_id = std::get<int64_t>(std::get<0>(out[4])); |
6075 | 16 | const auto& copy_id = std::get<std::string>(std::get<0>(out[5])); |
6076 | | |
6077 | 16 | bool check_storage = true; |
6078 | 16 | if (copy_job.job_status() == CopyJobPB::FINISH) { |
6079 | 12 | ++num_finished; |
6080 | | |
6081 | 12 | if (copy_job.stage_type() == StagePB::INTERNAL) { |
6082 | 7 | auto it = stage_accessor_map.find(stage_id); |
6083 | 7 | std::shared_ptr<BatchObjStoreAccessor> accessor; |
6084 | 7 | std::string_view path; |
6085 | 7 | if (it != stage_accessor_map.end()) { |
6086 | 2 | accessor = it->second; |
6087 | 5 | } else { |
6088 | 5 | std::shared_ptr<StorageVaultAccessor> inner_accessor; |
6089 | 5 | auto ret = init_copy_job_accessor(stage_id, copy_job.stage_type(), |
6090 | 5 | &inner_accessor); |
6091 | 5 | if (ret < 0) { // error |
6092 | 0 | LOG_WARNING("Failed to init_copy_job_accessor due to error code {}", ret); |
6093 | 0 | return -1; |
6094 | 5 | } else if (ret == 0) { |
6095 | 3 | path = inner_accessor->uri(); |
6096 | 3 | accessor = std::make_shared<BatchObjStoreAccessor>( |
6097 | 3 | inner_accessor, batch_count, txn_kv_.get()); |
6098 | 3 | stage_accessor_map.emplace(stage_id, accessor); |
6099 | 3 | } else { // stage not found, skip check storage |
6100 | 2 | check_storage = false; |
6101 | 2 | } |
6102 | 5 | } |
6103 | 7 | if (check_storage) { |
6104 | | // TODO delete objects with key and etag is not supported |
6105 | 5 | accessor->add(std::move(copy_job), std::string(k), |
6106 | 5 | {instance_id_, stage_id, table_id, copy_id, std::string(path)}); |
6107 | 5 | return 0; |
6108 | 5 | } |
6109 | 7 | } else if (copy_job.stage_type() == StagePB::EXTERNAL) { |
6110 | 5 | int64_t current_time = |
6111 | 5 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6112 | 5 | if (copy_job.finish_time_ms() > 0) { |
6113 | 2 | if (!config::force_immediate_recycle && |
6114 | 2 | current_time < copy_job.finish_time_ms() + |
6115 | 2 | config::copy_job_max_retention_second * 1000) { |
6116 | 1 | return 0; |
6117 | 1 | } |
6118 | 3 | } else { |
6119 | | // For compatibility, copy job does not contain finish time before 2.2.2, use start time |
6120 | 3 | if (!config::force_immediate_recycle && |
6121 | 3 | current_time < copy_job.start_time_ms() + |
6122 | 3 | config::copy_job_max_retention_second * 1000) { |
6123 | 1 | return 0; |
6124 | 1 | } |
6125 | 3 | } |
6126 | 5 | } |
6127 | 12 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { |
6128 | 4 | int64_t current_time = |
6129 | 4 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6130 | | // if copy job is timeout: delete all copy file kvs and copy job kv |
6131 | 4 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { |
6132 | 2 | return 0; |
6133 | 2 | } |
6134 | 2 | ++num_expired; |
6135 | 2 | } |
6136 | | |
6137 | | // delete all copy files |
6138 | 7 | std::vector<std::string> copy_file_keys; |
6139 | 70 | for (auto& file : copy_job.object_files()) { |
6140 | 70 | copy_file_keys.push_back(copy_file_key( |
6141 | 70 | {instance_id_, stage_id, table_id, file.relative_path(), file.etag()})); |
6142 | 70 | } |
6143 | 7 | std::unique_ptr<Transaction> txn; |
6144 | 7 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { |
6145 | 0 | LOG(WARNING) << "failed to create txn"; |
6146 | 0 | return -1; |
6147 | 0 | } |
6148 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. |
6149 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are |
6150 | | // limited, should not cause the txn commit failed. |
6151 | 70 | for (const auto& key : copy_file_keys) { |
6152 | 70 | txn->remove(key); |
6153 | 70 | LOG(INFO) << "remove copy_file_key=" << hex(key) << ", instance_id=" << instance_id_ |
6154 | 70 | << ", stage_id=" << stage_id << ", table_id=" << table_id |
6155 | 70 | << ", query_id=" << copy_id; |
6156 | 70 | } |
6157 | 7 | txn->remove(k); |
6158 | 7 | TxnErrorCode err = txn->commit(); |
6159 | 7 | if (err != TxnErrorCode::TXN_OK) { |
6160 | 0 | LOG(WARNING) << "failed to commit txn, err=" << err; |
6161 | 0 | return -1; |
6162 | 0 | } |
6163 | | |
6164 | 7 | metrics_context.total_recycled_num = ++num_recycled; |
6165 | 7 | metrics_context.report(); |
6166 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); |
6167 | 7 | return 0; |
6168 | 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 | 6058 | 16 | this](std::string_view k, std::string_view v) -> int { | 6059 | 16 | ++num_scanned; | 6060 | 16 | CopyJobPB copy_job; | 6061 | 16 | if (!copy_job.ParseFromArray(v.data(), v.size())) { | 6062 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); | 6063 | 0 | return -1; | 6064 | 0 | } | 6065 | | | 6066 | | // decode copy job key | 6067 | 16 | auto k1 = k; | 6068 | 16 | k1.remove_prefix(1); | 6069 | 16 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; | 6070 | 16 | decode_key(&k1, &out); | 6071 | | // 0x01 "copy" ${instance_id} "job" ${stage_id} ${table_id} ${copy_id} ${group_id} | 6072 | | // -> CopyJobPB | 6073 | 16 | const auto& stage_id = std::get<std::string>(std::get<0>(out[3])); | 6074 | 16 | const auto& table_id = std::get<int64_t>(std::get<0>(out[4])); | 6075 | 16 | const auto& copy_id = std::get<std::string>(std::get<0>(out[5])); | 6076 | | | 6077 | 16 | bool check_storage = true; | 6078 | 16 | if (copy_job.job_status() == CopyJobPB::FINISH) { | 6079 | 12 | ++num_finished; | 6080 | | | 6081 | 12 | if (copy_job.stage_type() == StagePB::INTERNAL) { | 6082 | 7 | auto it = stage_accessor_map.find(stage_id); | 6083 | 7 | std::shared_ptr<BatchObjStoreAccessor> accessor; | 6084 | 7 | std::string_view path; | 6085 | 7 | if (it != stage_accessor_map.end()) { | 6086 | 2 | accessor = it->second; | 6087 | 5 | } else { | 6088 | 5 | std::shared_ptr<StorageVaultAccessor> inner_accessor; | 6089 | 5 | auto ret = init_copy_job_accessor(stage_id, copy_job.stage_type(), | 6090 | 5 | &inner_accessor); | 6091 | 5 | if (ret < 0) { // error | 6092 | 0 | LOG_WARNING("Failed to init_copy_job_accessor due to error code {}", ret); | 6093 | 0 | return -1; | 6094 | 5 | } else if (ret == 0) { | 6095 | 3 | path = inner_accessor->uri(); | 6096 | 3 | accessor = std::make_shared<BatchObjStoreAccessor>( | 6097 | 3 | inner_accessor, batch_count, txn_kv_.get()); | 6098 | 3 | stage_accessor_map.emplace(stage_id, accessor); | 6099 | 3 | } else { // stage not found, skip check storage | 6100 | 2 | check_storage = false; | 6101 | 2 | } | 6102 | 5 | } | 6103 | 7 | if (check_storage) { | 6104 | | // TODO delete objects with key and etag is not supported | 6105 | 5 | accessor->add(std::move(copy_job), std::string(k), | 6106 | 5 | {instance_id_, stage_id, table_id, copy_id, std::string(path)}); | 6107 | 5 | return 0; | 6108 | 5 | } | 6109 | 7 | } else if (copy_job.stage_type() == StagePB::EXTERNAL) { | 6110 | 5 | int64_t current_time = | 6111 | 5 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); | 6112 | 5 | if (copy_job.finish_time_ms() > 0) { | 6113 | 2 | if (!config::force_immediate_recycle && | 6114 | 2 | current_time < copy_job.finish_time_ms() + | 6115 | 2 | config::copy_job_max_retention_second * 1000) { | 6116 | 1 | return 0; | 6117 | 1 | } | 6118 | 3 | } else { | 6119 | | // For compatibility, copy job does not contain finish time before 2.2.2, use start time | 6120 | 3 | if (!config::force_immediate_recycle && | 6121 | 3 | current_time < copy_job.start_time_ms() + | 6122 | 3 | config::copy_job_max_retention_second * 1000) { | 6123 | 1 | return 0; | 6124 | 1 | } | 6125 | 3 | } | 6126 | 5 | } | 6127 | 12 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { | 6128 | 4 | int64_t current_time = | 6129 | 4 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); | 6130 | | // if copy job is timeout: delete all copy file kvs and copy job kv | 6131 | 4 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { | 6132 | 2 | return 0; | 6133 | 2 | } | 6134 | 2 | ++num_expired; | 6135 | 2 | } | 6136 | | | 6137 | | // delete all copy files | 6138 | 7 | std::vector<std::string> copy_file_keys; | 6139 | 70 | for (auto& file : copy_job.object_files()) { | 6140 | 70 | copy_file_keys.push_back(copy_file_key( | 6141 | 70 | {instance_id_, stage_id, table_id, file.relative_path(), file.etag()})); | 6142 | 70 | } | 6143 | 7 | std::unique_ptr<Transaction> txn; | 6144 | 7 | if (txn_kv_->create_txn(&txn) != TxnErrorCode::TXN_OK) { | 6145 | 0 | LOG(WARNING) << "failed to create txn"; | 6146 | 0 | return -1; | 6147 | 0 | } | 6148 | | // FIXME: We have already limited the file num and file meta size when selecting file in FE. | 6149 | | // And if too many copy files, begin_copy failed commit too. So here the copy file keys are | 6150 | | // limited, should not cause the txn commit failed. | 6151 | 70 | for (const auto& key : copy_file_keys) { | 6152 | 70 | txn->remove(key); | 6153 | 70 | LOG(INFO) << "remove copy_file_key=" << hex(key) << ", instance_id=" << instance_id_ | 6154 | 70 | << ", stage_id=" << stage_id << ", table_id=" << table_id | 6155 | 70 | << ", query_id=" << copy_id; | 6156 | 70 | } | 6157 | 7 | txn->remove(k); | 6158 | 7 | TxnErrorCode err = txn->commit(); | 6159 | 7 | if (err != TxnErrorCode::TXN_OK) { | 6160 | 0 | LOG(WARNING) << "failed to commit txn, err=" << err; | 6161 | 0 | return -1; | 6162 | 0 | } | 6163 | | | 6164 | 7 | metrics_context.total_recycled_num = ++num_recycled; | 6165 | 7 | metrics_context.report(); | 6166 | 7 | check_recycle_task(instance_id_, task_name, num_scanned, num_recycled, start_time); | 6167 | 7 | return 0; | 6168 | 7 | }; |
|
6169 | | |
6170 | 13 | if (config::enable_recycler_stats_metrics) { |
6171 | 0 | scan_and_statistics_copy_jobs(); |
6172 | 0 | } |
6173 | | // recycle_func and loop_done for scan and recycle |
6174 | 13 | return scan_and_recycle(key0, key1, std::move(recycle_func)); |
6175 | 13 | } |
6176 | | |
6177 | | int InstanceRecycler::init_copy_job_accessor(const std::string& stage_id, |
6178 | | const StagePB::StageType& stage_type, |
6179 | 5 | std::shared_ptr<StorageVaultAccessor>* accessor) { |
6180 | 5 | #ifdef UNIT_TEST |
6181 | | // In unit test, external use the same accessor as the internal stage |
6182 | 5 | auto it = accessor_map_.find(stage_id); |
6183 | 5 | if (it != accessor_map_.end()) { |
6184 | 3 | *accessor = it->second; |
6185 | 3 | } else { |
6186 | 2 | std::cout << "UT can not find accessor with stage_id: " << stage_id << std::endl; |
6187 | 2 | return 1; |
6188 | 2 | } |
6189 | | #else |
6190 | | // init s3 accessor and add to accessor map |
6191 | | auto stage_it = |
6192 | | std::find_if(instance_info_.stages().begin(), instance_info_.stages().end(), |
6193 | | [&stage_id](auto&& stage) { return stage.stage_id() == stage_id; }); |
6194 | | |
6195 | | if (stage_it == instance_info_.stages().end()) { |
6196 | | LOG(INFO) << "Recycle nonexisted stage copy jobs. instance_id=" << instance_id_ |
6197 | | << ", stage_id=" << stage_id << ", stage_type=" << stage_type; |
6198 | | return 1; |
6199 | | } |
6200 | | |
6201 | | const auto& object_store_info = stage_it->obj_info(); |
6202 | | auto stage_access_type = stage_it->has_access_type() ? stage_it->access_type() : StagePB::AKSK; |
6203 | | |
6204 | | S3Conf s3_conf; |
6205 | | if (stage_type == StagePB::EXTERNAL) { |
6206 | | if (stage_access_type == StagePB::AKSK) { |
6207 | | auto conf = S3Conf::from_obj_store_info(object_store_info); |
6208 | | if (!conf) { |
6209 | | return -1; |
6210 | | } |
6211 | | |
6212 | | s3_conf = std::move(*conf); |
6213 | | } else if (stage_access_type == StagePB::BUCKET_ACL) { |
6214 | | auto conf = S3Conf::from_obj_store_info(object_store_info, true /* skip_aksk */); |
6215 | | if (!conf) { |
6216 | | return -1; |
6217 | | } |
6218 | | |
6219 | | s3_conf = std::move(*conf); |
6220 | | if (instance_info_.ram_user().has_encryption_info()) { |
6221 | | AkSkPair plain_ak_sk_pair; |
6222 | | int ret = decrypt_ak_sk_helper( |
6223 | | instance_info_.ram_user().ak(), instance_info_.ram_user().sk(), |
6224 | | instance_info_.ram_user().encryption_info(), &plain_ak_sk_pair); |
6225 | | if (ret != 0) { |
6226 | | LOG(WARNING) << "fail to decrypt ak sk. instance_id: " << instance_id_ |
6227 | | << " ram_user: " << proto_to_json(instance_info_.ram_user()); |
6228 | | return -1; |
6229 | | } |
6230 | | s3_conf.ak = std::move(plain_ak_sk_pair.first); |
6231 | | s3_conf.sk = std::move(plain_ak_sk_pair.second); |
6232 | | } else { |
6233 | | s3_conf.ak = instance_info_.ram_user().ak(); |
6234 | | s3_conf.sk = instance_info_.ram_user().sk(); |
6235 | | } |
6236 | | } else { |
6237 | | LOG(INFO) << "Unsupported stage access type=" << stage_access_type |
6238 | | << ", instance_id=" << instance_id_ << ", stage_id=" << stage_id; |
6239 | | return -1; |
6240 | | } |
6241 | | } else if (stage_type == StagePB::INTERNAL) { |
6242 | | int idx = stoi(object_store_info.id()); |
6243 | | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6244 | | LOG(WARNING) << "invalid idx: " << idx; |
6245 | | return -1; |
6246 | | } |
6247 | | |
6248 | | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6249 | | auto conf = S3Conf::from_obj_store_info(old_obj); |
6250 | | if (!conf) { |
6251 | | return -1; |
6252 | | } |
6253 | | |
6254 | | s3_conf = std::move(*conf); |
6255 | | s3_conf.prefix = object_store_info.prefix(); |
6256 | | } else { |
6257 | | LOG(WARNING) << "unknown stage type " << stage_type; |
6258 | | return -1; |
6259 | | } |
6260 | | |
6261 | | std::shared_ptr<S3Accessor> s3_accessor; |
6262 | | int ret = S3Accessor::create(std::move(s3_conf), &s3_accessor); |
6263 | | if (ret != 0) { |
6264 | | LOG(WARNING) << "failed to init s3 accessor ret=" << ret; |
6265 | | return -1; |
6266 | | } |
6267 | | |
6268 | | *accessor = std::move(s3_accessor); |
6269 | | #endif |
6270 | 3 | return 0; |
6271 | 5 | } |
6272 | | |
6273 | 11 | int InstanceRecycler::recycle_stage() { |
6274 | 11 | int64_t num_scanned = 0; |
6275 | 11 | int64_t num_recycled = 0; |
6276 | 11 | const std::string task_name = "recycle_stage"; |
6277 | 11 | RecyclerMetricsContext metrics_context(instance_id_, task_name); |
6278 | | |
6279 | 11 | LOG_WARNING("begin to recycle stage").tag("instance_id", instance_id_); |
6280 | | |
6281 | 11 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6282 | 11 | register_recycle_task(task_name, start_time); |
6283 | | |
6284 | 11 | DORIS_CLOUD_DEFER { |
6285 | 11 | unregister_recycle_task(task_name); |
6286 | 11 | int64_t cost = |
6287 | 11 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6288 | 11 | metrics_context.finish_report(); |
6289 | 11 | LOG_WARNING("recycle stage, cost={}s", cost) |
6290 | 11 | .tag("instance_id", instance_id_) |
6291 | 11 | .tag("num_scanned", num_scanned) |
6292 | 11 | .tag("num_recycled", num_recycled); |
6293 | 11 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_0clEv Line | Count | Source | 6284 | 11 | DORIS_CLOUD_DEFER { | 6285 | 11 | unregister_recycle_task(task_name); | 6286 | 11 | int64_t cost = | 6287 | 11 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6288 | 11 | metrics_context.finish_report(); | 6289 | 11 | LOG_WARNING("recycle stage, cost={}s", cost) | 6290 | 11 | .tag("instance_id", instance_id_) | 6291 | 11 | .tag("num_scanned", num_scanned) | 6292 | 11 | .tag("num_recycled", num_recycled); | 6293 | 11 | }; |
|
6294 | | |
6295 | 11 | RecycleStageKeyInfo key_info0 {instance_id_, ""}; |
6296 | 11 | RecycleStageKeyInfo key_info1 {instance_id_, "\xff"}; |
6297 | 11 | std::string key0 = recycle_stage_key(key_info0); |
6298 | 11 | std::string key1 = recycle_stage_key(key_info1); |
6299 | | |
6300 | 11 | std::vector<std::string_view> stage_keys; |
6301 | 11 | auto recycle_func = [&start_time, &num_scanned, &num_recycled, &stage_keys, &metrics_context, |
6302 | 11 | this](std::string_view k, std::string_view v) -> int { |
6303 | 1 | ++num_scanned; |
6304 | 1 | RecycleStagePB recycle_stage; |
6305 | 1 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { |
6306 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); |
6307 | 0 | return -1; |
6308 | 0 | } |
6309 | | |
6310 | 1 | int idx = stoi(recycle_stage.stage().obj_info().id()); |
6311 | 1 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6312 | 0 | LOG(WARNING) << "invalid idx: " << idx; |
6313 | 0 | return -1; |
6314 | 0 | } |
6315 | | |
6316 | 1 | std::shared_ptr<StorageVaultAccessor> accessor; |
6317 | 1 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( |
6318 | 1 | [&] { |
6319 | 1 | auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6320 | 1 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6321 | 1 | if (!s3_conf) { |
6322 | 1 | return -1; |
6323 | 1 | } |
6324 | | |
6325 | 1 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); |
6326 | 1 | std::shared_ptr<S3Accessor> s3_accessor; |
6327 | 1 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); |
6328 | 1 | if (ret != 0) { |
6329 | 1 | return -1; |
6330 | 1 | } |
6331 | | |
6332 | 1 | accessor = std::move(s3_accessor); |
6333 | 1 | return 0; |
6334 | 1 | }(), |
6335 | 1 | "recycle_stage:get_accessor", &accessor); |
6336 | | |
6337 | 1 | if (ret != 0) { |
6338 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; |
6339 | 0 | return ret; |
6340 | 0 | } |
6341 | | |
6342 | 1 | LOG_WARNING("begin to delete objects of dropped internal stage") |
6343 | 1 | .tag("instance_id", instance_id_) |
6344 | 1 | .tag("stage_id", recycle_stage.stage().stage_id()) |
6345 | 1 | .tag("user_name", recycle_stage.stage().mysql_user_name()[0]) |
6346 | 1 | .tag("user_id", recycle_stage.stage().mysql_user_id()[0]) |
6347 | 1 | .tag("obj_info_id", idx) |
6348 | 1 | .tag("prefix", recycle_stage.stage().obj_info().prefix()); |
6349 | 1 | ret = accessor->delete_all(); |
6350 | 1 | if (ret != 0) { |
6351 | 0 | LOG(WARNING) << "failed to delete objects of dropped internal stage. instance_id=" |
6352 | 0 | << instance_id_ << ", stage_id=" << recycle_stage.stage().stage_id() |
6353 | 0 | << ", prefix=" << recycle_stage.stage().obj_info().prefix() |
6354 | 0 | << ", ret=" << ret; |
6355 | 0 | return -1; |
6356 | 0 | } |
6357 | 1 | metrics_context.total_recycled_num = ++num_recycled; |
6358 | 1 | metrics_context.report(); |
6359 | 1 | check_recycle_task(instance_id_, "recycle_stage", num_scanned, num_recycled, start_time); |
6360 | 1 | stage_keys.push_back(k); |
6361 | 1 | return 0; |
6362 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_2clESt17basic_string_viewIcSt11char_traitsIcEES6_ Line | Count | Source | 6302 | 1 | this](std::string_view k, std::string_view v) -> int { | 6303 | 1 | ++num_scanned; | 6304 | 1 | RecycleStagePB recycle_stage; | 6305 | 1 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { | 6306 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); | 6307 | 0 | return -1; | 6308 | 0 | } | 6309 | | | 6310 | 1 | int idx = stoi(recycle_stage.stage().obj_info().id()); | 6311 | 1 | if (idx > instance_info_.obj_info().size() || idx < 1) { | 6312 | 0 | LOG(WARNING) << "invalid idx: " << idx; | 6313 | 0 | return -1; | 6314 | 0 | } | 6315 | | | 6316 | 1 | std::shared_ptr<StorageVaultAccessor> accessor; | 6317 | 1 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( | 6318 | 1 | [&] { | 6319 | 1 | auto& old_obj = instance_info_.obj_info()[idx - 1]; | 6320 | 1 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); | 6321 | 1 | if (!s3_conf) { | 6322 | 1 | return -1; | 6323 | 1 | } | 6324 | | | 6325 | 1 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); | 6326 | 1 | std::shared_ptr<S3Accessor> s3_accessor; | 6327 | 1 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); | 6328 | 1 | if (ret != 0) { | 6329 | 1 | return -1; | 6330 | 1 | } | 6331 | | | 6332 | 1 | accessor = std::move(s3_accessor); | 6333 | 1 | return 0; | 6334 | 1 | }(), | 6335 | 1 | "recycle_stage:get_accessor", &accessor); | 6336 | | | 6337 | 1 | if (ret != 0) { | 6338 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; | 6339 | 0 | return ret; | 6340 | 0 | } | 6341 | | | 6342 | 1 | LOG_WARNING("begin to delete objects of dropped internal stage") | 6343 | 1 | .tag("instance_id", instance_id_) | 6344 | 1 | .tag("stage_id", recycle_stage.stage().stage_id()) | 6345 | 1 | .tag("user_name", recycle_stage.stage().mysql_user_name()[0]) | 6346 | 1 | .tag("user_id", recycle_stage.stage().mysql_user_id()[0]) | 6347 | 1 | .tag("obj_info_id", idx) | 6348 | 1 | .tag("prefix", recycle_stage.stage().obj_info().prefix()); | 6349 | 1 | ret = accessor->delete_all(); | 6350 | 1 | if (ret != 0) { | 6351 | 0 | LOG(WARNING) << "failed to delete objects of dropped internal stage. instance_id=" | 6352 | 0 | << instance_id_ << ", stage_id=" << recycle_stage.stage().stage_id() | 6353 | 0 | << ", prefix=" << recycle_stage.stage().obj_info().prefix() | 6354 | 0 | << ", ret=" << ret; | 6355 | 0 | return -1; | 6356 | 0 | } | 6357 | 1 | metrics_context.total_recycled_num = ++num_recycled; | 6358 | 1 | metrics_context.report(); | 6359 | 1 | check_recycle_task(instance_id_, "recycle_stage", num_scanned, num_recycled, start_time); | 6360 | 1 | stage_keys.push_back(k); | 6361 | 1 | return 0; | 6362 | 1 | }; |
|
6363 | | |
6364 | 11 | auto loop_done = [&stage_keys, this]() -> int { |
6365 | 1 | if (stage_keys.empty()) return 0; |
6366 | 1 | DORIS_CLOUD_DEFER { |
6367 | 1 | stage_keys.clear(); |
6368 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEvENKUlvE_clEv recycler_test.cpp:_ZZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEvENKUlvE_clEv Line | Count | Source | 6366 | 1 | DORIS_CLOUD_DEFER { | 6367 | 1 | stage_keys.clear(); | 6368 | 1 | }; |
|
6369 | 1 | if (0 != txn_remove(txn_kv_.get(), stage_keys)) { |
6370 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; |
6371 | 0 | return -1; |
6372 | 0 | } |
6373 | 1 | return 0; |
6374 | 1 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler13recycle_stageEvENK3$_1clEv Line | Count | Source | 6364 | 1 | auto loop_done = [&stage_keys, this]() -> int { | 6365 | 1 | if (stage_keys.empty()) return 0; | 6366 | 1 | DORIS_CLOUD_DEFER { | 6367 | 1 | stage_keys.clear(); | 6368 | 1 | }; | 6369 | 1 | if (0 != txn_remove(txn_kv_.get(), stage_keys)) { | 6370 | 0 | LOG(WARNING) << "failed to delete recycle partition kv, instance_id=" << instance_id_; | 6371 | 0 | return -1; | 6372 | 0 | } | 6373 | 1 | return 0; | 6374 | 1 | }; |
|
6375 | 11 | if (config::enable_recycler_stats_metrics) { |
6376 | 0 | scan_and_statistics_stage(); |
6377 | 0 | } |
6378 | | // recycle_func and loop_done for scan and recycle |
6379 | 11 | return scan_and_recycle(key0, key1, std::move(recycle_func), std::move(loop_done)); |
6380 | 11 | } |
6381 | | |
6382 | 10 | int InstanceRecycler::recycle_expired_stage_objects() { |
6383 | 10 | LOG_WARNING("begin to recycle expired stage objects").tag("instance_id", instance_id_); |
6384 | | |
6385 | 10 | int64_t start_time = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6386 | 10 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_stage_objects"); |
6387 | | |
6388 | 10 | DORIS_CLOUD_DEFER { |
6389 | 10 | int64_t cost = |
6390 | 10 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; |
6391 | 10 | metrics_context.finish_report(); |
6392 | 10 | LOG_WARNING("recycle expired stage objects, cost={}s", cost) |
6393 | 10 | .tag("instance_id", instance_id_); |
6394 | 10 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler29recycle_expired_stage_objectsEvENK3$_0clEv recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler29recycle_expired_stage_objectsEvENK3$_0clEv Line | Count | Source | 6388 | 10 | DORIS_CLOUD_DEFER { | 6389 | 10 | int64_t cost = | 6390 | 10 | duration_cast<seconds>(steady_clock::now().time_since_epoch()).count() - start_time; | 6391 | 10 | metrics_context.finish_report(); | 6392 | 10 | LOG_WARNING("recycle expired stage objects, cost={}s", cost) | 6393 | 10 | .tag("instance_id", instance_id_); | 6394 | 10 | }; |
|
6395 | | |
6396 | 10 | int ret = 0; |
6397 | | |
6398 | 10 | if (config::enable_recycler_stats_metrics) { |
6399 | 0 | scan_and_statistics_expired_stage_objects(); |
6400 | 0 | } |
6401 | | |
6402 | 10 | for (const auto& stage : instance_info_.stages()) { |
6403 | 0 | std::stringstream ss; |
6404 | 0 | ss << "instance_id=" << instance_id_ << ", stage_id=" << stage.stage_id() << ", user_name=" |
6405 | 0 | << (stage.mysql_user_name().empty() ? "null" : stage.mysql_user_name().at(0)) |
6406 | 0 | << ", user_id=" << (stage.mysql_user_id().empty() ? "null" : stage.mysql_user_id().at(0)) |
6407 | 0 | << ", prefix=" << stage.obj_info().prefix(); |
6408 | |
|
6409 | 0 | if (stopped()) { |
6410 | 0 | break; |
6411 | 0 | } |
6412 | 0 | if (stage.type() == StagePB::EXTERNAL) { |
6413 | 0 | continue; |
6414 | 0 | } |
6415 | 0 | int idx = stoi(stage.obj_info().id()); |
6416 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6417 | 0 | LOG(WARNING) << "invalid idx: " << idx << ", id: " << stage.obj_info().id(); |
6418 | 0 | continue; |
6419 | 0 | } |
6420 | | |
6421 | 0 | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6422 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6423 | 0 | if (!s3_conf) { |
6424 | 0 | LOG(WARNING) << "failed to init s3_conf with obj_info=" << old_obj.ShortDebugString(); |
6425 | 0 | continue; |
6426 | 0 | } |
6427 | | |
6428 | 0 | s3_conf->prefix = stage.obj_info().prefix(); |
6429 | 0 | std::shared_ptr<S3Accessor> accessor; |
6430 | 0 | int ret1 = S3Accessor::create(*s3_conf, &accessor); |
6431 | 0 | if (ret1 != 0) { |
6432 | 0 | LOG(WARNING) << "failed to init s3 accessor ret=" << ret1 << " " << ss.str(); |
6433 | 0 | ret = -1; |
6434 | 0 | continue; |
6435 | 0 | } |
6436 | | |
6437 | 0 | if (s3_conf->prefix.find("/stage/") == std::string::npos) { |
6438 | 0 | LOG(WARNING) << "try to delete illegal prefix, which is catastrophic, " << ss.str(); |
6439 | 0 | ret = -1; |
6440 | 0 | continue; |
6441 | 0 | } |
6442 | | |
6443 | 0 | LOG(INFO) << "recycle expired stage objects, " << ss.str(); |
6444 | 0 | int64_t expiration_time = |
6445 | 0 | duration_cast<seconds>(system_clock::now().time_since_epoch()).count() - |
6446 | 0 | config::internal_stage_objects_expire_time_second; |
6447 | 0 | if (config::force_immediate_recycle) { |
6448 | 0 | expiration_time = INT64_MAX; |
6449 | 0 | } |
6450 | 0 | ret1 = accessor->delete_all(expiration_time); |
6451 | 0 | if (ret1 != 0) { |
6452 | 0 | LOG(WARNING) << "failed to recycle expired stage objects, ret=" << ret1 << " " |
6453 | 0 | << ss.str(); |
6454 | 0 | ret = -1; |
6455 | 0 | continue; |
6456 | 0 | } |
6457 | 0 | metrics_context.total_recycled_num++; |
6458 | 0 | metrics_context.report(); |
6459 | 0 | } |
6460 | 10 | return ret; |
6461 | 10 | } |
6462 | | |
6463 | 181 | void InstanceRecycler::register_recycle_task(const std::string& task_name, int64_t start_time) { |
6464 | 181 | std::lock_guard lock(recycle_tasks_mutex); |
6465 | 181 | running_recycle_tasks[task_name] = start_time; |
6466 | 181 | } |
6467 | | |
6468 | 180 | void InstanceRecycler::unregister_recycle_task(const std::string& task_name) { |
6469 | 180 | std::lock_guard lock(recycle_tasks_mutex); |
6470 | 180 | DCHECK(running_recycle_tasks[task_name] > 0); |
6471 | 180 | running_recycle_tasks.erase(task_name); |
6472 | 180 | } |
6473 | | |
6474 | 21 | bool InstanceRecycler::check_recycle_tasks() { |
6475 | 21 | std::map<std::string, int64_t> tmp_running_recycle_tasks; |
6476 | 21 | { |
6477 | 21 | std::lock_guard lock(recycle_tasks_mutex); |
6478 | 21 | tmp_running_recycle_tasks = running_recycle_tasks; |
6479 | 21 | } |
6480 | | |
6481 | 21 | bool found = false; |
6482 | 21 | int64_t now = duration_cast<seconds>(steady_clock::now().time_since_epoch()).count(); |
6483 | 21 | for (auto& [task_name, start_time] : tmp_running_recycle_tasks) { |
6484 | 20 | int64_t cost = now - start_time; |
6485 | 20 | if (cost > config::recycle_task_threshold_seconds) [[unlikely]] { |
6486 | 20 | LOG_INFO("recycle task cost too much time cost={}s", cost) |
6487 | 20 | .tag("instance_id", instance_id_) |
6488 | 20 | .tag("task", task_name); |
6489 | 20 | found = true; |
6490 | 20 | } |
6491 | 20 | } |
6492 | | |
6493 | 21 | return found; |
6494 | 21 | } |
6495 | | |
6496 | | // Scan and statistics indexes that need to be recycled |
6497 | 0 | int InstanceRecycler::scan_and_statistics_indexes() { |
6498 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_indexes"); |
6499 | |
|
6500 | 0 | RecycleIndexKeyInfo index_key_info0 {instance_id_, 0}; |
6501 | 0 | RecycleIndexKeyInfo index_key_info1 {instance_id_, INT64_MAX}; |
6502 | 0 | std::string index_key0; |
6503 | 0 | std::string index_key1; |
6504 | 0 | recycle_index_key(index_key_info0, &index_key0); |
6505 | 0 | recycle_index_key(index_key_info1, &index_key1); |
6506 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6507 | |
|
6508 | 0 | auto handle_index_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6509 | 0 | RecycleIndexPB index_pb; |
6510 | 0 | if (!index_pb.ParseFromArray(v.data(), v.size())) { |
6511 | 0 | return 0; |
6512 | 0 | } |
6513 | 0 | int64_t current_time = ::time(nullptr); |
6514 | 0 | if (current_time < |
6515 | 0 | calculate_index_expired_time(instance_id_, index_pb, &earlest_ts)) { // not expired |
6516 | 0 | return 0; |
6517 | 0 | } |
6518 | | // decode index_id |
6519 | 0 | auto k1 = k; |
6520 | 0 | k1.remove_prefix(1); |
6521 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6522 | 0 | decode_key(&k1, &out); |
6523 | | // 0x01 "recycle" ${instance_id} "index" ${index_id} -> RecycleIndexPB |
6524 | 0 | auto index_id = std::get<int64_t>(std::get<0>(out[3])); |
6525 | 0 | std::unique_ptr<Transaction> txn; |
6526 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6527 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6528 | 0 | return 0; |
6529 | 0 | } |
6530 | 0 | std::string val; |
6531 | 0 | err = txn->get(k, &val); |
6532 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
6533 | 0 | return 0; |
6534 | 0 | } |
6535 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6536 | 0 | return 0; |
6537 | 0 | } |
6538 | 0 | index_pb.Clear(); |
6539 | 0 | if (!index_pb.ParseFromString(val)) { |
6540 | 0 | return 0; |
6541 | 0 | } |
6542 | 0 | if (scan_tablets_and_statistics(index_pb.table_id(), index_id, metrics_context) != 0) { |
6543 | 0 | return 0; |
6544 | 0 | } |
6545 | 0 | metrics_context.total_need_recycle_num++; |
6546 | 0 | return 0; |
6547 | 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_ |
6548 | |
|
6549 | 0 | int ret = scan_and_recycle(index_key0, index_key1, std::move(handle_index_kv)); |
6550 | 0 | metrics_context.report(true); |
6551 | 0 | segment_metrics_context_.report(true); |
6552 | 0 | tablet_metrics_context_.report(true); |
6553 | 0 | return ret; |
6554 | 0 | } |
6555 | | |
6556 | | // Scan and statistics partitions that need to be recycled |
6557 | 0 | int InstanceRecycler::scan_and_statistics_partitions() { |
6558 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_partitions"); |
6559 | |
|
6560 | 0 | RecyclePartKeyInfo part_key_info0 {instance_id_, 0}; |
6561 | 0 | RecyclePartKeyInfo part_key_info1 {instance_id_, INT64_MAX}; |
6562 | 0 | std::string part_key0; |
6563 | 0 | std::string part_key1; |
6564 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6565 | |
|
6566 | 0 | recycle_partition_key(part_key_info0, &part_key0); |
6567 | 0 | recycle_partition_key(part_key_info1, &part_key1); |
6568 | 0 | auto handle_partition_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6569 | 0 | RecyclePartitionPB part_pb; |
6570 | 0 | if (!part_pb.ParseFromArray(v.data(), v.size())) { |
6571 | 0 | return 0; |
6572 | 0 | } |
6573 | 0 | int64_t current_time = ::time(nullptr); |
6574 | 0 | if (current_time < |
6575 | 0 | calculate_partition_expired_time(instance_id_, part_pb, &earlest_ts)) { // not expired |
6576 | 0 | return 0; |
6577 | 0 | } |
6578 | | // decode partition_id |
6579 | 0 | auto k1 = k; |
6580 | 0 | k1.remove_prefix(1); |
6581 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6582 | 0 | decode_key(&k1, &out); |
6583 | | // 0x01 "recycle" ${instance_id} "partition" ${partition_id} -> RecyclePartitionPB |
6584 | 0 | auto partition_id = std::get<int64_t>(std::get<0>(out[3])); |
6585 | | // Change state to RECYCLING |
6586 | 0 | std::unique_ptr<Transaction> txn; |
6587 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6588 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6589 | 0 | return 0; |
6590 | 0 | } |
6591 | 0 | std::string val; |
6592 | 0 | err = txn->get(k, &val); |
6593 | 0 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
6594 | 0 | return 0; |
6595 | 0 | } |
6596 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6597 | 0 | return 0; |
6598 | 0 | } |
6599 | 0 | part_pb.Clear(); |
6600 | 0 | if (!part_pb.ParseFromString(val)) { |
6601 | 0 | return 0; |
6602 | 0 | } |
6603 | | // Partitions with PREPARED state MUST have no data |
6604 | 0 | bool is_empty_tablet = part_pb.state() == RecyclePartitionPB::PREPARED; |
6605 | 0 | int ret = 0; |
6606 | 0 | for (int64_t index_id : part_pb.index_id()) { |
6607 | 0 | if (scan_tablets_and_statistics(part_pb.table_id(), index_id, metrics_context, |
6608 | 0 | partition_id, is_empty_tablet) != 0) { |
6609 | 0 | ret = 0; |
6610 | 0 | } |
6611 | 0 | } |
6612 | 0 | metrics_context.total_need_recycle_num++; |
6613 | 0 | return ret; |
6614 | 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_ |
6615 | |
|
6616 | 0 | int ret = scan_and_recycle(part_key0, part_key1, std::move(handle_partition_kv)); |
6617 | 0 | metrics_context.report(true); |
6618 | 0 | segment_metrics_context_.report(true); |
6619 | 0 | tablet_metrics_context_.report(true); |
6620 | 0 | return ret; |
6621 | 0 | } |
6622 | | |
6623 | | // Scan and statistics rowsets that need to be recycled |
6624 | 0 | int InstanceRecycler::scan_and_statistics_rowsets() { |
6625 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_rowsets"); |
6626 | 0 | RecycleRowsetKeyInfo recyc_rs_key_info0 {instance_id_, 0, ""}; |
6627 | 0 | RecycleRowsetKeyInfo recyc_rs_key_info1 {instance_id_, INT64_MAX, ""}; |
6628 | 0 | std::string recyc_rs_key0; |
6629 | 0 | std::string recyc_rs_key1; |
6630 | 0 | recycle_rowset_key(recyc_rs_key_info0, &recyc_rs_key0); |
6631 | 0 | recycle_rowset_key(recyc_rs_key_info1, &recyc_rs_key1); |
6632 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6633 | |
|
6634 | 0 | auto handle_rowset_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6635 | 0 | RecycleRowsetPB rowset; |
6636 | 0 | if (!rowset.ParseFromArray(v.data(), v.size())) { |
6637 | 0 | return 0; |
6638 | 0 | } |
6639 | 0 | auto* rowset_meta = rowset.mutable_rowset_meta(); |
6640 | 0 | int64_t current_time = ::time(nullptr); |
6641 | 0 | if (current_time < |
6642 | 0 | calculate_rowset_expired_time(instance_id_, rowset, &earlest_ts)) { // not expired |
6643 | 0 | return 0; |
6644 | 0 | } |
6645 | | |
6646 | 0 | if (!rowset.has_type()) { |
6647 | 0 | if (!rowset.has_resource_id()) [[unlikely]] { |
6648 | 0 | return 0; |
6649 | 0 | } |
6650 | 0 | if (rowset.resource_id().empty()) [[unlikely]] { |
6651 | 0 | return 0; |
6652 | 0 | } |
6653 | 0 | metrics_context.total_need_recycle_num++; |
6654 | 0 | metrics_context.total_need_recycle_data_size += rowset.rowset_meta().total_disk_size(); |
6655 | 0 | segment_metrics_context_.total_need_recycle_num += rowset.rowset_meta().num_segments(); |
6656 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset.rowset_meta().total_disk_size(); |
6657 | 0 | return 0; |
6658 | 0 | } |
6659 | | |
6660 | 0 | if(!rowset_meta->has_is_recycled() || !rowset_meta->is_recycled()) { |
6661 | 0 | return 0; |
6662 | 0 | } |
6663 | | |
6664 | 0 | if (!rowset_meta->has_resource_id()) [[unlikely]] { |
6665 | 0 | if (rowset.type() == RecycleRowsetPB::PREPARE || rowset_meta->num_segments() != 0) { |
6666 | 0 | return 0; |
6667 | 0 | } |
6668 | 0 | } |
6669 | 0 | metrics_context.total_need_recycle_num++; |
6670 | 0 | metrics_context.total_need_recycle_data_size += rowset_meta->total_disk_size(); |
6671 | 0 | segment_metrics_context_.total_need_recycle_num += rowset_meta->num_segments(); |
6672 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset_meta->total_disk_size(); |
6673 | 0 | return 0; |
6674 | 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_ |
6675 | 0 | int ret = scan_and_recycle(recyc_rs_key0, recyc_rs_key1, std::move(handle_rowset_kv)); |
6676 | 0 | metrics_context.report(true); |
6677 | 0 | segment_metrics_context_.report(true); |
6678 | 0 | return ret; |
6679 | 0 | } |
6680 | | |
6681 | | // Scan and statistics tmp_rowsets that need to be recycled |
6682 | 0 | int InstanceRecycler::scan_and_statistics_tmp_rowsets() { |
6683 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_tmp_rowsets"); |
6684 | 0 | MetaRowsetTmpKeyInfo tmp_rs_key_info0 {instance_id_, 0, 0}; |
6685 | 0 | MetaRowsetTmpKeyInfo tmp_rs_key_info1 {instance_id_, INT64_MAX, 0}; |
6686 | 0 | std::string tmp_rs_key0; |
6687 | 0 | std::string tmp_rs_key1; |
6688 | 0 | meta_rowset_tmp_key(tmp_rs_key_info0, &tmp_rs_key0); |
6689 | 0 | meta_rowset_tmp_key(tmp_rs_key_info1, &tmp_rs_key1); |
6690 | |
|
6691 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6692 | |
|
6693 | 0 | auto handle_tmp_rowsets_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6694 | 0 | doris::RowsetMetaCloudPB rowset; |
6695 | 0 | if (!rowset.ParseFromArray(v.data(), v.size())) { |
6696 | 0 | return 0; |
6697 | 0 | } |
6698 | 0 | int64_t expiration = calculate_tmp_rowset_expired_time(instance_id_, rowset, &earlest_ts); |
6699 | 0 | int64_t current_time = ::time(nullptr); |
6700 | 0 | if (current_time < expiration) { |
6701 | 0 | return 0; |
6702 | 0 | } |
6703 | | |
6704 | 0 | DCHECK_GT(rowset.txn_id(), 0) |
6705 | 0 | << "txn_id=" << rowset.txn_id() << " rowset=" << rowset.ShortDebugString(); |
6706 | |
|
6707 | 0 | if(!rowset.has_is_recycled() || !rowset.is_recycled()) { |
6708 | 0 | return 0; |
6709 | 0 | } |
6710 | | |
6711 | 0 | if (!rowset.has_resource_id()) { |
6712 | 0 | if (rowset.num_segments() > 0) [[unlikely]] { // impossible |
6713 | 0 | return 0; |
6714 | 0 | } |
6715 | 0 | return 0; |
6716 | 0 | } |
6717 | | |
6718 | 0 | metrics_context.total_need_recycle_num++; |
6719 | 0 | metrics_context.total_need_recycle_data_size += rowset.total_disk_size(); |
6720 | 0 | segment_metrics_context_.total_need_recycle_data_size += rowset.total_disk_size(); |
6721 | 0 | segment_metrics_context_.total_need_recycle_num += rowset.num_segments(); |
6722 | 0 | return 0; |
6723 | 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_ |
6724 | 0 | int ret = scan_and_recycle(tmp_rs_key0, tmp_rs_key1, std::move(handle_tmp_rowsets_kv)); |
6725 | 0 | metrics_context.report(true); |
6726 | 0 | segment_metrics_context_.report(true); |
6727 | 0 | return ret; |
6728 | 0 | } |
6729 | | |
6730 | | // Scan and statistics abort_timeout_txn that need to be recycled |
6731 | 0 | int InstanceRecycler::scan_and_statistics_abort_timeout_txn() { |
6732 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "abort_timeout_txn"); |
6733 | |
|
6734 | 0 | TxnRunningKeyInfo txn_running_key_info0 {instance_id_, 0, 0}; |
6735 | 0 | TxnRunningKeyInfo txn_running_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
6736 | 0 | std::string begin_txn_running_key; |
6737 | 0 | std::string end_txn_running_key; |
6738 | 0 | txn_running_key(txn_running_key_info0, &begin_txn_running_key); |
6739 | 0 | txn_running_key(txn_running_key_info1, &end_txn_running_key); |
6740 | |
|
6741 | 0 | int64_t current_time = |
6742 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6743 | |
|
6744 | 0 | auto handle_abort_timeout_txn_kv = [&metrics_context, ¤t_time, this]( |
6745 | 0 | std::string_view k, std::string_view v) -> int { |
6746 | 0 | std::unique_ptr<Transaction> txn; |
6747 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
6748 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6749 | 0 | return 0; |
6750 | 0 | } |
6751 | 0 | std::string_view k1 = k; |
6752 | 0 | k1.remove_prefix(1); |
6753 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6754 | 0 | if (decode_key(&k1, &out) != 0) { |
6755 | 0 | return 0; |
6756 | 0 | } |
6757 | 0 | int64_t db_id = std::get<int64_t>(std::get<0>(out[3])); |
6758 | 0 | int64_t txn_id = std::get<int64_t>(std::get<0>(out[4])); |
6759 | | // Update txn_info |
6760 | 0 | std::string txn_inf_key, txn_inf_val; |
6761 | 0 | txn_info_key({instance_id_, db_id, txn_id}, &txn_inf_key); |
6762 | 0 | err = txn->get(txn_inf_key, &txn_inf_val); |
6763 | 0 | if (err != TxnErrorCode::TXN_OK) { |
6764 | 0 | return 0; |
6765 | 0 | } |
6766 | 0 | TxnInfoPB txn_info; |
6767 | 0 | if (!txn_info.ParseFromString(txn_inf_val)) { |
6768 | 0 | return 0; |
6769 | 0 | } |
6770 | | |
6771 | 0 | if (TxnStatusPB::TXN_STATUS_COMMITTED != txn_info.status()) { |
6772 | 0 | TxnRunningPB txn_running_pb; |
6773 | 0 | if (!txn_running_pb.ParseFromArray(v.data(), v.size())) { |
6774 | 0 | return 0; |
6775 | 0 | } |
6776 | 0 | if (!config::force_immediate_recycle && txn_running_pb.timeout_time() > current_time) { |
6777 | 0 | return 0; |
6778 | 0 | } |
6779 | 0 | metrics_context.total_need_recycle_num++; |
6780 | 0 | } |
6781 | 0 | return 0; |
6782 | 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_ |
6783 | |
|
6784 | 0 | int ret = scan_and_recycle(begin_txn_running_key, end_txn_running_key, std::move(handle_abort_timeout_txn_kv)); |
6785 | 0 | metrics_context.report(true); |
6786 | 0 | return ret; |
6787 | 0 | } |
6788 | | |
6789 | | // Scan and statistics expired_txn_label that need to be recycled |
6790 | 0 | int InstanceRecycler::scan_and_statistics_expired_txn_label() { |
6791 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_txn_label"); |
6792 | |
|
6793 | 0 | RecycleTxnKeyInfo recycle_txn_key_info0 {instance_id_, 0, 0}; |
6794 | 0 | RecycleTxnKeyInfo recycle_txn_key_info1 {instance_id_, INT64_MAX, INT64_MAX}; |
6795 | 0 | std::string begin_recycle_txn_key; |
6796 | 0 | std::string end_recycle_txn_key; |
6797 | 0 | recycle_txn_key(recycle_txn_key_info0, &begin_recycle_txn_key); |
6798 | 0 | recycle_txn_key(recycle_txn_key_info1, &end_recycle_txn_key); |
6799 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
6800 | 0 | int64_t current_time_ms = |
6801 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6802 | | |
6803 | | // for calculate the total num or bytes of recyled objects |
6804 | 0 | auto handle_expired_txn_label_kv = [&, this](std::string_view k, std::string_view v) -> int { |
6805 | 0 | RecycleTxnPB recycle_txn_pb; |
6806 | 0 | if (!recycle_txn_pb.ParseFromArray(v.data(), v.size())) { |
6807 | 0 | return 0; |
6808 | 0 | } |
6809 | 0 | if ((config::force_immediate_recycle) || |
6810 | 0 | (recycle_txn_pb.has_immediate() && recycle_txn_pb.immediate()) || |
6811 | 0 | (calculate_txn_expired_time(instance_id_, recycle_txn_pb, &earlest_ts) <= |
6812 | 0 | current_time_ms)) { |
6813 | 0 | metrics_context.total_need_recycle_num++; |
6814 | 0 | } |
6815 | 0 | return 0; |
6816 | 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_ |
6817 | |
|
6818 | 0 | int ret = scan_and_recycle(begin_recycle_txn_key, end_recycle_txn_key, std::move(handle_expired_txn_label_kv)); |
6819 | 0 | metrics_context.report(true); |
6820 | 0 | return ret; |
6821 | 0 | } |
6822 | | |
6823 | | // Scan and statistics copy_jobs that need to be recycled |
6824 | 0 | int InstanceRecycler::scan_and_statistics_copy_jobs() { |
6825 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_copy_jobs"); |
6826 | 0 | CopyJobKeyInfo key_info0 {instance_id_, "", 0, "", 0}; |
6827 | 0 | CopyJobKeyInfo key_info1 {instance_id_, "\xff", 0, "", 0}; |
6828 | 0 | std::string key0; |
6829 | 0 | std::string key1; |
6830 | 0 | copy_job_key(key_info0, &key0); |
6831 | 0 | copy_job_key(key_info1, &key1); |
6832 | | |
6833 | | // for calculate the total num or bytes of recyled objects |
6834 | 0 | auto scan_and_statistics = [&metrics_context](std::string_view k, std::string_view v) -> int { |
6835 | 0 | CopyJobPB copy_job; |
6836 | 0 | if (!copy_job.ParseFromArray(v.data(), v.size())) { |
6837 | 0 | LOG_WARNING("malformed copy job").tag("key", hex(k)); |
6838 | 0 | return 0; |
6839 | 0 | } |
6840 | | |
6841 | 0 | if (copy_job.job_status() == CopyJobPB::FINISH) { |
6842 | 0 | if (copy_job.stage_type() == StagePB::EXTERNAL) { |
6843 | 0 | int64_t current_time = |
6844 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6845 | 0 | if (copy_job.finish_time_ms() > 0) { |
6846 | 0 | if (!config::force_immediate_recycle && |
6847 | 0 | current_time < copy_job.finish_time_ms() + |
6848 | 0 | config::copy_job_max_retention_second * 1000) { |
6849 | 0 | return 0; |
6850 | 0 | } |
6851 | 0 | } else { |
6852 | 0 | if (!config::force_immediate_recycle && |
6853 | 0 | current_time < copy_job.start_time_ms() + |
6854 | 0 | config::copy_job_max_retention_second * 1000) { |
6855 | 0 | return 0; |
6856 | 0 | } |
6857 | 0 | } |
6858 | 0 | } |
6859 | 0 | } else if (copy_job.job_status() == CopyJobPB::LOADING) { |
6860 | 0 | int64_t current_time = |
6861 | 0 | duration_cast<milliseconds>(system_clock::now().time_since_epoch()).count(); |
6862 | 0 | if (!config::force_immediate_recycle && current_time <= copy_job.timeout_time_ms()) { |
6863 | 0 | return 0; |
6864 | 0 | } |
6865 | 0 | } |
6866 | 0 | metrics_context.total_need_recycle_num++; |
6867 | 0 | return 0; |
6868 | 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_ |
6869 | |
|
6870 | 0 | int ret = scan_and_recycle(key0, key1, std::move(scan_and_statistics)); |
6871 | 0 | metrics_context.report(true); |
6872 | 0 | return ret; |
6873 | 0 | } |
6874 | | |
6875 | | // Scan and statistics stage that need to be recycled |
6876 | 0 | int InstanceRecycler::scan_and_statistics_stage() { |
6877 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_stage"); |
6878 | 0 | RecycleStageKeyInfo key_info0 {instance_id_, ""}; |
6879 | 0 | RecycleStageKeyInfo key_info1 {instance_id_, "\xff"}; |
6880 | 0 | std::string key0 = recycle_stage_key(key_info0); |
6881 | 0 | std::string key1 = recycle_stage_key(key_info1); |
6882 | | |
6883 | | // for calculate the total num or bytes of recyled objects |
6884 | 0 | auto scan_and_statistics = [&metrics_context, this](std::string_view k, |
6885 | 0 | std::string_view v) -> int { |
6886 | 0 | RecycleStagePB recycle_stage; |
6887 | 0 | if (!recycle_stage.ParseFromArray(v.data(), v.size())) { |
6888 | 0 | LOG_WARNING("malformed recycle stage").tag("key", hex(k)); |
6889 | 0 | return 0; |
6890 | 0 | } |
6891 | | |
6892 | 0 | int idx = stoi(recycle_stage.stage().obj_info().id()); |
6893 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6894 | 0 | LOG(WARNING) << "invalid idx: " << idx; |
6895 | 0 | return 0; |
6896 | 0 | } |
6897 | | |
6898 | 0 | std::shared_ptr<StorageVaultAccessor> accessor; |
6899 | 0 | int ret = SYNC_POINT_HOOK_RETURN_VALUE( |
6900 | 0 | [&] { |
6901 | 0 | auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6902 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6903 | 0 | if (!s3_conf) { |
6904 | 0 | return 0; |
6905 | 0 | } |
6906 | |
|
6907 | 0 | s3_conf->prefix = recycle_stage.stage().obj_info().prefix(); |
6908 | 0 | std::shared_ptr<S3Accessor> s3_accessor; |
6909 | 0 | int ret = S3Accessor::create(std::move(s3_conf.value()), &s3_accessor); |
6910 | 0 | if (ret != 0) { |
6911 | 0 | return 0; |
6912 | 0 | } |
6913 | |
|
6914 | 0 | accessor = std::move(s3_accessor); |
6915 | 0 | return 0; |
6916 | 0 | }(), |
6917 | 0 | "recycle_stage:get_accessor", &accessor); |
6918 | |
|
6919 | 0 | if (ret != 0) { |
6920 | 0 | LOG(WARNING) << "failed to init accessor ret=" << ret; |
6921 | 0 | return 0; |
6922 | 0 | } |
6923 | | |
6924 | 0 | metrics_context.total_need_recycle_num++; |
6925 | 0 | return 0; |
6926 | 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_ |
6927 | |
|
6928 | 0 | int ret = scan_and_recycle(key0, key1, std::move(scan_and_statistics)); |
6929 | 0 | metrics_context.report(true); |
6930 | 0 | return ret; |
6931 | 0 | } |
6932 | | |
6933 | | // Scan and statistics expired_stage_objects that need to be recycled |
6934 | 0 | int InstanceRecycler::scan_and_statistics_expired_stage_objects() { |
6935 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_expired_stage_objects"); |
6936 | | |
6937 | | // for calculate the total num or bytes of recyled objects |
6938 | 0 | auto scan_and_statistics = [&metrics_context, this]() { |
6939 | 0 | for (const auto& stage : instance_info_.stages()) { |
6940 | 0 | if (stopped()) { |
6941 | 0 | break; |
6942 | 0 | } |
6943 | 0 | if (stage.type() == StagePB::EXTERNAL) { |
6944 | 0 | continue; |
6945 | 0 | } |
6946 | 0 | int idx = stoi(stage.obj_info().id()); |
6947 | 0 | if (idx > instance_info_.obj_info().size() || idx < 1) { |
6948 | 0 | continue; |
6949 | 0 | } |
6950 | 0 | const auto& old_obj = instance_info_.obj_info()[idx - 1]; |
6951 | 0 | auto s3_conf = S3Conf::from_obj_store_info(old_obj); |
6952 | 0 | if (!s3_conf) { |
6953 | 0 | continue; |
6954 | 0 | } |
6955 | 0 | s3_conf->prefix = stage.obj_info().prefix(); |
6956 | 0 | std::shared_ptr<S3Accessor> accessor; |
6957 | 0 | int ret1 = S3Accessor::create(*s3_conf, &accessor); |
6958 | 0 | if (ret1 != 0) { |
6959 | 0 | continue; |
6960 | 0 | } |
6961 | 0 | if (s3_conf->prefix.find("/stage/") == std::string::npos) { |
6962 | 0 | continue; |
6963 | 0 | } |
6964 | 0 | metrics_context.total_need_recycle_num++; |
6965 | 0 | } |
6966 | 0 | }; Unexecuted instantiation: recycler.cpp:_ZZN5doris5cloud16InstanceRecycler41scan_and_statistics_expired_stage_objectsEvENK3$_0clEv Unexecuted instantiation: recycler_test.cpp:_ZZN5doris5cloud16InstanceRecycler41scan_and_statistics_expired_stage_objectsEvENK3$_0clEv |
6967 | |
|
6968 | 0 | scan_and_statistics(); |
6969 | 0 | metrics_context.report(true); |
6970 | 0 | return 0; |
6971 | 0 | } |
6972 | | |
6973 | | // Scan and statistics versions that need to be recycled |
6974 | 0 | int InstanceRecycler::scan_and_statistics_versions() { |
6975 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_versions"); |
6976 | 0 | auto version_key_begin = partition_version_key({instance_id_, 0, 0, 0}); |
6977 | 0 | auto version_key_end = partition_version_key({instance_id_, INT64_MAX, 0, 0}); |
6978 | |
|
6979 | 0 | int64_t last_scanned_table_id = 0; |
6980 | 0 | bool is_recycled = false; // Is last scanned kv recycled |
6981 | | // for calculate the total num or bytes of recyled objects |
6982 | 0 | auto scan_and_statistics = [&metrics_context, &last_scanned_table_id, &is_recycled, this]( |
6983 | 0 | std::string_view k, std::string_view) { |
6984 | 0 | auto k1 = k; |
6985 | 0 | k1.remove_prefix(1); |
6986 | | // 0x01 "version" ${instance_id} "partition" ${db_id} ${tbl_id} ${partition_id} |
6987 | 0 | std::vector<std::tuple<std::variant<int64_t, std::string>, int, int>> out; |
6988 | 0 | decode_key(&k1, &out); |
6989 | 0 | DCHECK_EQ(out.size(), 6) << k; |
6990 | 0 | auto table_id = std::get<int64_t>(std::get<0>(out[4])); |
6991 | 0 | if (table_id == last_scanned_table_id) { // Already handle kvs of this table |
6992 | 0 | metrics_context.total_need_recycle_num += |
6993 | 0 | is_recycled; // Version kv of this table has been recycled |
6994 | 0 | return 0; |
6995 | 0 | } |
6996 | 0 | last_scanned_table_id = table_id; |
6997 | 0 | is_recycled = false; |
6998 | 0 | auto tablet_key_begin = stats_tablet_key({instance_id_, table_id, 0, 0, 0}); |
6999 | 0 | auto tablet_key_end = stats_tablet_key({instance_id_, table_id, INT64_MAX, 0, 0}); |
7000 | 0 | std::unique_ptr<Transaction> txn; |
7001 | 0 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7002 | 0 | if (err != TxnErrorCode::TXN_OK) { |
7003 | 0 | return 0; |
7004 | 0 | } |
7005 | 0 | std::unique_ptr<RangeGetIterator> iter; |
7006 | 0 | err = txn->get(tablet_key_begin, tablet_key_end, &iter, false, 1); |
7007 | 0 | if (err != TxnErrorCode::TXN_OK) { |
7008 | 0 | return 0; |
7009 | 0 | } |
7010 | 0 | if (iter->has_next()) { // Table is useful, should not recycle table and partition versions |
7011 | 0 | return 0; |
7012 | 0 | } |
7013 | 0 | metrics_context.total_need_recycle_num++; |
7014 | 0 | is_recycled = true; |
7015 | 0 | return 0; |
7016 | 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_ |
7017 | |
|
7018 | 0 | int ret = scan_and_recycle(version_key_begin, version_key_end, std::move(scan_and_statistics)); |
7019 | 0 | metrics_context.report(true); |
7020 | 0 | return ret; |
7021 | 0 | } |
7022 | | |
7023 | | // Scan and statistics restore jobs that need to be recycled |
7024 | 0 | int InstanceRecycler::scan_and_statistics_restore_jobs() { |
7025 | 0 | RecyclerMetricsContext metrics_context(instance_id_, "recycle_restore_jobs"); |
7026 | 0 | JobRestoreTabletKeyInfo restore_job_key_info0 {instance_id_, 0}; |
7027 | 0 | JobRestoreTabletKeyInfo restore_job_key_info1 {instance_id_, INT64_MAX}; |
7028 | 0 | std::string restore_job_key0; |
7029 | 0 | std::string restore_job_key1; |
7030 | 0 | job_restore_tablet_key(restore_job_key_info0, &restore_job_key0); |
7031 | 0 | job_restore_tablet_key(restore_job_key_info1, &restore_job_key1); |
7032 | |
|
7033 | 0 | int64_t earlest_ts = std::numeric_limits<int64_t>::max(); |
7034 | | |
7035 | | // for calculate the total num or bytes of recyled objects |
7036 | 0 | auto scan_and_statistics = [&](std::string_view k, std::string_view v) -> int { |
7037 | 0 | RestoreJobCloudPB restore_job_pb; |
7038 | 0 | if (!restore_job_pb.ParseFromArray(v.data(), v.size())) { |
7039 | 0 | LOG_WARNING("malformed recycle partition value").tag("key", hex(k)); |
7040 | 0 | return 0; |
7041 | 0 | } |
7042 | 0 | int64_t expiration = |
7043 | 0 | calculate_restore_job_expired_time(instance_id_, restore_job_pb, &earlest_ts); |
7044 | 0 | int64_t current_time = ::time(nullptr); |
7045 | 0 | if (current_time < expiration) { // not expired |
7046 | 0 | return 0; |
7047 | 0 | } |
7048 | 0 | metrics_context.total_need_recycle_num++; |
7049 | 0 | if(restore_job_pb.need_recycle_data()) { |
7050 | 0 | scan_tablet_and_statistics(restore_job_pb.tablet_id(), metrics_context); |
7051 | 0 | } |
7052 | 0 | return 0; |
7053 | 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_ |
7054 | |
|
7055 | 0 | int ret = scan_and_recycle(restore_job_key0, restore_job_key1, std::move(scan_and_statistics)); |
7056 | 0 | metrics_context.report(true); |
7057 | 0 | return ret; |
7058 | 0 | } |
7059 | | |
7060 | | int InstanceRecycler::classify_rowset_task_by_ref_count( |
7061 | 60 | RowsetDeleteTask& task, std::vector<RowsetDeleteTask>& batch_delete_tasks) { |
7062 | 60 | constexpr int MAX_RETRY = 10; |
7063 | 60 | const auto& rowset_meta = task.rowset_meta; |
7064 | 60 | int64_t tablet_id = rowset_meta.tablet_id(); |
7065 | 60 | const std::string& rowset_id = rowset_meta.rowset_id_v2(); |
7066 | 60 | std::string_view reference_instance_id = instance_id_; |
7067 | 60 | if (rowset_meta.has_reference_instance_id()) { |
7068 | 5 | reference_instance_id = rowset_meta.reference_instance_id(); |
7069 | 5 | } |
7070 | | |
7071 | 61 | for (int i = 0; i < MAX_RETRY; ++i) { |
7072 | 61 | std::unique_ptr<Transaction> txn; |
7073 | 61 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7074 | 61 | if (err != TxnErrorCode::TXN_OK) { |
7075 | 0 | LOG_WARNING("failed to create txn when classifying rowset task") |
7076 | 0 | .tag("instance_id", instance_id_) |
7077 | 0 | .tag("tablet_id", tablet_id) |
7078 | 0 | .tag("rowset_id", rowset_id) |
7079 | 0 | .tag("err", err); |
7080 | 0 | return -1; |
7081 | 0 | } |
7082 | | |
7083 | 61 | std::string rowset_ref_count_key = |
7084 | 61 | versioned::data_rowset_ref_count_key({reference_instance_id, tablet_id, rowset_id}); |
7085 | 61 | task.rowset_ref_count_key = rowset_ref_count_key; |
7086 | | |
7087 | 61 | int64_t ref_count = 0; |
7088 | 61 | { |
7089 | 61 | std::string value; |
7090 | 61 | TxnErrorCode err = txn->get(rowset_ref_count_key, &value); |
7091 | 61 | if (err == TxnErrorCode::TXN_KEY_NOT_FOUND) { |
7092 | 0 | ref_count = 1; |
7093 | 61 | } else if (err != TxnErrorCode::TXN_OK) { |
7094 | 0 | LOG_WARNING("failed to get rowset ref count key when classifying") |
7095 | 0 | .tag("instance_id", instance_id_) |
7096 | 0 | .tag("tablet_id", tablet_id) |
7097 | 0 | .tag("rowset_id", rowset_id) |
7098 | 0 | .tag("err", err); |
7099 | 0 | return -1; |
7100 | 61 | } else if (!txn->decode_atomic_int(value, &ref_count)) { |
7101 | 0 | LOG_WARNING("failed to decode rowset data ref count when classifying") |
7102 | 0 | .tag("instance_id", instance_id_) |
7103 | 0 | .tag("tablet_id", tablet_id) |
7104 | 0 | .tag("rowset_id", rowset_id) |
7105 | 0 | .tag("value", hex(value)); |
7106 | 0 | return -1; |
7107 | 0 | } |
7108 | 61 | } |
7109 | | |
7110 | 61 | if (ref_count > 1) { |
7111 | | // ref_count > 1: decrement count, remove recycle keys, don't add to batch delete |
7112 | 12 | txn->atomic_add(rowset_ref_count_key, -1); |
7113 | 12 | LOG_INFO("decrease rowset data ref count in classification phase") |
7114 | 12 | .tag("instance_id", instance_id_) |
7115 | 12 | .tag("tablet_id", tablet_id) |
7116 | 12 | .tag("rowset_id", rowset_id) |
7117 | 12 | .tag("ref_count", ref_count - 1) |
7118 | 12 | .tag("ref_count_key", hex(rowset_ref_count_key)); |
7119 | | |
7120 | 12 | if (!task.recycle_rowset_key.empty()) { |
7121 | 12 | txn->remove(task.recycle_rowset_key); |
7122 | 12 | LOG_INFO("remove recycle rowset key in classification phase") |
7123 | 12 | .tag("key", hex(task.recycle_rowset_key)); |
7124 | 12 | } |
7125 | 12 | if (!task.non_versioned_rowset_key.empty()) { |
7126 | 12 | txn->remove(task.non_versioned_rowset_key); |
7127 | 12 | LOG_INFO("remove non versioned rowset key in classification phase") |
7128 | 12 | .tag("key", hex(task.non_versioned_rowset_key)); |
7129 | 12 | } |
7130 | | |
7131 | 12 | err = txn->commit(); |
7132 | 12 | if (err == TxnErrorCode::TXN_CONFLICT) { |
7133 | 1 | VLOG_DEBUG << "decrease rowset ref count but txn conflict in classification, retry" |
7134 | 0 | << " tablet_id=" << tablet_id << " rowset_id=" << rowset_id |
7135 | 0 | << ", ref_count=" << ref_count << ", retry=" << i; |
7136 | 1 | std::this_thread::sleep_for(std::chrono::milliseconds(500)); |
7137 | 1 | continue; |
7138 | 11 | } else if (err != TxnErrorCode::TXN_OK) { |
7139 | 0 | LOG_WARNING("failed to commit txn when classifying rowset task") |
7140 | 0 | .tag("instance_id", instance_id_) |
7141 | 0 | .tag("tablet_id", tablet_id) |
7142 | 0 | .tag("rowset_id", rowset_id) |
7143 | 0 | .tag("err", err); |
7144 | 0 | return -1; |
7145 | 0 | } |
7146 | 11 | return 1; // handled, not added to batch delete |
7147 | 49 | } else { |
7148 | | // ref_count == 1: Add to batch delete plan without modifying any KV. |
7149 | | // Keep recycle_rowset_key as "pending recycle" marker until data is actually deleted. |
7150 | 49 | LOG_INFO("add rowset to batch delete plan") |
7151 | 49 | .tag("instance_id", instance_id_) |
7152 | 49 | .tag("tablet_id", tablet_id) |
7153 | 49 | .tag("rowset_id", rowset_id) |
7154 | 49 | .tag("resource_id", rowset_meta.resource_id()) |
7155 | 49 | .tag("ref_count", ref_count); |
7156 | | |
7157 | 49 | batch_delete_tasks.push_back(std::move(task)); |
7158 | 49 | return 0; // added to batch delete |
7159 | 49 | } |
7160 | 61 | } |
7161 | | |
7162 | 0 | LOG_WARNING("failed to classify rowset task after retry") |
7163 | 0 | .tag("instance_id", instance_id_) |
7164 | 0 | .tag("tablet_id", tablet_id) |
7165 | 0 | .tag("rowset_id", rowset_id) |
7166 | 0 | .tag("retry", MAX_RETRY); |
7167 | 0 | return -1; |
7168 | 60 | } |
7169 | | |
7170 | 10 | int InstanceRecycler::cleanup_rowset_metadata(const std::vector<RowsetDeleteTask>& tasks) { |
7171 | 10 | int ret = 0; |
7172 | 49 | for (const auto& task : tasks) { |
7173 | 49 | int64_t tablet_id = task.rowset_meta.tablet_id(); |
7174 | 49 | const std::string& rowset_id = task.rowset_meta.rowset_id_v2(); |
7175 | | |
7176 | | // Note: decrement_packed_file_ref_counts is already called in delete_rowset_data, |
7177 | | // so we don't need to call it again here. |
7178 | | |
7179 | | // Remove all metadata keys in one transaction |
7180 | 49 | std::unique_ptr<Transaction> txn; |
7181 | 49 | TxnErrorCode err = txn_kv_->create_txn(&txn); |
7182 | 49 | if (err != TxnErrorCode::TXN_OK) { |
7183 | 0 | LOG_WARNING("failed to create txn when cleaning up metadata") |
7184 | 0 | .tag("instance_id", instance_id_) |
7185 | 0 | .tag("tablet_id", tablet_id) |
7186 | 0 | .tag("rowset_id", rowset_id) |
7187 | 0 | .tag("err", err); |
7188 | 0 | ret = -1; |
7189 | 0 | continue; |
7190 | 0 | } |
7191 | | |
7192 | 49 | std::string_view reference_instance_id = instance_id_; |
7193 | 49 | if (task.rowset_meta.has_reference_instance_id()) { |
7194 | 0 | reference_instance_id = task.rowset_meta.reference_instance_id(); |
7195 | 0 | } |
7196 | | |
7197 | 49 | txn->remove(task.rowset_ref_count_key); |
7198 | 49 | LOG_INFO("delete rowset data ref count key in cleanup phase") |
7199 | 49 | .tag("instance_id", instance_id_) |
7200 | 49 | .tag("tablet_id", tablet_id) |
7201 | 49 | .tag("rowset_id", rowset_id) |
7202 | 49 | .tag("ref_count_key", hex(task.rowset_ref_count_key)); |
7203 | | |
7204 | 49 | std::string dbm_start_key = |
7205 | 49 | meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id, 0, 0}); |
7206 | 49 | std::string dbm_end_key = meta_delete_bitmap_key( |
7207 | 49 | {reference_instance_id, tablet_id, rowset_id, |
7208 | 49 | std::numeric_limits<int64_t>::max(), std::numeric_limits<int64_t>::max()}); |
7209 | 49 | txn->remove(dbm_start_key, dbm_end_key); |
7210 | 49 | LOG_INFO("remove delete bitmap kv in cleanup phase") |
7211 | 49 | .tag("instance_id", instance_id_) |
7212 | 49 | .tag("tablet_id", tablet_id) |
7213 | 49 | .tag("rowset_id", rowset_id) |
7214 | 49 | .tag("begin", hex(dbm_start_key)) |
7215 | 49 | .tag("end", hex(dbm_end_key)); |
7216 | | |
7217 | 49 | std::string versioned_dbm_start_key = |
7218 | 49 | versioned::meta_delete_bitmap_key({reference_instance_id, tablet_id, rowset_id}); |
7219 | 49 | std::string versioned_dbm_end_key = versioned_dbm_start_key; |
7220 | 49 | encode_int64(INT64_MAX, &versioned_dbm_end_key); |
7221 | 49 | txn->remove(versioned_dbm_start_key, versioned_dbm_end_key); |
7222 | 49 | LOG_INFO("remove versioned delete bitmap kv in cleanup phase") |
7223 | 49 | .tag("instance_id", instance_id_) |
7224 | 49 | .tag("tablet_id", tablet_id) |
7225 | 49 | .tag("rowset_id", rowset_id) |
7226 | 49 | .tag("begin", hex(versioned_dbm_start_key)) |
7227 | 49 | .tag("end", hex(versioned_dbm_end_key)); |
7228 | | |
7229 | | // Remove versioned meta rowset key |
7230 | 49 | if (!task.versioned_rowset_key.empty()) { |
7231 | 49 | std::string versioned_rowset_key_end = task.versioned_rowset_key; |
7232 | 49 | encode_int64(INT64_MAX, &versioned_rowset_key_end); |
7233 | 49 | txn->remove(task.versioned_rowset_key, versioned_rowset_key_end); |
7234 | 49 | LOG_INFO("remove versioned meta rowset key in cleanup phase") |
7235 | 49 | .tag("instance_id", instance_id_) |
7236 | 49 | .tag("tablet_id", tablet_id) |
7237 | 49 | .tag("rowset_id", rowset_id) |
7238 | 49 | .tag("begin", hex(task.versioned_rowset_key)) |
7239 | 49 | .tag("end", hex(versioned_rowset_key_end)); |
7240 | 49 | } |
7241 | | |
7242 | 49 | if (!task.non_versioned_rowset_key.empty()) { |
7243 | 49 | txn->remove(task.non_versioned_rowset_key); |
7244 | 49 | LOG_INFO("remove non versioned rowset key in cleanup phase") |
7245 | 49 | .tag("instance_id", instance_id_) |
7246 | 49 | .tag("tablet_id", tablet_id) |
7247 | 49 | .tag("rowset_id", rowset_id) |
7248 | 49 | .tag("key", hex(task.non_versioned_rowset_key)); |
7249 | 49 | } |
7250 | | |
7251 | | // Remove recycle_rowset_key last to ensure retry safety: |
7252 | | // if cleanup fails, this key remains and triggers next round retry. |
7253 | 49 | if (!task.recycle_rowset_key.empty()) { |
7254 | 49 | txn->remove(task.recycle_rowset_key); |
7255 | 49 | LOG_INFO("remove recycle rowset key in cleanup phase") |
7256 | 49 | .tag("instance_id", instance_id_) |
7257 | 49 | .tag("tablet_id", tablet_id) |
7258 | 49 | .tag("rowset_id", rowset_id) |
7259 | 49 | .tag("key", hex(task.recycle_rowset_key)); |
7260 | 49 | } |
7261 | | |
7262 | 49 | err = txn->commit(); |
7263 | 49 | if (err != TxnErrorCode::TXN_OK) { |
7264 | | // Metadata cleanup failed. recycle_rowset_key remains, next round will retry. |
7265 | 0 | LOG_WARNING("failed to commit cleanup metadata txn, will retry next round") |
7266 | 0 | .tag("instance_id", instance_id_) |
7267 | 0 | .tag("tablet_id", tablet_id) |
7268 | 0 | .tag("rowset_id", rowset_id) |
7269 | 0 | .tag("err", err); |
7270 | 0 | ret = -1; |
7271 | 0 | continue; |
7272 | 0 | } |
7273 | | |
7274 | 49 | LOG_INFO("cleanup rowset metadata success") |
7275 | 49 | .tag("instance_id", instance_id_) |
7276 | 49 | .tag("tablet_id", tablet_id) |
7277 | 49 | .tag("rowset_id", rowset_id); |
7278 | 49 | } |
7279 | 10 | return ret; |
7280 | 10 | } |
7281 | | |
7282 | | } // namespace doris::cloud |