Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iml-backup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
iml-backup
Merge requests
!32
5046 finetune restic params
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
5046 finetune restic params
5046-finetune-restic-params
into
master
Overview
0
Commits
8
Pipelines
0
Changes
6
Merged
Hahn Axel (hahn)
requested to merge
5046-finetune-restic-params
into
master
3 years ago
Overview
0
Commits
8
Pipelines
0
Changes
6
Expand
0
0
Merge request reports
Compare
master
version 4
3a49de99
3 years ago
version 3
a1906589
3 years ago
version 2
e8e33809
3 years ago
version 1
28a5b728
3 years ago
master (base)
and
latest version
latest version
524bc523
8 commits,
3 years ago
version 4
3a49de99
7 commits,
3 years ago
version 3
a1906589
6 commits,
3 years ago
version 2
e8e33809
5 commits,
3 years ago
version 1
28a5b728
4 commits,
3 years ago
6 files
+
84
−
46
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
docs/30_Configuration/30_Filetransfer.md
+
12
−
4
Options
@@ -114,11 +114,16 @@ If your /root partition has a limited size and/ or you have a lot of files
`restic_cachedir = [full path]`
The default verbose of IML backup for restic is 2. During file transfer
this shows unchanged/ new/ deleted files. Change it to a less value
to generate less log data.
Restic by default stores file indexes locally. To save space in
`restic_cachedir`
you can disable the file index but the backup will run much slower.
`restic_verbose = 2`
`restic_nochache = false`
The default verbose of IML backup for restic is 0.
If you want to see unchanged/ new/ deleted files set it to "2". But This generates
larger logs in [installdir]/logs/.
`restic_verbose = 0`
A file transfer can be tagged. Each restic backup gets a defined tag
@@ -167,8 +172,11 @@ is a full backup and all following runs make an incremental backup.
You have the possibility to keep all younger backups and have the possibility to delete
older backups but to keep N weekly, monthly and yearly snapshots.
The value for "keep-last" never deletes the last N most recent snapshots.
```
text
# prune
restic_keep-last = 5
restic_keep-hourly = 100
restic_keep-daily = 90
restic_keep-weekly = 12
Loading