prune.rst.inc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .. IMPORTANT: this file is auto-generated from borg's built-in help, do not edit!
  2. .. _borg_prune:
  3. borg prune
  4. ----------
  5. .. code-block:: none
  6. borg [common options] prune [options] [REPOSITORY]
  7. .. only:: html
  8. .. class:: borg-options-table
  9. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  10. | **positional arguments** |
  11. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  12. | | ``REPOSITORY`` | repository to prune |
  13. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  14. | **options** |
  15. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  16. | | ``-n``, ``--dry-run`` | do not change repository |
  17. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  18. | | ``--force`` | force pruning of corrupted archives, use ``--force --force`` in case ``--force`` does not work. |
  19. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  20. | | ``-s``, ``--stats`` | print statistics for the deleted archive |
  21. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  22. | | ``--list`` | output verbose list of archives it keeps/prunes |
  23. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  24. | | ``--keep-within INTERVAL`` | keep all archives within this time interval |
  25. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  26. | | ``--keep-last``, ``--keep-secondly`` | number of secondly archives to keep |
  27. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  28. | | ``--keep-minutely`` | number of minutely archives to keep |
  29. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  30. | | ``-H``, ``--keep-hourly`` | number of hourly archives to keep |
  31. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  32. | | ``-d``, ``--keep-daily`` | number of daily archives to keep |
  33. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  34. | | ``-w``, ``--keep-weekly`` | number of weekly archives to keep |
  35. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  36. | | ``-m``, ``--keep-monthly`` | number of monthly archives to keep |
  37. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  38. | | ``--keep-13weekly`` | number of quarterly archives to keep (13 week strategy) |
  39. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  40. | | ``--keep-3monthly`` | number of quarterly archives to keep (3 month strategy) |
  41. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  42. | | ``-y``, ``--keep-yearly`` | number of yearly archives to keep |
  43. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  44. | | ``--save-space`` | work slower, but using less space |
  45. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  46. | | ``-c SECONDS``, ``--checkpoint-interval SECONDS`` | write checkpoint every SECONDS seconds (Default: 1800) |
  47. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  48. | .. class:: borg-common-opt-ref |
  49. | |
  50. | :ref:`common_options` |
  51. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  52. | **Archive filters** — Archive filters can be applied to repository targets. |
  53. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  54. | | ``-P PREFIX``, ``--prefix PREFIX`` | only consider archive names starting with this prefix. (deprecated) |
  55. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  56. | | ``-a GLOB``, ``--glob-archives GLOB`` | only consider archive names matching the glob. sh: rules apply (without actually using the sh: prefix), see "borg help patterns". |
  57. +-----------------------------------------------------------------------------+---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------+
  58. .. raw:: html
  59. <script type='text/javascript'>
  60. $(document).ready(function () {
  61. $('.borg-options-table colgroup').remove();
  62. })
  63. </script>
  64. .. only:: latex
  65. REPOSITORY
  66. repository to prune
  67. options
  68. -n, --dry-run do not change repository
  69. --force force pruning of corrupted archives, use ``--force --force`` in case ``--force`` does not work.
  70. -s, --stats print statistics for the deleted archive
  71. --list output verbose list of archives it keeps/prunes
  72. --keep-within INTERVAL keep all archives within this time interval
  73. --keep-last, --keep-secondly number of secondly archives to keep
  74. --keep-minutely number of minutely archives to keep
  75. -H, --keep-hourly number of hourly archives to keep
  76. -d, --keep-daily number of daily archives to keep
  77. -w, --keep-weekly number of weekly archives to keep
  78. -m, --keep-monthly number of monthly archives to keep
  79. --keep-13weekly number of quarterly archives to keep (13 week strategy)
  80. --keep-3monthly number of quarterly archives to keep (3 month strategy)
  81. -y, --keep-yearly number of yearly archives to keep
  82. --save-space work slower, but using less space
  83. -c SECONDS, --checkpoint-interval SECONDS write checkpoint every SECONDS seconds (Default: 1800)
  84. :ref:`common_options`
  85. |
  86. Archive filters
  87. -P PREFIX, --prefix PREFIX only consider archive names starting with this prefix. (deprecated)
  88. -a GLOB, --glob-archives GLOB only consider archive names matching the glob. sh: rules apply (without actually using the sh: prefix), see "borg help patterns".
  89. Description
  90. ~~~~~~~~~~~
  91. The prune command prunes a repository by deleting all archives not matching
  92. any of the specified retention options.
  93. Important: Repository disk space is **not** freed until you run ``borg compact``.
  94. This command is normally used by automated backup scripts wanting to keep a
  95. certain number of historic backups. This retention policy is commonly referred to as
  96. `GFS <https://en.wikipedia.org/wiki/Backup_rotation_scheme#Grandfather-father-son>`_
  97. (Grandfather-father-son) backup rotation scheme.
  98. Also, prune automatically removes checkpoint archives (incomplete archives left
  99. behind by interrupted backup runs) except if the checkpoint is the latest
  100. archive (and thus still needed). Checkpoint archives are not considered when
  101. comparing archive counts against the retention limits (``--keep-X``).
  102. If a prefix is set with -P, then only archives that start with the prefix are
  103. considered for deletion and only those archives count towards the totals
  104. specified by the rules.
  105. Otherwise, *all* archives in the repository are candidates for deletion!
  106. There is no automatic distinction between archives representing different
  107. contents. These need to be distinguished by specifying matching prefixes.
  108. If you have multiple sequences of archives with different data sets (e.g.
  109. from different machines) in one shared repository, use one prune call per
  110. data set that matches only the respective archives using the -P option.
  111. The ``--keep-within`` option takes an argument of the form "<int><char>",
  112. where char is "H", "d", "w", "m", "y". For example, ``--keep-within 2d`` means
  113. to keep all archives that were created within the past 48 hours.
  114. "1m" is taken to mean "31d". The archives kept with this option do not
  115. count towards the totals specified by any other options.
  116. A good procedure is to thin out more and more the older your backups get.
  117. As an example, ``--keep-daily 7`` means to keep the latest backup on each day,
  118. up to 7 most recent days with backups (days without backups do not count).
  119. The rules are applied from secondly to yearly, and backups selected by previous
  120. rules do not count towards those of later rules. The time that each backup
  121. starts is used for pruning purposes. Dates and times are interpreted in
  122. the local timezone, and weeks go from Monday to Sunday. Specifying a
  123. negative number of archives to keep means that there is no limit. As of borg
  124. 1.2.0, borg will retain the oldest archive if any of the secondly, minutely,
  125. hourly, daily, weekly, monthly, quarterly, or yearly rules was not otherwise
  126. able to meet its retention target. This enables the first chronological archive
  127. to continue aging until it is replaced by a newer archive that meets the
  128. retention criteria.
  129. The ``--keep-13weekly`` and ``--keep-3monthly`` rules are two different
  130. strategies for keeping archives every quarter year.
  131. The ``--keep-last N`` option is doing the same as ``--keep-secondly N`` (and it will
  132. keep the last N archives under the assumption that you do not create more than one
  133. backup archive in the same second).
  134. When using ``--stats``, you will get some statistics about how much data was
  135. deleted - the "Deleted data" deduplicated size there is most interesting as
  136. that is how much your repository will shrink.
  137. Please note that the "All archives" stats refer to the state after pruning.