]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/rgw_reshard.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / rgw / rgw_reshard.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab ft=cpp
3
4 #include <limits>
5 #include <sstream>
6
7 #include "rgw_zone.h"
8 #include "rgw_bucket.h"
9 #include "rgw_reshard.h"
10 #include "rgw_sal.h"
11 #include "rgw_sal_rados.h"
12 #include "cls/rgw/cls_rgw_client.h"
13 #include "cls/lock/cls_lock_client.h"
14 #include "common/errno.h"
15 #include "common/ceph_json.h"
16
17 #include "common/dout.h"
18
19 #include "services/svc_zone.h"
20 #include "services/svc_sys_obj.h"
21 #include "services/svc_tier_rados.h"
22
23 #define dout_context g_ceph_context
24 #define dout_subsys ceph_subsys_rgw
25
26 using namespace std;
27
28 const string reshard_oid_prefix = "reshard.";
29 const string reshard_lock_name = "reshard_process";
30 const string bucket_instance_lock_name = "bucket_instance_lock";
31
32 /* All primes up to 2000 used to attempt to make dynamic sharding use
33 * a prime numbers of shards. Note: this list also includes 1 for when
34 * 1 shard is the most appropriate, even though 1 is not prime.
35 */
36 const std::initializer_list<uint16_t> RGWBucketReshard::reshard_primes = {
37 1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61,
38 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137,
39 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211,
40 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283,
41 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379,
42 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461,
43 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563,
44 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643,
45 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739,
46 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829,
47 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937,
48 941, 947, 953, 967, 971, 977, 983, 991, 997, 1009, 1013, 1019, 1021,
49 1031, 1033, 1039, 1049, 1051, 1061, 1063, 1069, 1087, 1091, 1093,
50 1097, 1103, 1109, 1117, 1123, 1129, 1151, 1153, 1163, 1171, 1181,
51 1187, 1193, 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259,
52 1277, 1279, 1283, 1289, 1291, 1297, 1301, 1303, 1307, 1319, 1321,
53 1327, 1361, 1367, 1373, 1381, 1399, 1409, 1423, 1427, 1429, 1433,
54 1439, 1447, 1451, 1453, 1459, 1471, 1481, 1483, 1487, 1489, 1493,
55 1499, 1511, 1523, 1531, 1543, 1549, 1553, 1559, 1567, 1571, 1579,
56 1583, 1597, 1601, 1607, 1609, 1613, 1619, 1621, 1627, 1637, 1657,
57 1663, 1667, 1669, 1693, 1697, 1699, 1709, 1721, 1723, 1733, 1741,
58 1747, 1753, 1759, 1777, 1783, 1787, 1789, 1801, 1811, 1823, 1831,
59 1847, 1861, 1867, 1871, 1873, 1877, 1879, 1889, 1901, 1907, 1913,
60 1931, 1933, 1949, 1951, 1973, 1979, 1987, 1993, 1997, 1999
61 };
62
63 class BucketReshardShard {
64 rgw::sal::RadosStore* store;
65 const RGWBucketInfo& bucket_info;
66 int num_shard;
67 const rgw::bucket_index_layout_generation& idx_layout;
68 RGWRados::BucketShard bs;
69 vector<rgw_cls_bi_entry> entries;
70 map<RGWObjCategory, rgw_bucket_category_stats> stats;
71 deque<librados::AioCompletion *>& aio_completions;
72 uint64_t max_aio_completions;
73 uint64_t reshard_shard_batch_size;
74
75 int wait_next_completion() {
76 librados::AioCompletion *c = aio_completions.front();
77 aio_completions.pop_front();
78
79 c->wait_for_complete();
80
81 int ret = c->get_return_value();
82 c->release();
83
84 if (ret < 0) {
85 derr << "ERROR: reshard rados operation failed: " << cpp_strerror(-ret) << dendl;
86 return ret;
87 }
88
89 return 0;
90 }
91
92 int get_completion(librados::AioCompletion **c) {
93 if (aio_completions.size() >= max_aio_completions) {
94 int ret = wait_next_completion();
95 if (ret < 0) {
96 return ret;
97 }
98 }
99
100 *c = librados::Rados::aio_create_completion(nullptr, nullptr);
101 aio_completions.push_back(*c);
102
103 return 0;
104 }
105
106 public:
107 BucketReshardShard(const DoutPrefixProvider *dpp,
108 rgw::sal::RadosStore* _store, const RGWBucketInfo& _bucket_info,
109 int _num_shard, const rgw::bucket_index_layout_generation& _idx_layout,
110 deque<librados::AioCompletion *>& _completions) :
111 store(_store), bucket_info(_bucket_info), idx_layout(_idx_layout), bs(store->getRados()),
112 aio_completions(_completions)
113 {
114 num_shard = (idx_layout.layout.normal.num_shards > 0 ? _num_shard : -1);
115
116 bs.init(bucket_info.bucket, num_shard, idx_layout, nullptr /* no RGWBucketInfo */, dpp);
117
118 max_aio_completions =
119 store->ctx()->_conf.get_val<uint64_t>("rgw_reshard_max_aio");
120 reshard_shard_batch_size =
121 store->ctx()->_conf.get_val<uint64_t>("rgw_reshard_batch_size");
122 }
123
124 int get_num_shard() {
125 return num_shard;
126 }
127
128 int add_entry(rgw_cls_bi_entry& entry, bool account, RGWObjCategory category,
129 const rgw_bucket_category_stats& entry_stats) {
130 entries.push_back(entry);
131 if (account) {
132 rgw_bucket_category_stats& target = stats[category];
133 target.num_entries += entry_stats.num_entries;
134 target.total_size += entry_stats.total_size;
135 target.total_size_rounded += entry_stats.total_size_rounded;
136 target.actual_size += entry_stats.actual_size;
137 }
138 if (entries.size() >= reshard_shard_batch_size) {
139 int ret = flush();
140 if (ret < 0) {
141 return ret;
142 }
143 }
144
145 return 0;
146 }
147
148 int flush() {
149 if (entries.size() == 0) {
150 return 0;
151 }
152
153 librados::ObjectWriteOperation op;
154 for (auto& entry : entries) {
155 store->getRados()->bi_put(op, bs, entry);
156 }
157 cls_rgw_bucket_update_stats(op, false, stats);
158
159 librados::AioCompletion *c;
160 int ret = get_completion(&c);
161 if (ret < 0) {
162 return ret;
163 }
164 ret = bs.bucket_obj.aio_operate(c, &op);
165 if (ret < 0) {
166 derr << "ERROR: failed to store entries in target bucket shard (bs=" << bs.bucket << "/" << bs.shard_id << ") error=" << cpp_strerror(-ret) << dendl;
167 return ret;
168 }
169 entries.clear();
170 stats.clear();
171 return 0;
172 }
173
174 int wait_all_aio() {
175 int ret = 0;
176 while (!aio_completions.empty()) {
177 int r = wait_next_completion();
178 if (r < 0) {
179 ret = r;
180 }
181 }
182 return ret;
183 }
184 }; // class BucketReshardShard
185
186
187 class BucketReshardManager {
188 rgw::sal::RadosStore* store;
189 const RGWBucketInfo& target_bucket_info;
190 deque<librados::AioCompletion *> completions;
191 int num_target_shards;
192 vector<BucketReshardShard *> target_shards;
193
194 public:
195 BucketReshardManager(const DoutPrefixProvider *dpp,
196 rgw::sal::RadosStore* _store,
197 const RGWBucketInfo& _target_bucket_info,
198 int _num_target_shards) :
199 store(_store), target_bucket_info(_target_bucket_info),
200 num_target_shards(_num_target_shards)
201 {
202 const auto& idx_layout = target_bucket_info.layout.current_index;
203 target_shards.resize(num_target_shards);
204 for (int i = 0; i < num_target_shards; ++i) {
205 target_shards[i] = new BucketReshardShard(dpp, store, target_bucket_info, i, idx_layout, completions);
206 }
207 }
208
209 ~BucketReshardManager() {
210 for (auto& shard : target_shards) {
211 int ret = shard->wait_all_aio();
212 if (ret < 0) {
213 ldout(store->ctx(), 20) << __func__ <<
214 ": shard->wait_all_aio() returned ret=" << ret << dendl;
215 }
216 }
217 }
218
219 int add_entry(int shard_index,
220 rgw_cls_bi_entry& entry, bool account, RGWObjCategory category,
221 const rgw_bucket_category_stats& entry_stats) {
222 int ret = target_shards[shard_index]->add_entry(entry, account, category,
223 entry_stats);
224 if (ret < 0) {
225 derr << "ERROR: target_shards.add_entry(" << entry.idx <<
226 ") returned error: " << cpp_strerror(-ret) << dendl;
227 return ret;
228 }
229
230 return 0;
231 }
232
233 int finish() {
234 int ret = 0;
235 for (auto& shard : target_shards) {
236 int r = shard->flush();
237 if (r < 0) {
238 derr << "ERROR: target_shards[" << shard->get_num_shard() << "].flush() returned error: " << cpp_strerror(-r) << dendl;
239 ret = r;
240 }
241 }
242 for (auto& shard : target_shards) {
243 int r = shard->wait_all_aio();
244 if (r < 0) {
245 derr << "ERROR: target_shards[" << shard->get_num_shard() << "].wait_all_aio() returned error: " << cpp_strerror(-r) << dendl;
246 ret = r;
247 }
248 delete shard;
249 }
250 target_shards.clear();
251 return ret;
252 }
253 }; // class BucketReshardManager
254
255 RGWBucketReshard::RGWBucketReshard(rgw::sal::RadosStore* _store,
256 const RGWBucketInfo& _bucket_info,
257 const map<string, bufferlist>& _bucket_attrs,
258 RGWBucketReshardLock* _outer_reshard_lock) :
259 store(_store), bucket_info(_bucket_info), bucket_attrs(_bucket_attrs),
260 reshard_lock(store, bucket_info, true),
261 outer_reshard_lock(_outer_reshard_lock)
262 { }
263
264 int RGWBucketReshard::set_resharding_status(const DoutPrefixProvider *dpp,
265 rgw::sal::RadosStore* store,
266 const RGWBucketInfo& bucket_info,
267 const string& new_instance_id,
268 int32_t num_shards,
269 cls_rgw_reshard_status status)
270 {
271 if (new_instance_id.empty()) {
272 ldpp_dout(dpp, 0) << __func__ << " missing new bucket instance id" << dendl;
273 return -EINVAL;
274 }
275
276 cls_rgw_bucket_instance_entry instance_entry;
277 instance_entry.set_status(new_instance_id, num_shards, status);
278
279 int ret = store->getRados()->bucket_set_reshard(dpp, bucket_info, instance_entry);
280 if (ret < 0) {
281 ldpp_dout(dpp, 0) << "RGWReshard::" << __func__ << " ERROR: error setting bucket resharding flag on bucket index: "
282 << cpp_strerror(-ret) << dendl;
283 return ret;
284 }
285 return 0;
286 }
287
288 // reshard lock assumes lock is held
289 int RGWBucketReshard::clear_resharding(const DoutPrefixProvider *dpp,
290 rgw::sal::RadosStore* store,
291 const RGWBucketInfo& bucket_info)
292 {
293 int ret = clear_index_shard_reshard_status(dpp, store, bucket_info);
294 if (ret < 0) {
295 ldpp_dout(dpp, 0) << "RGWBucketReshard::" << __func__ <<
296 " ERROR: error clearing reshard status from index shard " <<
297 cpp_strerror(-ret) << dendl;
298 return ret;
299 }
300
301 cls_rgw_bucket_instance_entry instance_entry;
302 ret = store->getRados()->bucket_set_reshard(dpp, bucket_info, instance_entry);
303 if (ret < 0) {
304 ldpp_dout(dpp, 0) << "RGWReshard::" << __func__ <<
305 " ERROR: error setting bucket resharding flag on bucket index: " <<
306 cpp_strerror(-ret) << dendl;
307 return ret;
308 }
309
310 return 0;
311 }
312
313 int RGWBucketReshard::clear_index_shard_reshard_status(const DoutPrefixProvider *dpp,
314 rgw::sal::RadosStore* store,
315 const RGWBucketInfo& bucket_info)
316 {
317 uint32_t num_shards = bucket_info.layout.current_index.layout.normal.num_shards;
318
319 if (num_shards < std::numeric_limits<uint32_t>::max()) {
320 int ret = set_resharding_status(dpp, store, bucket_info,
321 bucket_info.bucket.bucket_id,
322 (num_shards < 1 ? 1 : num_shards),
323 cls_rgw_reshard_status::NOT_RESHARDING);
324 if (ret < 0) {
325 ldpp_dout(dpp, 0) << "RGWBucketReshard::" << __func__ <<
326 " ERROR: error clearing reshard status from index shard " <<
327 cpp_strerror(-ret) << dendl;
328 return ret;
329 }
330 }
331
332 return 0;
333 }
334
335 static int create_new_bucket_instance(rgw::sal::RadosStore* store,
336 int new_num_shards,
337 const RGWBucketInfo& bucket_info,
338 map<string, bufferlist>& attrs,
339 RGWBucketInfo& new_bucket_info,
340 const DoutPrefixProvider *dpp)
341 {
342 new_bucket_info = bucket_info;
343
344 store->getRados()->create_bucket_id(&new_bucket_info.bucket.bucket_id);
345
346 new_bucket_info.layout.current_index.layout.normal.num_shards = new_num_shards;
347 new_bucket_info.objv_tracker.clear();
348
349 new_bucket_info.new_bucket_instance_id.clear();
350 new_bucket_info.reshard_status = cls_rgw_reshard_status::NOT_RESHARDING;
351
352 int ret = store->getRados()->put_bucket_instance_info(new_bucket_info, true, real_time(), &attrs, dpp);
353 if (ret < 0) {
354 cerr << "ERROR: failed to store new bucket instance info: " << cpp_strerror(-ret) << std::endl;
355 return ret;
356 }
357
358 ret = store->svc()->bi->init_index(dpp, new_bucket_info);
359 if (ret < 0) {
360 cerr << "ERROR: failed to init new bucket indexes: " << cpp_strerror(-ret) << std::endl;
361 return ret;
362 }
363
364 return 0;
365 }
366
367 int RGWBucketReshard::create_new_bucket_instance(int new_num_shards,
368 RGWBucketInfo& new_bucket_info,
369 const DoutPrefixProvider *dpp)
370 {
371 return ::create_new_bucket_instance(store, new_num_shards,
372 bucket_info, bucket_attrs, new_bucket_info, dpp);
373 }
374
375 int RGWBucketReshard::cancel(const DoutPrefixProvider *dpp)
376 {
377 int ret = reshard_lock.lock(dpp);
378 if (ret < 0) {
379 return ret;
380 }
381
382 ret = clear_resharding(dpp);
383
384 reshard_lock.unlock();
385 return ret;
386 }
387
388 class BucketInfoReshardUpdate
389 {
390 const DoutPrefixProvider *dpp;
391 rgw::sal::RadosStore* store;
392 RGWBucketInfo& bucket_info;
393 std::map<string, bufferlist> bucket_attrs;
394
395 bool in_progress{false};
396
397 int set_status(cls_rgw_reshard_status s, const DoutPrefixProvider *dpp) {
398 bucket_info.reshard_status = s;
399 int ret = store->getRados()->put_bucket_instance_info(bucket_info, false, real_time(), &bucket_attrs, dpp);
400 if (ret < 0) {
401 ldpp_dout(dpp, 0) << "ERROR: failed to write bucket info, ret=" << ret << dendl;
402 return ret;
403 }
404 return 0;
405 }
406
407 public:
408 BucketInfoReshardUpdate(const DoutPrefixProvider *_dpp,
409 rgw::sal::RadosStore* _store,
410 RGWBucketInfo& _bucket_info,
411 map<string, bufferlist>& _bucket_attrs,
412 const string& new_bucket_id) :
413 dpp(_dpp),
414 store(_store),
415 bucket_info(_bucket_info),
416 bucket_attrs(_bucket_attrs)
417 {
418 bucket_info.new_bucket_instance_id = new_bucket_id;
419 }
420
421 ~BucketInfoReshardUpdate() {
422 if (in_progress) {
423 // resharding must not have ended correctly, clean up
424 int ret =
425 RGWBucketReshard::clear_index_shard_reshard_status(dpp, store, bucket_info);
426 if (ret < 0) {
427 ldpp_dout(dpp, -1) << "Error: " << __func__ <<
428 " clear_index_shard_status returned " << ret << dendl;
429 }
430 bucket_info.new_bucket_instance_id.clear();
431
432 // clears new_bucket_instance as well
433 set_status(cls_rgw_reshard_status::NOT_RESHARDING, dpp);
434 }
435 }
436
437 int start() {
438 int ret = set_status(cls_rgw_reshard_status::IN_PROGRESS, dpp);
439 if (ret < 0) {
440 return ret;
441 }
442 in_progress = true;
443 return 0;
444 }
445
446 int complete() {
447 int ret = set_status(cls_rgw_reshard_status::DONE, dpp);
448 if (ret < 0) {
449 return ret;
450 }
451 in_progress = false;
452 return 0;
453 }
454 };
455
456
457 RGWBucketReshardLock::RGWBucketReshardLock(rgw::sal::RadosStore* _store,
458 const std::string& reshard_lock_oid,
459 bool _ephemeral) :
460 store(_store),
461 lock_oid(reshard_lock_oid),
462 ephemeral(_ephemeral),
463 internal_lock(reshard_lock_name)
464 {
465 const int lock_dur_secs = store->ctx()->_conf.get_val<uint64_t>(
466 "rgw_reshard_bucket_lock_duration");
467 duration = std::chrono::seconds(lock_dur_secs);
468
469 #define COOKIE_LEN 16
470 char cookie_buf[COOKIE_LEN + 1];
471 gen_rand_alphanumeric(store->ctx(), cookie_buf, sizeof(cookie_buf) - 1);
472 cookie_buf[COOKIE_LEN] = '\0';
473
474 internal_lock.set_cookie(cookie_buf);
475 internal_lock.set_duration(duration);
476 }
477
478 int RGWBucketReshardLock::lock(const DoutPrefixProvider *dpp) {
479 internal_lock.set_must_renew(false);
480
481 int ret;
482 if (ephemeral) {
483 ret = internal_lock.lock_exclusive_ephemeral(&store->getRados()->reshard_pool_ctx,
484 lock_oid);
485 } else {
486 ret = internal_lock.lock_exclusive(&store->getRados()->reshard_pool_ctx, lock_oid);
487 }
488
489 if (ret == -EBUSY) {
490 ldout(store->ctx(), 0) << "INFO: RGWReshardLock::" << __func__ <<
491 " found lock on " << lock_oid <<
492 " to be held by another RGW process; skipping for now" << dendl;
493 return ret;
494 } else if (ret < 0) {
495 ldpp_dout(dpp, -1) << "ERROR: RGWReshardLock::" << __func__ <<
496 " failed to acquire lock on " << lock_oid << ": " <<
497 cpp_strerror(-ret) << dendl;
498 return ret;
499 }
500
501 reset_time(Clock::now());
502
503 return 0;
504 }
505
506 void RGWBucketReshardLock::unlock() {
507 int ret = internal_lock.unlock(&store->getRados()->reshard_pool_ctx, lock_oid);
508 if (ret < 0) {
509 ldout(store->ctx(), 0) << "WARNING: RGWBucketReshardLock::" << __func__ <<
510 " failed to drop lock on " << lock_oid << " ret=" << ret << dendl;
511 }
512 }
513
514 int RGWBucketReshardLock::renew(const Clock::time_point& now) {
515 internal_lock.set_must_renew(true);
516 int ret;
517 if (ephemeral) {
518 ret = internal_lock.lock_exclusive_ephemeral(&store->getRados()->reshard_pool_ctx,
519 lock_oid);
520 } else {
521 ret = internal_lock.lock_exclusive(&store->getRados()->reshard_pool_ctx, lock_oid);
522 }
523 if (ret < 0) { /* expired or already locked by another processor */
524 std::stringstream error_s;
525 if (-ENOENT == ret) {
526 error_s << "ENOENT (lock expired or never initially locked)";
527 } else {
528 error_s << ret << " (" << cpp_strerror(-ret) << ")";
529 }
530 ldout(store->ctx(), 5) << __func__ << "(): failed to renew lock on " <<
531 lock_oid << " with error " << error_s.str() << dendl;
532 return ret;
533 }
534 internal_lock.set_must_renew(false);
535
536 reset_time(now);
537 ldout(store->ctx(), 20) << __func__ << "(): successfully renewed lock on " <<
538 lock_oid << dendl;
539
540 return 0;
541 }
542
543
544 int RGWBucketReshard::do_reshard(int num_shards,
545 RGWBucketInfo& new_bucket_info,
546 int max_entries,
547 bool verbose,
548 ostream *out,
549 Formatter *formatter,
550 const DoutPrefixProvider *dpp)
551 {
552 if (out) {
553 const rgw_bucket& bucket = bucket_info.bucket;
554 (*out) << "tenant: " << bucket.tenant << std::endl;
555 (*out) << "bucket name: " << bucket.name << std::endl;
556 (*out) << "old bucket instance id: " << bucket.bucket_id <<
557 std::endl;
558 (*out) << "new bucket instance id: " << new_bucket_info.bucket.bucket_id <<
559 std::endl;
560 }
561
562 /* update bucket info -- in progress*/
563 list<rgw_cls_bi_entry> entries;
564
565 if (max_entries < 0) {
566 ldpp_dout(dpp, 0) << __func__ <<
567 ": can't reshard, negative max_entries" << dendl;
568 return -EINVAL;
569 }
570
571 // NB: destructor cleans up sharding state if reshard does not
572 // complete successfully
573 BucketInfoReshardUpdate bucket_info_updater(dpp, store, bucket_info, bucket_attrs, new_bucket_info.bucket.bucket_id);
574
575 int ret = bucket_info_updater.start();
576 if (ret < 0) {
577 ldpp_dout(dpp, 0) << __func__ << ": failed to update bucket info ret=" << ret << dendl;
578 return ret;
579 }
580
581 int num_target_shards = (new_bucket_info.layout.current_index.layout.normal.num_shards > 0 ? new_bucket_info.layout.current_index.layout.normal.num_shards : 1);
582
583 BucketReshardManager target_shards_mgr(dpp, store, new_bucket_info, num_target_shards);
584
585 bool verbose_json_out = verbose && (formatter != nullptr) && (out != nullptr);
586
587 if (verbose_json_out) {
588 formatter->open_array_section("entries");
589 }
590
591 uint64_t total_entries = 0;
592
593 if (!verbose_json_out && out) {
594 (*out) << "total entries:";
595 }
596
597 const int num_source_shards =
598 (bucket_info.layout.current_index.layout.normal.num_shards > 0 ? bucket_info.layout.current_index.layout.normal.num_shards : 1);
599 string marker;
600 for (int i = 0; i < num_source_shards; ++i) {
601 bool is_truncated = true;
602 marker.clear();
603 const std::string null_object_filter; // empty string since we're not filtering by object
604 while (is_truncated) {
605 entries.clear();
606 ret = store->getRados()->bi_list(dpp, bucket_info, i, null_object_filter, marker, max_entries, &entries, &is_truncated);
607 if (ret < 0 && ret != -ENOENT) {
608 derr << "ERROR: bi_list(): " << cpp_strerror(-ret) << dendl;
609 return ret;
610 }
611
612 for (auto iter = entries.begin(); iter != entries.end(); ++iter) {
613 rgw_cls_bi_entry& entry = *iter;
614 if (verbose_json_out) {
615 formatter->open_object_section("entry");
616
617 encode_json("shard_id", i, formatter);
618 encode_json("num_entry", total_entries, formatter);
619 encode_json("entry", entry, formatter);
620 }
621 total_entries++;
622
623 marker = entry.idx;
624
625 int target_shard_id;
626 cls_rgw_obj_key cls_key;
627 RGWObjCategory category;
628 rgw_bucket_category_stats stats;
629 bool account = entry.get_info(&cls_key, &category, &stats);
630 rgw_obj_key key(cls_key);
631 rgw_obj obj(new_bucket_info.bucket, key);
632 RGWMPObj mp;
633 if (key.ns == RGW_OBJ_NS_MULTIPART && mp.from_meta(key.name)) {
634 // place the multipart .meta object on the same shard as its head object
635 obj.index_hash_source = mp.get_key();
636 }
637 int ret = store->getRados()->get_target_shard_id(new_bucket_info.layout.current_index.layout.normal, obj.get_hash_object(), &target_shard_id);
638 if (ret < 0) {
639 ldpp_dout(dpp, -1) << "ERROR: get_target_shard_id() returned ret=" << ret << dendl;
640 return ret;
641 }
642
643 int shard_index = (target_shard_id > 0 ? target_shard_id : 0);
644
645 ret = target_shards_mgr.add_entry(shard_index, entry, account,
646 category, stats);
647 if (ret < 0) {
648 return ret;
649 }
650
651 Clock::time_point now = Clock::now();
652 if (reshard_lock.should_renew(now)) {
653 // assume outer locks have timespans at least the size of ours, so
654 // can call inside conditional
655 if (outer_reshard_lock) {
656 ret = outer_reshard_lock->renew(now);
657 if (ret < 0) {
658 return ret;
659 }
660 }
661 ret = reshard_lock.renew(now);
662 if (ret < 0) {
663 ldpp_dout(dpp, -1) << "Error renewing bucket lock: " << ret << dendl;
664 return ret;
665 }
666 }
667 if (verbose_json_out) {
668 formatter->close_section();
669 formatter->flush(*out);
670 } else if (out && !(total_entries % 1000)) {
671 (*out) << " " << total_entries;
672 }
673 } // entries loop
674 }
675 }
676
677 if (verbose_json_out) {
678 formatter->close_section();
679 formatter->flush(*out);
680 } else if (out) {
681 (*out) << " " << total_entries << std::endl;
682 }
683
684 ret = target_shards_mgr.finish();
685 if (ret < 0) {
686 ldpp_dout(dpp, -1) << "ERROR: failed to reshard" << dendl;
687 return -EIO;
688 }
689
690 ret = store->ctl()->bucket->link_bucket(new_bucket_info.owner, new_bucket_info.bucket, bucket_info.creation_time, null_yield, dpp);
691 if (ret < 0) {
692 ldpp_dout(dpp, -1) << "failed to link new bucket instance (bucket_id=" << new_bucket_info.bucket.bucket_id << ": " << cpp_strerror(-ret) << ")" << dendl;
693 return ret;
694 }
695
696 ret = bucket_info_updater.complete();
697 if (ret < 0) {
698 ldpp_dout(dpp, 0) << __func__ << ": failed to update bucket info ret=" << ret << dendl;
699 /* don't error out, reshard process succeeded */
700 }
701
702 return 0;
703 // NB: some error clean-up is done by ~BucketInfoReshardUpdate
704 } // RGWBucketReshard::do_reshard
705
706 int RGWBucketReshard::get_status(const DoutPrefixProvider *dpp, list<cls_rgw_bucket_instance_entry> *status)
707 {
708 return store->svc()->bi_rados->get_reshard_status(dpp, bucket_info, status);
709 }
710
711
712 int RGWBucketReshard::execute(int num_shards, int max_op_entries,
713 const DoutPrefixProvider *dpp,
714 bool verbose, ostream *out, Formatter *formatter,
715 RGWReshard* reshard_log)
716 {
717 int ret = reshard_lock.lock(dpp);
718 if (ret < 0) {
719 return ret;
720 }
721
722 RGWBucketInfo new_bucket_info;
723 ret = create_new_bucket_instance(num_shards, new_bucket_info, dpp);
724 if (ret < 0) {
725 // shard state is uncertain, but this will attempt to remove them anyway
726 goto error_out;
727 }
728
729 if (reshard_log) {
730 ret = reshard_log->update(dpp, bucket_info, new_bucket_info);
731 if (ret < 0) {
732 goto error_out;
733 }
734 }
735
736 // set resharding status of current bucket_info & shards with
737 // information about planned resharding
738 ret = set_resharding_status(dpp, new_bucket_info.bucket.bucket_id,
739 num_shards, cls_rgw_reshard_status::IN_PROGRESS);
740 if (ret < 0) {
741 goto error_out;
742 }
743
744 ret = do_reshard(num_shards,
745 new_bucket_info,
746 max_op_entries,
747 verbose, out, formatter, dpp);
748 if (ret < 0) {
749 goto error_out;
750 }
751
752 // at this point we've done the main work; we'll make a best-effort
753 // to clean-up but will not indicate any errors encountered
754
755 reshard_lock.unlock();
756
757 // resharding successful, so remove old bucket index shards; use
758 // best effort and don't report out an error; the lock isn't needed
759 // at this point since all we're using a best effort to remove old
760 // shard objects
761 ret = store->svc()->bi->clean_index(dpp, bucket_info);
762 if (ret < 0) {
763 ldpp_dout(dpp, -1) << "Error: " << __func__ <<
764 " failed to clean up old shards; " <<
765 "RGWRados::clean_bucket_index returned " << ret << dendl;
766 }
767
768 ret = store->ctl()->bucket->remove_bucket_instance_info(bucket_info.bucket,
769 bucket_info, null_yield, dpp);
770 if (ret < 0) {
771 ldpp_dout(dpp, -1) << "Error: " << __func__ <<
772 " failed to clean old bucket info object \"" <<
773 bucket_info.bucket.get_key() <<
774 "\"created after successful resharding with error " << ret << dendl;
775 }
776
777 ldpp_dout(dpp, 1) << __func__ <<
778 " INFO: reshard of bucket \"" << bucket_info.bucket.name << "\" from \"" <<
779 bucket_info.bucket.get_key() << "\" to \"" <<
780 new_bucket_info.bucket.get_key() << "\" completed successfully" << dendl;
781
782 return 0;
783
784 error_out:
785
786 reshard_lock.unlock();
787
788 // since the real problem is the issue that led to this error code
789 // path, we won't touch ret and instead use another variable to
790 // temporarily error codes
791 int ret2 = store->svc()->bi->clean_index(dpp, new_bucket_info);
792 if (ret2 < 0) {
793 ldpp_dout(dpp, -1) << "Error: " << __func__ <<
794 " failed to clean up shards from failed incomplete resharding; " <<
795 "RGWRados::clean_bucket_index returned " << ret2 << dendl;
796 }
797
798 ret2 = store->ctl()->bucket->remove_bucket_instance_info(new_bucket_info.bucket,
799 new_bucket_info,
800 null_yield, dpp);
801 if (ret2 < 0) {
802 ldpp_dout(dpp, -1) << "Error: " << __func__ <<
803 " failed to clean bucket info object \"" <<
804 new_bucket_info.bucket.get_key() <<
805 "\"created during incomplete resharding with error " << ret2 << dendl;
806 }
807
808 return ret;
809 } // execute
810
811
812 RGWReshard::RGWReshard(rgw::sal::RadosStore* _store, bool _verbose, ostream *_out,
813 Formatter *_formatter) :
814 store(_store), instance_lock(bucket_instance_lock_name),
815 verbose(_verbose), out(_out), formatter(_formatter)
816 {
817 num_logshards = store->ctx()->_conf.get_val<uint64_t>("rgw_reshard_num_logs");
818 }
819
820 string RGWReshard::get_logshard_key(const string& tenant,
821 const string& bucket_name)
822 {
823 return tenant + ":" + bucket_name;
824 }
825
826 #define MAX_RESHARD_LOGSHARDS_PRIME 7877
827
828 void RGWReshard::get_bucket_logshard_oid(const string& tenant, const string& bucket_name, string *oid)
829 {
830 string key = get_logshard_key(tenant, bucket_name);
831
832 uint32_t sid = ceph_str_hash_linux(key.c_str(), key.size());
833 uint32_t sid2 = sid ^ ((sid & 0xFF) << 24);
834 sid = sid2 % MAX_RESHARD_LOGSHARDS_PRIME % num_logshards;
835
836 get_logshard_oid(int(sid), oid);
837 }
838
839 int RGWReshard::add(const DoutPrefixProvider *dpp, cls_rgw_reshard_entry& entry)
840 {
841 if (!store->svc()->zone->can_reshard()) {
842 ldpp_dout(dpp, 20) << __func__ << " Resharding is disabled" << dendl;
843 return 0;
844 }
845
846 string logshard_oid;
847
848 get_bucket_logshard_oid(entry.tenant, entry.bucket_name, &logshard_oid);
849
850 librados::ObjectWriteOperation op;
851 cls_rgw_reshard_add(op, entry);
852
853 int ret = rgw_rados_operate(dpp, store->getRados()->reshard_pool_ctx, logshard_oid, &op, null_yield);
854 if (ret < 0) {
855 ldpp_dout(dpp, -1) << "ERROR: failed to add entry to reshard log, oid=" << logshard_oid << " tenant=" << entry.tenant << " bucket=" << entry.bucket_name << dendl;
856 return ret;
857 }
858 return 0;
859 }
860
861 int RGWReshard::update(const DoutPrefixProvider *dpp, const RGWBucketInfo& bucket_info, const RGWBucketInfo& new_bucket_info)
862 {
863 cls_rgw_reshard_entry entry;
864 entry.bucket_name = bucket_info.bucket.name;
865 entry.bucket_id = bucket_info.bucket.bucket_id;
866 entry.tenant = bucket_info.owner.tenant;
867
868 int ret = get(dpp, entry);
869 if (ret < 0) {
870 return ret;
871 }
872
873 entry.new_instance_id = new_bucket_info.bucket.name + ":" + new_bucket_info.bucket.bucket_id;
874
875 ret = add(dpp, entry);
876 if (ret < 0) {
877 ldpp_dout(dpp, 0) << __func__ << ":Error in updating entry bucket " << entry.bucket_name << ": " <<
878 cpp_strerror(-ret) << dendl;
879 }
880
881 return ret;
882 }
883
884
885 int RGWReshard::list(const DoutPrefixProvider *dpp, int logshard_num, string& marker, uint32_t max, std::list<cls_rgw_reshard_entry>& entries, bool *is_truncated)
886 {
887 string logshard_oid;
888
889 get_logshard_oid(logshard_num, &logshard_oid);
890
891 int ret = cls_rgw_reshard_list(store->getRados()->reshard_pool_ctx, logshard_oid, marker, max, entries, is_truncated);
892
893 if (ret == -ENOENT) {
894 // these shard objects aren't created until we actually write something to
895 // them, so treat ENOENT as a successful empty listing
896 *is_truncated = false;
897 ret = 0;
898 } else if (ret == -EACCES) {
899 ldpp_dout(dpp, -1) << "ERROR: access denied to pool " << store->svc()->zone->get_zone_params().reshard_pool
900 << ". Fix the pool access permissions of your client" << dendl;
901 } else if (ret < 0) {
902 ldpp_dout(dpp, -1) << "ERROR: failed to list reshard log entries, oid="
903 << logshard_oid << " marker=" << marker << " " << cpp_strerror(ret) << dendl;
904 }
905
906 return ret;
907 }
908
909 int RGWReshard::get(const DoutPrefixProvider *dpp, cls_rgw_reshard_entry& entry)
910 {
911 string logshard_oid;
912
913 get_bucket_logshard_oid(entry.tenant, entry.bucket_name, &logshard_oid);
914
915 int ret = cls_rgw_reshard_get(store->getRados()->reshard_pool_ctx, logshard_oid, entry);
916 if (ret < 0) {
917 if (ret != -ENOENT) {
918 ldpp_dout(dpp, -1) << "ERROR: failed to get entry from reshard log, oid=" << logshard_oid << " tenant=" << entry.tenant <<
919 " bucket=" << entry.bucket_name << dendl;
920 }
921 return ret;
922 }
923
924 return 0;
925 }
926
927 int RGWReshard::remove(const DoutPrefixProvider *dpp, cls_rgw_reshard_entry& entry)
928 {
929 string logshard_oid;
930
931 get_bucket_logshard_oid(entry.tenant, entry.bucket_name, &logshard_oid);
932
933 librados::ObjectWriteOperation op;
934 cls_rgw_reshard_remove(op, entry);
935
936 int ret = rgw_rados_operate(dpp, store->getRados()->reshard_pool_ctx, logshard_oid, &op, null_yield);
937 if (ret < 0) {
938 ldpp_dout(dpp, -1) << "ERROR: failed to remove entry from reshard log, oid=" << logshard_oid << " tenant=" << entry.tenant << " bucket=" << entry.bucket_name << dendl;
939 return ret;
940 }
941
942 return ret;
943 }
944
945 int RGWReshard::clear_bucket_resharding(const DoutPrefixProvider *dpp, const string& bucket_instance_oid, cls_rgw_reshard_entry& entry)
946 {
947 int ret = cls_rgw_clear_bucket_resharding(store->getRados()->reshard_pool_ctx, bucket_instance_oid);
948 if (ret < 0) {
949 ldpp_dout(dpp, -1) << "ERROR: failed to clear bucket resharding, bucket_instance_oid=" << bucket_instance_oid << dendl;
950 return ret;
951 }
952
953 return 0;
954 }
955
956 int RGWReshardWait::wait(optional_yield y)
957 {
958 std::unique_lock lock(mutex);
959
960 if (going_down) {
961 return -ECANCELED;
962 }
963
964 if (y) {
965 auto& context = y.get_io_context();
966 auto& yield = y.get_yield_context();
967
968 Waiter waiter(context);
969 waiters.push_back(waiter);
970 lock.unlock();
971
972 waiter.timer.expires_after(duration);
973
974 boost::system::error_code ec;
975 waiter.timer.async_wait(yield[ec]);
976
977 lock.lock();
978 waiters.erase(waiters.iterator_to(waiter));
979 return -ec.value();
980 }
981
982 cond.wait_for(lock, duration);
983
984 if (going_down) {
985 return -ECANCELED;
986 }
987
988 return 0;
989 }
990
991 void RGWReshardWait::stop()
992 {
993 std::scoped_lock lock(mutex);
994 going_down = true;
995 cond.notify_all();
996 for (auto& waiter : waiters) {
997 // unblock any waiters with ECANCELED
998 waiter.timer.cancel();
999 }
1000 }
1001
1002 int RGWReshard::process_single_logshard(int logshard_num, const DoutPrefixProvider *dpp)
1003 {
1004 string marker;
1005 bool truncated = true;
1006
1007 constexpr uint32_t max_entries = 1000;
1008
1009 string logshard_oid;
1010 get_logshard_oid(logshard_num, &logshard_oid);
1011
1012 RGWBucketReshardLock logshard_lock(store, logshard_oid, false);
1013
1014 int ret = logshard_lock.lock(dpp);
1015 if (ret < 0) {
1016 ldpp_dout(dpp, 5) << __func__ << "(): failed to acquire lock on " <<
1017 logshard_oid << ", ret = " << ret <<dendl;
1018 return ret;
1019 }
1020
1021 do {
1022 std::list<cls_rgw_reshard_entry> entries;
1023 ret = list(dpp, logshard_num, marker, max_entries, entries, &truncated);
1024 if (ret < 0) {
1025 ldpp_dout(dpp, 10) << "cannot list all reshards in logshard oid=" <<
1026 logshard_oid << dendl;
1027 continue;
1028 }
1029
1030 for(auto& entry: entries) { // logshard entries
1031 if(entry.new_instance_id.empty()) {
1032
1033 ldpp_dout(dpp, 20) << __func__ << " resharding " <<
1034 entry.bucket_name << dendl;
1035
1036 rgw_bucket bucket;
1037 RGWBucketInfo bucket_info;
1038 map<string, bufferlist> attrs;
1039
1040 ret = store->getRados()->get_bucket_info(store->svc(),
1041 entry.tenant, entry.bucket_name,
1042 bucket_info, nullptr,
1043 null_yield, dpp, &attrs);
1044 if (ret < 0 || bucket_info.bucket.bucket_id != entry.bucket_id) {
1045 if (ret < 0) {
1046 ldpp_dout(dpp, 0) << __func__ <<
1047 ": Error in get_bucket_info for bucket " << entry.bucket_name <<
1048 ": " << cpp_strerror(-ret) << dendl;
1049 if (ret != -ENOENT) {
1050 // any error other than ENOENT will abort
1051 return ret;
1052 }
1053 } else {
1054 ldpp_dout(dpp, 0) << __func__ <<
1055 ": Bucket: " << entry.bucket_name <<
1056 " already resharded by someone, skipping " << dendl;
1057 }
1058
1059 // we've encountered a reshard queue entry for an apparently
1060 // non-existent bucket; let's try to recover by cleaning up
1061 ldpp_dout(dpp, 0) << __func__ <<
1062 ": removing reshard queue entry for a resharded or non-existent bucket" <<
1063 entry.bucket_name << dendl;
1064
1065 ret = remove(dpp, entry);
1066 if (ret < 0) {
1067 ldpp_dout(dpp, 0) << __func__ <<
1068 ": Error removing non-existent bucket " <<
1069 entry.bucket_name << " from resharding queue: " <<
1070 cpp_strerror(-ret) << dendl;
1071 return ret;
1072 }
1073
1074 // we cleaned up, move on to the next entry
1075 goto finished_entry;
1076 }
1077
1078 RGWBucketReshard br(store, bucket_info, attrs, nullptr);
1079 ret = br.execute(entry.new_num_shards, max_entries, dpp, false, nullptr,
1080 nullptr, this);
1081 if (ret < 0) {
1082 ldpp_dout(dpp, 0) << __func__ <<
1083 ": Error during resharding bucket " << entry.bucket_name << ":" <<
1084 cpp_strerror(-ret)<< dendl;
1085 return ret;
1086 }
1087
1088 ldpp_dout(dpp, 20) << __func__ <<
1089 " removing reshard queue entry for bucket " << entry.bucket_name <<
1090 dendl;
1091
1092 ret = remove(dpp, entry);
1093 if (ret < 0) {
1094 ldpp_dout(dpp, 0) << __func__ << ": Error removing bucket " <<
1095 entry.bucket_name << " from resharding queue: " <<
1096 cpp_strerror(-ret) << dendl;
1097 return ret;
1098 }
1099 } // if new instance id is empty
1100
1101 finished_entry:
1102
1103 Clock::time_point now = Clock::now();
1104 if (logshard_lock.should_renew(now)) {
1105 ret = logshard_lock.renew(now);
1106 if (ret < 0) {
1107 return ret;
1108 }
1109 }
1110
1111 entry.get_key(&marker);
1112 } // entry for loop
1113 } while (truncated);
1114
1115 logshard_lock.unlock();
1116 return 0;
1117 }
1118
1119
1120 void RGWReshard::get_logshard_oid(int shard_num, string *logshard)
1121 {
1122 char buf[32];
1123 snprintf(buf, sizeof(buf), "%010u", (unsigned)shard_num);
1124
1125 string objname(reshard_oid_prefix);
1126 *logshard = objname + buf;
1127 }
1128
1129 int RGWReshard::process_all_logshards(const DoutPrefixProvider *dpp)
1130 {
1131 if (!store->svc()->zone->can_reshard()) {
1132 ldpp_dout(dpp, 20) << __func__ << " Resharding is disabled" << dendl;
1133 return 0;
1134 }
1135 int ret = 0;
1136
1137 for (int i = 0; i < num_logshards; i++) {
1138 string logshard;
1139 get_logshard_oid(i, &logshard);
1140
1141 ldpp_dout(dpp, 20) << "processing logshard = " << logshard << dendl;
1142
1143 ret = process_single_logshard(i, dpp);
1144
1145 ldpp_dout(dpp, 20) << "finish processing logshard = " << logshard << " , ret = " << ret << dendl;
1146 }
1147
1148 return 0;
1149 }
1150
1151 bool RGWReshard::going_down()
1152 {
1153 return down_flag;
1154 }
1155
1156 void RGWReshard::start_processor()
1157 {
1158 worker = new ReshardWorker(store->ctx(), this);
1159 worker->create("rgw_reshard");
1160 }
1161
1162 void RGWReshard::stop_processor()
1163 {
1164 down_flag = true;
1165 if (worker) {
1166 worker->stop();
1167 worker->join();
1168 }
1169 delete worker;
1170 worker = nullptr;
1171 }
1172
1173 void *RGWReshard::ReshardWorker::entry() {
1174 do {
1175 utime_t start = ceph_clock_now();
1176 reshard->process_all_logshards(this);
1177
1178 if (reshard->going_down())
1179 break;
1180
1181 utime_t end = ceph_clock_now();
1182 end -= start;
1183 int secs = cct->_conf.get_val<uint64_t>("rgw_reshard_thread_interval");
1184
1185 if (secs <= end.sec())
1186 continue; // next round
1187
1188 secs -= end.sec();
1189
1190 std::unique_lock locker{lock};
1191 cond.wait_for(locker, std::chrono::seconds(secs));
1192 } while (!reshard->going_down());
1193
1194 return NULL;
1195 }
1196
1197 void RGWReshard::ReshardWorker::stop()
1198 {
1199 std::lock_guard l{lock};
1200 cond.notify_all();
1201 }
1202
1203 CephContext *RGWReshard::ReshardWorker::get_cct() const
1204 {
1205 return cct;
1206 }
1207
1208 unsigned RGWReshard::ReshardWorker::get_subsys() const
1209 {
1210 return dout_subsys;
1211 }
1212
1213 std::ostream& RGWReshard::ReshardWorker::gen_prefix(std::ostream& out) const
1214 {
1215 return out << "rgw reshard worker thread: ";
1216 }