Why is my bucket size 160G?

I’m backing-up to MinIO (S3-compat storage). MinIO is reporting my bucket size is 160G, but when I run restic stats, it reports only 16G. What is going on here?

stats only reports data referenced by snapshots. Which command did you run exactly. Have you used forget to remove snapshots without running prune?

I figured it out. I guess restic stats by default reports the “restore size” (not the total size of all of the snapshots).

Solution: restic stats --mode=raw-data :slight_smile:

1 Like