Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/usage/kopia/backup-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,7 @@ policies that go beyond what's possible with inline configuration.
"keepWeekly": 4,
"keepMonthly": 12,
"keepYearly": 3
"ignoreIdenticalSnapshots": false
},
"compression": {
"compressor": "zstd",
Expand Down Expand Up @@ -738,11 +739,13 @@ It's applied using ``kopia policy set --global`` command:
"keepDaily": 30,
"keepWeekly": 8,
"keepMonthly": 24,
"keepYearly": 10
"keepYearly": 10,
"ignoreIdenticalSnapshots": false
},
"compression": {
"compressor": "zstd",
"compressionLevel": 3
"compressionLevel": 3,
"neverCompress": []
},
"files": {
"ignore": [
Expand Down Expand Up @@ -1950,4 +1953,4 @@ Example: Complete Backup with Additional Args
- "--progress-interval=1000"

For comprehensive documentation on additional arguments, see :doc:`additional-args`.
kubectl exec -it $POD -- kopia content stats
kubectl exec -it $POD -- kopia content stats
4 changes: 2 additions & 2 deletions docs/usage/kopia/database_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ For future complex policy requirements (not yet available):
"keepDaily": 30,
"keepWeekly": 8,
"keepMonthly": 24,
"keepAnnual": 5
"keepYearly": 5
},
"compression": {
"compressor": "zstd",
Expand Down Expand Up @@ -793,4 +793,4 @@ backups that only transfer changed data blocks.
making it easier to manage centralized backup infrastructure.

**Fast Restores**: Kopia's architecture enables fast partial and full restores without
needing to download entire backup archives.
needing to download entire backup archives.
Loading