]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
:doc: restructuredText syntax corrections.
authorJohn Wilkins <john.wilkins@inktank.com>
Thu, 6 Sep 2012 00:19:51 +0000 (17:19 -0700)
committerJohn Wilkins <john.wilkins@inktank.com>
Thu, 6 Sep 2012 00:19:51 +0000 (17:19 -0700)
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
doc/ops/manage/crush.rst

index 336133cfa2e8718d8c4bc62aeea3a1095cdd4d28..f6c9312b881f5b5bed5a95295f6d6a3bc6e29616 100644 (file)
@@ -74,10 +74,9 @@ the same fashion as with ``osd crush set ...``::
 
 where
 
-  * ``name`` is the name of the bucket to move.  (To move a device,
-    see :ref:`adjusting-crush-set`.)
+  * ``name`` is the name of the bucket to move.
   * ``loc`` is a list of ``what=where`` pairs indicating where the bucket should
-    be moved.  See :ref:`adjusting-crush-set`.
+    be moved.
 
 
 Adjusting the CRUSH weight
@@ -169,21 +168,21 @@ If you can ensure that all clients are running recent code, you can
 adjust the tunables by extracting the CRUSH map, modifying the values,
 and reinjecting it into the cluster.
 
- * Extract the latest CRUSH map::
+* Extract the latest CRUSH map::
 
-   ceph osd getcrushmap -o /tmp/crush
+       ceph osd getcrushmap -o /tmp/crush
 
- * Adjust tunables.  These values appear to offer the best behavior
-   for both large and small clusters we tested with.  You will need to
-   additionally specify the ``--enable-unsafe-tunables`` argument to
-   ``crushtool`` for this to work.  Please use this option with
-   extreme care.::
+* Adjust tunables.  These values appear to offer the best behavior
+  for both large and small clusters we tested with.  You will need to
+  additionally specify the ``--enable-unsafe-tunables`` argument to
+  ``crushtool`` for this to work.  Please use this option with
+  extreme care.::
 
-   crushtool -i /tmp/crush --set-choose-local-tries 0 --set-choose-local-fallback-tries 0 --set-choose-total-tries 50 -o /tmp/crush.new
+       crushtool -i /tmp/crush --set-choose-local-tries 0 --set-choose-local-fallback-tries 0 --set-choose-total-tries 50 -o /tmp/crush.new
 
- * Reinject modified map::
+* Reinject modified map::
 
-   ceph osd setcrushmap -i /tmp/crush.new
+       ceph osd setcrushmap -i /tmp/crush.new
 
 Legacy values
 ~~~~~~~~~~~~~