]> git.proxmox.com Git - proxmox-backup.git/commitdiff
docs: add information about chunk order option for datastores
authorDominik Csapak <d.csapak@proxmox.com>
Thu, 20 Oct 2022 07:40:54 +0000 (09:40 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Thu, 20 Oct 2022 12:59:11 +0000 (14:59 +0200)
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
docs/storage.rst

index ed4e28f29cfc33410cbc0c61263c97c4a3f3ca66..1909bd842a945625b11ee358cb927be98eed9b37 100644 (file)
@@ -315,3 +315,26 @@ There are a few per-datastore options:
 * :ref:`Notifications <maintenance_notification>`
 * :ref:`Maintenance Mode <maintenance_mode>`
 * Verification of incoming backups
+
+Tuning
+^^^^^^
+There are some tuning related options for the datastore that are more advanced
+and only available on the CLI:
+
+* ``chunk-order``: Chunk order for verify & tape backup:
+
+  You can specify the order in which Proxmox Backup Server iterates the chunks
+  when doing a verify or backing up to tape. The two options are:
+
+  - `inode`  (default): Sorts the chunks by inode number of the filesystem before iterating
+    over them. This should be fine for most storages, especially spinning disks.
+  - `none`  Iterates the chunks in the order they appear in the
+    index file (.fidx/.didx). While this might slow down iterating on many slow
+    storages, on very fast ones (for example: NVMEs) the collecting and sorting
+    can take more time than gained through the sorted iterating.
+  This option can be set with:
+
+.. code-block:: console
+
+  # proxmox-backup-manager datastore update <storename> --tuning 'chunk-order=none'
+