Hey everyone,
I’ve recently set up my first backup using duplicacy doing, so I initialized my Backup folder using this command: duplicacy init -e MyBackup /mnt/user/Duplicacy
.
Every time I start backing up my data using this command duplicacy backup -stats
I can see that my backup folder grows by roughly the same amount, meaning that the backups which has been made are not incremental ones but rather full ones. I’ve already compared some files using duplicacy diff
and could not find a reason why duplicacy had to back up every file again and again. Also, when backing up the same data using restic, the incremental snapshots are way smaller.
As an example my initial data is around 1.4 GB after running 3 backups in duplicacy my backup’s folder is around 3 GB large:
duplicacy check -stats
Storage set to /mnt/user/Duplicacy
Listing all chunks
1 snapshots and 3 revisions
Total chunk size is 3,035M in 751 chunks
All chunks referenced by snapshot MyBackup at revision 1 exist
All chunks referenced by snapshot MyBackup at revision 2 exist
All chunks referenced by snapshot MyBackup at revision 3 exist
Snapshot MyBackup at revision 1: 3091 files (1,626M bytes), 1013,668K total chunk bytes, 239K unique chunk bytes
Snapshot MyBackup at revision 2: 3413 files (2,616M bytes), 1,993M total chunk bytes, 295K unique chunk bytes
Snapshot MyBackup at revision 3: 3626 files (3,620M bytes), 3,012M total chunk bytes, 1,041M unique chunk bytes
Snapshot MyBackup all revisions: 3,035M total chunk bytes, 3,035M unique chunk bytes
Compared to restic where 3 backups of my initial data, are in total only about 800 MB.
Can someone explain to me what I am doing wrong?
Thanks in advance and happy holidays