From: Yuval Lifshitz Date: Sun, 19 Oct 2025 11:20:01 +0000 (+0300) Subject: Merge pull request #64730 from benhanokh/dedup_throttle X-Git-Tag: testing/wip-vshankar-testing-20251027.053005-debug~45 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=04280e12c880cd6dd731c44904183c0fd3031467;p=ceph-ci.git Merge pull request #64730 from benhanokh/dedup_throttle rgw/dedup: add throttling mechanism --- 04280e12c880cd6dd731c44904183c0fd3031467 diff --cc src/rgw/radosgw-admin/radosgw-admin.cc index d57e8d1493d,8c98348649f..a48adb01124 --- a/src/rgw/radosgw-admin/radosgw-admin.cc +++ b/src/rgw/radosgw-admin/radosgw-admin.cc @@@ -3704,18 -3696,18 +3713,22 @@@ int main(int argc, const char **argv int64_t max_size = -1; int64_t max_read_ops = 0; int64_t max_write_ops = 0; + int64_t max_list_ops = 0; + int64_t max_delete_ops = 0; int64_t max_read_bytes = 0; int64_t max_write_bytes = 0; + uint32_t max_bucket_index_ops = 0; + uint32_t max_metadata_ops = 0; bool have_max_objects = false; bool have_max_size = false; bool have_max_write_ops = false; bool have_max_read_ops = false; + bool have_max_list_ops = false; + bool have_max_delete_ops = false; bool have_max_write_bytes = false; bool have_max_read_bytes = false; + bool have_max_bucket_index_ops = false; + bool have_max_metadata_ops = false; int include_all = false; int allow_unordered = false;