mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #846] i have some problems about how to checkout my backup #493
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#493
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @linux0x5c on GitHub (Oct 29, 2018).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/846
Issue1: I used to use s3fs mounts the bucket on my system, if I use cp or tar and other tools to backup my system, I don't know how to judge, my backup is complete transmission to the aws s3, is there any way I can go to judgment, such as through HTTP code or any other return value, the etag method seems not very common, for multiupload etag md5 value is not the object.
Issue2: I didn't understand max_stat_cache_size in the option, but what cache does that mean? Can you give me an example?
I am looking forward to your answer. Thank you very much.
@gaul commented on GitHub (Feb 2, 2019):
Issue 1: could you just check the exit code of
cpviaecho $? It will be non-zero if an error occurred.Issue 2: s3fs caches object metadata from S3 since fetching it can take a hundred milliseconds or more. Access is instantaneous when the entry is present in the cache. To limit memory use, s3fs limits the maximum number of entries. This cache is ephemeral and repopulates when s3fs restarts.
@linux0x5c commented on GitHub (Feb 11, 2019):
I had getted it,thanks for your answer.