]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: log the number of 'dups' entries in a PG Log 46608/head
authorRadoslaw Zarzynski <rzarzyns@redhat.com>
Thu, 9 Jun 2022 18:44:10 +0000 (18:44 +0000)
committerRadoslaw Zarzynski <rzarzyns@redhat.com>
Thu, 9 Jun 2022 20:34:35 +0000 (20:34 +0000)
We really want to have the ability to know how many
entries `PGLog::IndexedLog::dups` has inside.
The current ways are either invasive (stopping an OSD)
or indirect (examination of `dump_mempools`).

The code comes from Nitzan Mordechai (part of
ede37edd79a9d5560dfb417ec176327edfc0e4a3).

Fixes: https://tracker.ceph.com/issues/55982
Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
(cherry picked from commit 8f1c8a7309976098644bb978d2c1095089522846)

src/osd/PeeringState.cc

index c8483ac55c46bad3a13ee66f71a6c60f55c251d8..9709f3ce1444ac5550029f2f4ec079a39ce1b42d 100644 (file)
@@ -4234,6 +4234,8 @@ void PeeringState::append_log(
 
   psdout(10) << __func__ << " approx pg log length =  "
             << pg_log.get_log().approx_size() << dendl;
+  psdout(10) << __func__ << " dups pg log length =  "
+            << pg_log.get_log().dups.size() << dendl;
   psdout(10) << __func__ << " transaction_applied = "
             << transaction_applied << dendl;
   if (!transaction_applied || async)