You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently (beta12), borg2 check just deletes the chunks index cached in the repo. This is because borg check --repair might have deleted some invalid repo objects, thus the cached chunks index is not uptodate anymore. After that, first access to the repo will rebuild the chunks index cache (slow).
Guess we could just build and cache a new chunks index within borg check --repair and maybe also in borg check without --repair.
The text was updated successfully, but these errors were encountered:
It builds a ChunkIndex in the repository part of the check (for close to zero addtl. cost) and reuses it in the archives part (saving the slow rebuild there we had before).
After the archives part, it still kills the ChunkIndex and triggers another rebuild by next operation though.
Currently (beta12), borg2 check just deletes the chunks index cached in the repo. This is because borg check --repair might have deleted some invalid repo objects, thus the cached chunks index is not uptodate anymore. After that, first access to the repo will rebuild the chunks index cache (slow).
Guess we could just build and cache a new chunks index within borg check --repair and maybe also in borg check without --repair.
The text was updated successfully, but these errors were encountered: