]> git.proxmox.com Git - proxmox-backup.git/blob - docs/backup-client.rst
Merge branch 'master' of ssh://proxdev.maurer-it.com/rust/proxmox-backup
[proxmox-backup.git] / docs / backup-client.rst
1 Backup Client Usage
2 ===================
3
4 The command line client is called :command:`proxmox-backup-client`.
5
6
7 Repository Locations
8 --------------------
9
10 The client uses the following notation to specify a datastore repository
11 on the backup server.
12
13 [[username@]server[:port]:]datastore
14
15 The default value for ``username`` is ``root@pam``. If no server is specified,
16 the default is the local host (``localhost``).
17
18 You can specify a port if your backup server is only reachable on a different
19 port (e.g. with NAT and port forwarding).
20
21 Note that if the server is an IPv6 address, you have to write it with square
22 brackets (for example, `[fe80::01]`).
23
24 You can pass the repository with the ``--repository`` command line option, or
25 by setting the ``PBS_REPOSITORY`` environment variable.
26
27 Here some examples of valid repositories and the real values
28
29 ================================ ================== ================== ===========
30 Example User Host:Port Datastore
31 ================================ ================== ================== ===========
32 mydatastore ``root@pam`` localhost:8007 mydatastore
33 myhostname:mydatastore ``root@pam`` myhostname:8007 mydatastore
34 user@pbs@myhostname:mydatastore ``user@pbs`` myhostname:8007 mydatastore
35 user\@pbs!token@host:store ``user@pbs!token`` myhostname:8007 mydatastore
36 192.168.55.55:1234:mydatastore ``root@pam`` 192.168.55.55:1234 mydatastore
37 [ff80::51]:mydatastore ``root@pam`` [ff80::51]:8007 mydatastore
38 [ff80::51]:1234:mydatastore ``root@pam`` [ff80::51]:1234 mydatastore
39 ================================ ================== ================== ===========
40
41 Environment Variables
42 ---------------------
43
44 ``PBS_REPOSITORY``
45 The default backup repository.
46
47 ``PBS_PASSWORD``
48 When set, this value is used for the password required for the backup server.
49 You can also set this to a API token secret.
50
51 ``PBS_ENCRYPTION_PASSWORD``
52 When set, this value is used to access the secret encryption key (if
53 protected by password).
54
55 ``PBS_FINGERPRINT`` When set, this value is used to verify the server
56 certificate (only used if the system CA certificates cannot validate the
57 certificate).
58
59
60 Output Format
61 -------------
62
63 Most commands support the ``--output-format`` parameter. It accepts
64 the following values:
65
66 :``text``: Text format (default). Structured data is rendered as a table.
67
68 :``json``: JSON (single line).
69
70 :``json-pretty``: JSON (multiple lines, nicely formatted).
71
72
73 Please use the following environment variables to modify output behavior:
74
75 ``PROXMOX_OUTPUT_FORMAT``
76 Defines the default output format.
77
78 ``PROXMOX_OUTPUT_NO_BORDER``
79 If set (to any value), do not render table borders.
80
81 ``PROXMOX_OUTPUT_NO_HEADER``
82 If set (to any value), do not render table headers.
83
84 .. note:: The ``text`` format is designed to be human readable, and
85 not meant to be parsed by automation tools. Please use the ``json``
86 format if you need to process the output.
87
88
89 .. _client_creating_backups:
90
91 Creating Backups
92 ----------------
93
94 This section explains how to create a backup from within the machine. This can
95 be a physical host, a virtual machine, or a container. Such backups may contain file
96 and image archives. There are no restrictions in this case.
97
98 .. note:: If you want to backup virtual machines or containers on Proxmox VE, see :ref:`pve-integration`.
99
100 For the following example you need to have a backup server set up, working
101 credentials and need to know the repository name.
102 In the following examples we use ``backup-server:store1``.
103
104 .. code-block:: console
105
106 # proxmox-backup-client backup root.pxar:/ --repository backup-server:store1
107 Starting backup: host/elsa/2019-12-03T09:35:01Z
108 Client name: elsa
109 skip mount point: "/boot/efi"
110 skip mount point: "/dev"
111 skip mount point: "/run"
112 skip mount point: "/sys"
113 Uploaded 12129 chunks in 87 seconds (564 MB/s).
114 End Time: 2019-12-03T10:36:29+01:00
115
116 This will prompt you for a password and then uploads a file archive named
117 ``root.pxar`` containing all the files in the ``/`` directory.
118
119 .. Caution:: Please note that the proxmox-backup-client does not
120 automatically include mount points. Instead, you will see a short
121 ``skip mount point`` notice for each of them. The idea is to
122 create a separate file archive for each mounted disk. You can
123 explicitly include them using the ``--include-dev`` option
124 (i.e. ``--include-dev /boot/efi``). You can use this option
125 multiple times for each mount point that should be included.
126
127 The ``--repository`` option can get quite long and is used by all
128 commands. You can avoid having to enter this value by setting the
129 environment variable ``PBS_REPOSITORY``. Note that if you would like this to remain set
130 over multiple sessions, you should instead add the below line to your
131 ``.bashrc`` file.
132
133 .. code-block:: console
134
135 # export PBS_REPOSITORY=backup-server:store1
136
137 After this you can execute all commands without specifying the ``--repository``
138 option.
139
140 One single backup is allowed to contain more than one archive. For example, if
141 you want to backup two disks mounted at ``/mnt/disk1`` and ``/mnt/disk2``:
142
143 .. code-block:: console
144
145 # proxmox-backup-client backup disk1.pxar:/mnt/disk1 disk2.pxar:/mnt/disk2
146
147 This creates a backup of both disks.
148
149 The backup command takes a list of backup specifications, which
150 include the archive name on the server, the type of the archive, and the
151 archive source at the client. The format is:
152
153 <archive-name>.<type>:<source-path>
154
155 Common types are ``.pxar`` for file archives, and ``.img`` for block
156 device images. To create a backup of a block device run the following command:
157
158 .. code-block:: console
159
160 # proxmox-backup-client backup mydata.img:/dev/mylvm/mydata
161
162
163 Excluding files/folders from a backup
164 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
165
166 Sometimes it is desired to exclude certain files or folders from a backup archive.
167 To tell the Proxmox Backup client when and how to ignore files and directories,
168 place a text file called ``.pxarexclude`` in the filesystem hierarchy.
169 Whenever the backup client encounters such a file in a directory, it interprets
170 each line as glob match patterns for files and directories that are to be excluded
171 from the backup.
172
173 The file must contain a single glob pattern per line. Empty lines are ignored.
174 The same is true for lines starting with ``#``, which indicates a comment.
175 A ``!`` at the beginning of a line reverses the glob match pattern from an exclusion
176 to an explicit inclusion. This makes it possible to exclude all entries in a
177 directory except for a few single files/subdirectories.
178 Lines ending in ``/`` match only on directories.
179 The directory containing the ``.pxarexclude`` file is considered to be the root of
180 the given patterns. It is only possible to match files in this directory and its subdirectories.
181
182 ``\`` is used to escape special glob characters.
183 ``?`` matches any single character.
184 ``*`` matches any character, including an empty string.
185 ``**`` is used to match subdirectories. It can be used to, for example, exclude
186 all files ending in ``.tmp`` within the directory or subdirectories with the
187 following pattern ``**/*.tmp``.
188 ``[...]`` matches a single character from any of the provided characters within
189 the brackets. ``[!...]`` does the complementary and matches any single character
190 not contained within the brackets. It is also possible to specify ranges with two
191 characters separated by ``-``. For example, ``[a-z]`` matches any lowercase
192 alphabetic character and ``[0-9]`` matches any one single digit.
193
194 The order of the glob match patterns defines whether a file is included or
195 excluded, that is to say later entries override previous ones.
196 This is also true for match patterns encountered deeper down the directory tree,
197 which can override a previous exclusion.
198 Be aware that excluded directories will **not** be read by the backup client.
199 Thus, a ``.pxarexclude`` file in an excluded subdirectory will have no effect.
200 ``.pxarexclude`` files are treated as regular files and will be included in the
201 backup archive.
202
203 For example, consider the following directory structure:
204
205 .. code-block:: console
206
207 # ls -aR folder
208 folder/:
209 . .. .pxarexclude subfolder0 subfolder1
210
211 folder/subfolder0:
212 . .. file0 file1 file2 file3 .pxarexclude
213
214 folder/subfolder1:
215 . .. file0 file1 file2 file3
216
217 The different ``.pxarexclude`` files contain the following:
218
219 .. code-block:: console
220
221 # cat folder/.pxarexclude
222 /subfolder0/file1
223 /subfolder1/*
224 !/subfolder1/file2
225
226 .. code-block:: console
227
228 # cat folder/subfolder0/.pxarexclude
229 file3
230
231 This would exclude ``file1`` and ``file3`` in ``subfolder0`` and all of
232 ``subfolder1`` except ``file2``.
233
234 Restoring this backup will result in:
235
236 .. code-block:: console
237
238 ls -aR restored
239 restored/:
240 . .. .pxarexclude subfolder0 subfolder1
241
242 restored/subfolder0:
243 . .. file0 file2 .pxarexclude
244
245 restored/subfolder1:
246 . .. file2
247
248
249 .. _client_encryption:
250
251 Encryption
252 ----------
253
254 Proxmox Backup supports client-side encryption with AES-256 in GCM_
255 mode. To set this up, you first need to create an encryption key:
256
257 .. code-block:: console
258
259 # proxmox-backup-client key create my-backup.key
260 Encryption Key Password: **************
261
262 The key is password protected by default. If you do not need this
263 extra protection, you can also create it without a password:
264
265 .. code-block:: console
266
267 # proxmox-backup-client key create /path/to/my-backup.key --kdf none
268
269 Having created this key, it is now possible to create an encrypted backup, by
270 passing the ``--keyfile`` parameter, with the path to the key file.
271
272 .. code-block:: console
273
274 # proxmox-backup-client backup etc.pxar:/etc --keyfile /path/to/my-backup.key
275 Password: *********
276 Encryption Key Password: **************
277 ...
278
279 .. Note:: If you do not specify the name of the backup key, the key will be
280 created in the default location
281 ``~/.config/proxmox-backup/encryption-key.json``. ``proxmox-backup-client``
282 will also search this location by default, in case the ``--keyfile``
283 parameter is not specified.
284
285 You can avoid entering the passwords by setting the environment
286 variables ``PBS_PASSWORD`` and ``PBS_ENCRYPTION_PASSWORD``.
287
288
289 Using a master key to store and recover encryption keys
290 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
291
292 You can also use ``proxmox-backup-client key`` to create an RSA public/private
293 key pair, which can be used to store an encrypted version of the symmetric
294 backup encryption key alongside each backup and recover it later.
295
296 To set up a master key:
297
298 1. Create an encryption key for the backup:
299
300 .. code-block:: console
301
302 # proxmox-backup-client key create
303 creating default key at: "~/.config/proxmox-backup/encryption-key.json"
304 Encryption Key Password: **********
305 ...
306
307 The resulting file will be saved to ``~/.config/proxmox-backup/encryption-key.json``.
308
309 2. Create an RSA public/private key pair:
310
311 .. code-block:: console
312
313 # proxmox-backup-client key create-master-key
314 Master Key Password: *********
315 ...
316
317 This will create two files in your current directory, ``master-public.pem``
318 and ``master-private.pem``.
319
320 3. Import the newly created ``master-public.pem`` public certificate, so that
321 ``proxmox-backup-client`` can find and use it upon backup.
322
323 .. code-block:: console
324
325 # proxmox-backup-client key import-master-pubkey /path/to/master-public.pem
326 Imported public master key to "~/.config/proxmox-backup/master-public.pem"
327
328 4. With all these files in place, run a backup job:
329
330 .. code-block:: console
331
332 # proxmox-backup-client backup etc.pxar:/etc
333
334 The key will be stored in your backup, under the name ``rsa-encrypted.key``.
335
336 .. Note:: The ``--keyfile`` parameter can be excluded, if the encryption key
337 is in the default path. If you specified another path upon creation, you
338 must pass the ``--keyfile`` parameter.
339
340 5. To test that everything worked, you can restore the key from the backup:
341
342 .. code-block:: console
343
344 # proxmox-backup-client restore /path/to/backup/ rsa-encrypted.key /path/to/target
345
346 .. Note:: You should not need an encryption key to extract this file. However, if
347 a key exists at the default location
348 (``~/.config/proxmox-backup/encryption-key.json``) the program will prompt
349 you for an encryption key password. Simply moving ``encryption-key.json``
350 out of this directory will fix this issue.
351
352 6. Then, use the previously generated master key to decrypt the file:
353
354 .. code-block:: console
355
356 # proxmox-backup-client key import-with-master-key /path/to/target --master-keyfile /path/to/master-private.pem --encrypted-keyfile /path/to/rsa-encrypted.key
357 Master Key Password: ******
358 New Password: ******
359 Verify Password: ******
360
361 7. The target file will now contain the encryption key information in plain
362 text. The success of this can be confirmed by passing the resulting ``json``
363 file, with the ``--keyfile`` parameter, when decrypting files from the backup.
364
365 .. warning:: Without their key, backed up files will be inaccessible. Thus, you should
366 keep keys ordered and in a place that is separate from the contents being
367 backed up. It can happen, for example, that you back up an entire system, using
368 a key on that system. If the system then becomes inaccessible for any reason
369 and needs to be restored, this will not be possible as the encryption key will be
370 lost along with the broken system.
371
372 It is recommended that you keep your master key safe, but easily accessible, in
373 order for quick disaster recovery. For this reason, the best place to store it
374 is in your password manager, where it is immediately recoverable. As a backup to
375 this, you should also save the key to a USB drive and store that in a secure
376 place. This way, it is detached from any system, but is still easy to recover
377 from, in case of emergency. Finally, in preparation for the worst case scenario,
378 you should also consider keeping a paper copy of your master key locked away in
379 a safe place. The ``paperkey`` subcommand can be used to create a QR encoded
380 version of your master key. The following command sends the output of the
381 ``paperkey`` command to a text file, for easy printing.
382
383 .. code-block:: console
384
385 proxmox-backup-client key paperkey --output-format text > qrkey.txt
386
387
388 Restoring Data
389 --------------
390
391 The regular creation of backups is a necessary step to avoiding data
392 loss. More importantly, however, is the restoration. It is good practice to perform
393 periodic recovery tests to ensure that you can access the data in
394 case of problems.
395
396 First, you need to find the snapshot which you want to restore. The snapshot
397 list command provides a list of all the snapshots on the server:
398
399 .. code-block:: console
400
401 # proxmox-backup-client snapshot list
402 ┌────────────────────────────────┬─────────────┬────────────────────────────────────┐
403 │ snapshot │ size │ files │
404 ╞════════════════════════════════╪═════════════╪════════════════════════════════════╡
405 │ host/elsa/2019-12-03T09:30:15Z │ 51788646825 │ root.pxar catalog.pcat1 index.json │
406 ├────────────────────────────────┼─────────────┼────────────────────────────────────┤
407 │ host/elsa/2019-12-03T09:35:01Z │ 51790622048 │ root.pxar catalog.pcat1 index.json │
408 ├────────────────────────────────┼─────────────┼────────────────────────────────────┤
409 ...
410
411 You can inspect the catalog to find specific files.
412
413 .. code-block:: console
414
415 # proxmox-backup-client catalog dump host/elsa/2019-12-03T09:35:01Z
416 ...
417 d "./root.pxar.didx/etc/cifs-utils"
418 l "./root.pxar.didx/etc/cifs-utils/idmap-plugin"
419 d "./root.pxar.didx/etc/console-setup"
420 ...
421
422 The restore command lets you restore a single archive from the
423 backup.
424
425 .. code-block:: console
426
427 # proxmox-backup-client restore host/elsa/2019-12-03T09:35:01Z root.pxar /target/path/
428
429 To get the contents of any archive, you can restore the ``index.json`` file in the
430 repository to the target path '-'. This will dump the contents to the standard output.
431
432 .. code-block:: console
433
434 # proxmox-backup-client restore host/elsa/2019-12-03T09:35:01Z index.json -
435
436
437 Interactive Restores
438 ~~~~~~~~~~~~~~~~~~~~
439
440 If you only want to restore a few individual files, it is often easier
441 to use the interactive recovery shell.
442
443 .. code-block:: console
444
445 # proxmox-backup-client catalog shell host/elsa/2019-12-03T09:35:01Z root.pxar
446 Starting interactive shell
447 pxar:/ > ls
448 bin boot dev etc home lib lib32
449 ...
450
451 The interactive recovery shell is a minimal command line interface that
452 utilizes the metadata stored in the catalog to quickly list, navigate and
453 search files in a file archive.
454 To restore files, you can select them individually or match them with a glob
455 pattern.
456
457 Using the catalog for navigation reduces the overhead considerably because only
458 the catalog needs to be downloaded and, optionally, decrypted.
459 The actual chunks are only accessed if the metadata in the catalog is not enough
460 or for the actual restore.
461
462 Similar to common UNIX shells ``cd`` and ``ls`` are the commands used to change
463 working directory and list directory contents in the archive.
464 ``pwd`` shows the full path of the current working directory with respect to the
465 archive root.
466
467 Being able to quickly search the contents of the archive is a commonly needed feature.
468 That's where the catalog is most valuable.
469 For example:
470
471 .. code-block:: console
472
473 pxar:/ > find etc/**/*.txt --select
474 "/etc/X11/rgb.txt"
475 pxar:/ > list-selected
476 etc/**/*.txt
477 pxar:/ > restore-selected /target/path
478 ...
479
480 This will find and print all files ending in ``.txt`` located in ``etc/`` or a
481 subdirectory and add the corresponding pattern to the list for subsequent restores.
482 ``list-selected`` shows these patterns and ``restore-selected`` finally restores
483 all files in the archive matching the patterns to ``/target/path`` on the local
484 host. This will scan the whole archive.
485
486 With ``restore /target/path`` you can restore the sub-archive given by the current
487 working directory to the local target path ``/target/path`` on your host.
488 By additionally passing a glob pattern with ``--pattern <glob>``, the restore is
489 further limited to files matching the pattern.
490 For example:
491
492 .. code-block:: console
493
494 pxar:/ > cd /etc/
495 pxar:/etc/ > restore /target/ --pattern **/*.conf
496 ...
497
498 The above will scan trough all the directories below ``/etc`` and restore all
499 files ending in ``.conf``.
500
501 .. todo:: Explain interactive restore in more detail
502
503 Mounting of Archives via FUSE
504 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
505
506 The :term:`FUSE` implementation for the pxar archive allows you to mount a
507 file archive as a read-only filesystem to a mountpoint on your host.
508
509 .. code-block:: console
510
511 # proxmox-backup-client mount host/backup-client/2020-01-29T11:29:22Z root.pxar /mnt/mountpoint
512 # ls /mnt/mountpoint
513 bin dev home lib32 libx32 media opt root sbin sys usr
514 boot etc lib lib64 lost+found mnt proc run srv tmp var
515
516 This allows you to access the full contents of the archive in a seamless manner.
517
518 .. note:: As the FUSE connection needs to fetch and decrypt chunks from the
519 backup server's datastore, this can cause some additional network and CPU
520 load on your host, depending on the operations you perform on the mounted
521 filesystem.
522
523 To unmount the filesystem use the ``umount`` command on the mountpoint:
524
525 .. code-block:: console
526
527 # umount /mnt/mountpoint
528
529 Login and Logout
530 ----------------
531
532 The client tool prompts you to enter the logon password as soon as you
533 want to access the backup server. The server checks your credentials
534 and responds with a ticket that is valid for two hours. The client
535 tool automatically stores that ticket and uses it for further requests
536 to this server.
537
538 You can also manually trigger this login/logout using the login and
539 logout commands:
540
541 .. code-block:: console
542
543 # proxmox-backup-client login
544 Password: **********
545
546 To remove the ticket, issue a logout:
547
548 .. code-block:: console
549
550 # proxmox-backup-client logout
551
552
553 .. _changing-backup-owner:
554
555 Changing the Owner of a Backup Group
556 ------------------------------------
557
558 By default, the owner of a backup group is the user which was used to originally
559 create that backup group (or in the case of sync jobs, ``root@pam``). This
560 means that if a user ``mike@pbs`` created a backup, another user ``john@pbs``
561 can not be used to create backups in that same backup group. In case you want
562 to change the owner of a backup, you can do so with the below command, using a
563 user that has ``Datastore.Modify`` privileges on the datastore.
564
565 .. code-block:: console
566
567 # proxmox-backup-client change-owner vm/103 john@pbs
568
569 This can also be done from within the web interface, by navigating to the
570 `Content` section of the datastore that contains the backup group and
571 selecting the user icon under the `Actions` column. Common cases for this could
572 be to change the owner of a sync job from ``root@pam``, or to repurpose a
573 backup group.
574
575
576 .. _backup-pruning:
577
578 Pruning and Removing Backups
579 ----------------------------
580
581 You can manually delete a backup snapshot using the ``forget``
582 command:
583
584 .. code-block:: console
585
586 # proxmox-backup-client snapshot forget <snapshot>
587
588
589 .. caution:: This command removes all archives in this backup
590 snapshot. They will be inaccessible and unrecoverable.
591
592
593 Although manual removal is sometimes required, the ``prune``
594 command is normally used to systematically delete older backups. Prune lets
595 you specify which backup snapshots you want to keep. The
596 following retention options are available:
597
598 ``--keep-last <N>``
599 Keep the last ``<N>`` backup snapshots.
600
601 ``--keep-hourly <N>``
602 Keep backups for the last ``<N>`` hours. If there is more than one
603 backup for a single hour, only the latest is kept.
604
605 ``--keep-daily <N>``
606 Keep backups for the last ``<N>`` days. If there is more than one
607 backup for a single day, only the latest is kept.
608
609 ``--keep-weekly <N>``
610 Keep backups for the last ``<N>`` weeks. If there is more than one
611 backup for a single week, only the latest is kept.
612
613 .. note:: Weeks start on Monday and end on Sunday. The software
614 uses the `ISO week date`_ system and handles weeks at
615 the end of the year correctly.
616
617 ``--keep-monthly <N>``
618 Keep backups for the last ``<N>`` months. If there is more than one
619 backup for a single month, only the latest is kept.
620
621 ``--keep-yearly <N>``
622 Keep backups for the last ``<N>`` years. If there is more than one
623 backup for a single year, only the latest is kept.
624
625 The retention options are processed in the order given above. Each option
626 only covers backups within its time period. The next option does not take care
627 of already covered backups. It will only consider older backups.
628
629 Unfinished and incomplete backups will be removed by the prune command unless
630 they are newer than the last successful backup. In this case, the last failed
631 backup is retained.
632
633 .. code-block:: console
634
635 # proxmox-backup-client prune <group> --keep-daily 7 --keep-weekly 4 --keep-monthly 3
636
637
638 You can use the ``--dry-run`` option to test your settings. This only
639 shows the list of existing snapshots and what actions prune would take.
640
641 .. code-block:: console
642
643 # proxmox-backup-client prune host/elsa --dry-run --keep-daily 1 --keep-weekly 3
644 ┌────────────────────────────────┬──────┐
645 │ snapshot │ keep │
646 ╞════════════════════════════════╪══════╡
647 │ host/elsa/2019-12-04T13:20:37Z │ 1 │
648 ├────────────────────────────────┼──────┤
649 │ host/elsa/2019-12-03T09:35:01Z │ 0 │
650 ├────────────────────────────────┼──────┤
651 │ host/elsa/2019-11-22T11:54:47Z │ 1 │
652 ├────────────────────────────────┼──────┤
653 │ host/elsa/2019-11-21T12:36:25Z │ 0 │
654 ├────────────────────────────────┼──────┤
655 │ host/elsa/2019-11-10T10:42:20Z │ 1 │
656 └────────────────────────────────┴──────┘
657
658 .. note:: Neither the ``prune`` command nor the ``forget`` command free space
659 in the chunk-store. The chunk-store still contains the data blocks. To free
660 space you need to perform :ref:`garbage-collection`.
661
662
663 .. _client_garbage-collection:
664
665 Garbage Collection
666 ------------------
667
668 The ``prune`` command removes only the backup index files, not the data
669 from the datastore. This task is left to the garbage collection
670 command. It is recommended to carry out garbage collection on a regular basis.
671
672 The garbage collection works in two phases. In the first phase, all
673 data blocks that are still in use are marked. In the second phase,
674 unused data blocks are removed.
675
676 .. note:: This command needs to read all existing backup index files
677 and touches the complete chunk-store. This can take a long time
678 depending on the number of chunks and the speed of the underlying
679 disks.
680
681 .. note:: The garbage collection will only remove chunks that haven't been used
682 for at least one day (exactly 24h 5m). This grace period is necessary because
683 chunks in use are marked by touching the chunk which updates the ``atime``
684 (access time) property. Filesystems are mounted with the ``relatime`` option
685 by default. This results in a better performance by only updating the
686 ``atime`` property if the last access has been at least 24 hours ago. The
687 downside is, that touching a chunk within these 24 hours will not always
688 update its ``atime`` property.
689
690 Chunks in the grace period will be logged at the end of the garbage
691 collection task as *Pending removals*.
692
693 .. code-block:: console
694
695 # proxmox-backup-client garbage-collect
696 starting garbage collection on store store2
697 Start GC phase1 (mark used chunks)
698 Start GC phase2 (sweep unused chunks)
699 percentage done: 1, chunk count: 219
700 percentage done: 2, chunk count: 453
701 ...
702 percentage done: 99, chunk count: 21188
703 Removed bytes: 411368505
704 Removed chunks: 203
705 Original data bytes: 327160886391
706 Disk bytes: 52767414743 (16 %)
707 Disk chunks: 21221
708 Average chunk size: 2486565
709 TASK OK
710
711
712 .. todo:: howto run garbage-collection at regular intervals (cron)
713
714 Benchmarking
715 ------------
716
717 The backup client also comes with a benchmarking tool. This tool measures
718 various metrics relating to compression and encryption speeds. You can run a
719 benchmark using the ``benchmark`` subcommand of ``proxmox-backup-client``:
720
721 .. code-block:: console
722
723 # proxmox-backup-client benchmark
724 Uploaded 656 chunks in 5 seconds.
725 Time per request: 7659 microseconds.
726 TLS speed: 547.60 MB/s
727 SHA256 speed: 585.76 MB/s
728 Compression speed: 1923.96 MB/s
729 Decompress speed: 7885.24 MB/s
730 AES256/GCM speed: 3974.03 MB/s
731 ┌───────────────────────────────────┬─────────────────────┐
732 │ Name │ Value │
733 ╞═══════════════════════════════════╪═════════════════════╡
734 │ TLS (maximal backup upload speed) │ 547.60 MB/s (93%) │
735 ├───────────────────────────────────┼─────────────────────┤
736 │ SHA256 checksum computation speed │ 585.76 MB/s (28%) │
737 ├───────────────────────────────────┼─────────────────────┤
738 │ ZStd level 1 compression speed │ 1923.96 MB/s (89%) │
739 ├───────────────────────────────────┼─────────────────────┤
740 │ ZStd level 1 decompression speed │ 7885.24 MB/s (98%) │
741 ├───────────────────────────────────┼─────────────────────┤
742 │ AES256 GCM encryption speed │ 3974.03 MB/s (104%) │
743 └───────────────────────────────────┴─────────────────────┘
744
745 .. note:: The percentages given in the output table correspond to a
746 comparison against a Ryzen 7 2700X. The TLS test connects to the
747 local host, so there is no network involved.
748
749 You can also pass the ``--output-format`` parameter to output stats in ``json``,
750 rather than the default table format.
751
752