TW
TW
So guess we would need something like: - sizeof(encrypted_metadata) - encrypted_metadata (with type, level, size, csize, ... whatever), using Struct or msgpacked dict. - obfuscated, (separately) encrypted, compressed data
superseded by #6987.
i don't think the empty folders are needed, so if they bother you, you can delete them. maybe avoid running borg in parallel while you manually delete stuff in the...
should tell: - storage quota use (as we track it in hints) - storage quota set (from repo config or overridden via borg serve option) implementation: - for local repos...
From `repository.py`: ``` def log_storage_quota(self): if self.storage_quota: logger.info('Storage quota: %s out of %s used.', format_file_size(self.storage_quota_use), format_file_size(self.storage_quota)) ``` @rugk looks like quota available and actual use is already logged - if...
As it is currently implemented, the used-quota stored in the `hints` file is only loaded when a transaction is started. And why is looking into a log not a solution?...
You can run multiple borg processes in parallel, backing up to one repo per process.
no. not being able to saturate your connection with 1 borg likely comes from internal processing being single-threaded and not internally queued. but not sure how you ensure consistency. if...
Is this the first backup you are doing or is there already data in the repo from previous backups?
borg manages caching, indexes and locking based on the repo id (which is unique and random). so you can run borg on the same machine, as the same user, at...