mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #1324] Do local files remain accessible offline? #709
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#709
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 @yashgt on GitHub (Jul 6, 2020).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/1324
If I mount a local directory and point it to an S3 bucket using s3fs, does it eventually receive the files stored in S3 and do the files remain accessible for reading even if S3 or internet is not accessible? Is there an alternative to s3fs that can serve the above requirement if s3fs does not serve it?
@ngbranitsky commented on GitHub (Jul 6, 2020):
Answers inline.
Norman Branitsky
I believe s3fs will display a transport error if the mount point is inaccessible.
Perhaps this might meet your requirements.
AWS Storage Gateway with local caching:
https://aws.amazon.com/storagegateway/file/
I believe the File Gateway will still serve files while it tries to reconnect to S3 in the background.
@gaul commented on GitHub (Jul 7, 2020):
s3fs is not intended as an offline file system. However, metadata (
-o max_stat_cache_size,-o stat_cache_expire) and data caching (-o use_cache) may allow s3fs to work offline in a limited capacity.catfs also has an open issue requesting offline support although this is not implemented.