Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

borg2: enhance compact stats #8410

Open
ThomasWaldmann opened this issue Sep 23, 2024 · 4 comments
Open

borg2: enhance compact stats #8410

ThomasWaldmann opened this issue Sep 23, 2024 · 4 comments

Comments

@ThomasWaldmann
Copy link
Member

When building a ChunkIndex it currently starts from refcount=0 and then sets refcount=MAX_VALUE if a chunk is used.

That's how most of borg2 works now: it doesn't do refcounting anymore, just a boolean "do we have chunk X".

For better deduplication stats in borg compact, we could deviate from that in just borg compact and do precise refcounting without any additional effort.

Before persisting the ChunkIndex, we then need to set refcounts to MAX_VALUE, similar as we clean up the size values.

To consider:

  • what do we win?
  • we have the total size also in the archive metadata and can sum up all of these.
  • do we want to add per-directory stats / analytics? maybe even 2-pass stuff?
@ThomasWaldmann
Copy link
Member Author

Comment about what's interesting for practical usage: #122 (comment)

@awgcooper
Copy link

awgcooper commented Sep 26, 2024

This would definitely be useful: #122 (comment)

Question: if compression and/or obfuscation is enabled, would the size stats be given for the native file, pre-compression etc?

@awgcooper
Copy link

Something else, not sure if it relates specifically to this: let's say I have a specific file backed up. I know this because it appears in a list contents of the most recent archive. Let's say I wanted to eliminate this file from the whole repo, how would I do that. Would I simply delete the first instance of it being backup up and by doing so that would automatically eliminate all dedups? If so, how would I find it? Fusermout?

@ThomasWaldmann
Copy link
Member Author

@awgcooper No, it does not work like that.

But you can use borg recreate to rewrite all the archives that contain the unwanted file (or the directory). Just be very careful with that and first use --dry-run --list to see if it does what you want.

@ThomasWaldmann ThomasWaldmann changed the title enhance borg2 compact stats borg2: enhance compact stats Oct 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants