Hello,
Could you please explain how to interpret the -stats option output for the backup and check commands?
> duplicacy backup -stats
Backup for E:\Data at revision 5 completed
Files: 4108 total, 6,642M bytes; 2460 new, 6,218M bytes
File chunks: 1383 total, 6,649M bytes; 243 new, 1,202M bytes, 1,123M bytes uploaded
Metadata chunks: 3 total, 1,160K bytes; 3 new, 1,160K bytes, 507K bytes uploaded
All chunks: 1386 total, 6,650M bytes; 246 new, 1,203M bytes, 1,123M bytes uploaded
Total running time: 03:52:53
I understand that I have 4108 files (6642MB) in the snapshot of them 2460 (6218MB) are new.
File chunks: 1383 (6649MB) total, of them 243 are new (Size of the chunks is 1202MB and 1123MB uploaded).
So even though I added 6218MB to the snapshot, due to deduplication only 1202MB was new content and of them only 1123MB was uploaded due to compression, is it right?
> duplicacy check -stats
Storage set to b2://snapshot1-storage
Listing all chunks
All chunks referenced by snapshot snapshot1 at revision 1 exist
All chunks referenced by snapshot snapshot1 at revision 2 exist
All chunks referenced by snapshot snapshot1 at revision 3 exist
All chunks referenced by snapshot snapshot1 at revision 4 exist
All chunks referenced by snapshot snapshot1 at revision 5 exist
Snapshot snapshot1 at revision 1: 1045 files (202,980K bytes), 179,490K total chunk bytes, 104K unique chunk bytes
Snapshot snapshot1 at revision 2: 1042 files (198,424K bytes), 179,489K total chunk bytes, 104K unique chunk bytes
Snapshot snapshot1 at revision 3: 1446 files (201,274K bytes), 180,699K total chunk bytes, 145K unique chunk bytes
Snapshot snapshot1 at revision 4: 1648 files (434,562K bytes), 401,626K total chunk bytes, 169K unique chunk bytes
Snapshot snapshot1 at revision 5: 4108 files (6,642M bytes), 5,555M total chunk bytes, 5,163M unique chunk bytes
Snapshot snapshot1 all revisions: 5,555M total chunk bytes, 5,555M unique chunk bytes
The results of the check command seems to conflict with the results of the backup commands.
On revision 5 there are 4108 files (6642MB, which is fine), but 5555MB of storage used. Of this storage 5163MB are unique.
Subtraction of revision 4 from 5 (unique bytes or not), gives around 5000MB of upload, which seems to conflict with the results of the backup command, can you explain (Can you also better explain the meaning of unique bytes)?
Thank you very much.