]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: update last_added_entry when count == num_entries 45457/head
authorPeng Zhang <zhangpeng@vclusters.com>
Fri, 2 Jul 2021 06:13:50 +0000 (14:13 +0800)
committerCory Snyder <csnyder@iland.com>
Wed, 16 Mar 2022 18:27:18 +0000 (14:27 -0400)
RGWRados::cls_bucket_list_unordered() will produce one redundent entry
every time is_truncated is true.The issue could be easily reproduced
when a bucket is filled with amounts of incomplete multipart upload.
To be more specific, the number of incomplete multipart upload objects
should be greater than 1100.

Signed-off-by: Peng Zhang <zhangpeng@vclusters.com>
(cherry picked from commit 7511f9f675ea4e43992605dc03109bc5f356a5e1)

src/rgw/rgw_rados.cc

index b9f3e08f59e06c7bce79d5beb9973193fc444cff..69b593137c77a14e8952e2672435c028d57084b8 100644 (file)
@@ -8760,6 +8760,7 @@ int RGWRados::cls_bucket_list_unordered(const DoutPrefixProvider *dpp,
          ent_list.emplace_back(std::move(dirent));
          ++count;
        } else {
+         last_added_entry = dirent.key;
          *is_truncated = true;
          goto check_updates;
        }