From: James McClune Date: Sun, 24 Feb 2019 21:08:44 +0000 (-0500) Subject: doc: updated reference link for log based PG X-Git-Tag: v14.1.1~139^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0dc5000124de8d477039a7e5939c41a2ca927301;p=ceph-ci.git doc: updated reference link for log based PG Added :ref: label to Log Based PG page. Referenced label on Asynchronous Recovery page. Fixes: https://tracker.ceph.com/issues/38465 Signed-off-by: James McClune --- diff --git a/doc/dev/osd_internals/async_recovery.rst b/doc/dev/osd_internals/async_recovery.rst index e31f8dc7063..f0eff98b666 100644 --- a/doc/dev/osd_internals/async_recovery.rst +++ b/doc/dev/osd_internals/async_recovery.rst @@ -5,10 +5,7 @@ Asynchronous Recovery PGs in Ceph maintain a log of writes to allow speedy recovery of data. Instead of scanning all of the objects to see what is missing on each osd, we can examine the pg log to see which objects we need to -recover. See `Log Based PG`_ for more detail on this process. - -.. _`Log Based PG`: - log_based_pg.rst +recover. See :ref:`Log Based PG ` for more details on this process. Until now, this recovery process was synchronous - it blocked writes to an object until it was recovered. In contrast, backfill could allow diff --git a/doc/dev/osd_internals/log_based_pg.rst b/doc/dev/osd_internals/log_based_pg.rst index 51eb8278b3e..a1e27539151 100644 --- a/doc/dev/osd_internals/log_based_pg.rst +++ b/doc/dev/osd_internals/log_based_pg.rst @@ -1,3 +1,5 @@ +.. _log-based-pg: + ============ Log Based PG ============