mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #1010] Sub-object caching #555
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#555
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 @cafarm on GitHub (Apr 10, 2019).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/1010
Is s3fs capable of sub-object caching? Meaning if I have a large object and I only read a portion of it, can s3fs cache just that portion?
I've been doing a bit of experimenting but I've never seen anything show up in the cache folder even when I read an entire file.
@ggtakec commented on GitHub (Apr 16, 2019):
If you open () and read () a file, s3fs will perform partial download according to the range.
And if you specify use_cache, partially downloaded content will be stored under that directory.
(The cache file is a file with "holes" using truncate)
@gaul commented on GitHub (Feb 3, 2020):
I believe @ggtakec answered this. Please reopen if I misunderstand.