Michael Eischer
Michael Eischer
Can you please explain why retention policies would be a problem? Object Lock doesn't prevent you from marking files as deleted but only from actually deleting all versions. As lock...
This should already work perfectly fine (at least the rest-server part) by setting the necessary options at the container.
You should basically be able to pick any uid/gid. Just make sure that it matches what's used for the mounted volumes. If someone want to extend the docs, feel free...
Just a comment without having looked at the PR in more detail: statx is only available since Linux 4.11, which means that we need a fallback for older kernel versions.
> I think in a further round of refactoring we should change the fs.FS API to provide a Stat that returns a custom FileInfo type, so that we can merge...
The ExtendedFileInfo refactor is now available at https://github.com/restic/restic/pull/5146
Do you want to continue with this PR or should we close it?
The rclone and B2 backends are entirely unrelated. The description so far rather sounds like rclone got stuck completely. To debug this further, we'd need the stacktrace from restic when...
Judging from the stacktraces restic failed to start rclone and is stuck waiting for it to exit. Which is rather weird as restic kills rclone before doing that. Are you...
Currently the blob compression and hashing is only parallelized for the `backup` command, for other commands like `prune` the concurrency is limited by the number of used backend connections. The...