You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran with sudo -S -E geesefs -o allow_other --cache-to-disk-hits 0 --memory-limit 1000 --endpoint "$s3_endpoint" --file-mode=0444 --dir-mode=0777 "$bucket" "$bucket_path";
I have 2 quetsions.
What is the --cache parameter used for? What happens if I don't specify this parameter? How do I make it cache on the mounted geesefs directory?
By setting to --cache-to-disk-hits 0 I was expecting the cache any file on its first time read. Afterwards, I would expect the read operation of the file to be much faster since it will be stored on local disk, however the subsequent reads seem to be slow, and tries to fetch the file online from s3 again. What should I do to make geesefs do the behavior that I mentioned?
Thanks for developing such a useful tool!
The text was updated successfully, but these errors were encountered:
specifying --cache parameter. Nothing seems to be stored in directory.
decreasing --memory-limit 128. Nothing seems to be cached.
I am mounting a S3 bucket of images, and I expect images being used to be cached in local disk on first fly and accessed from local for subsequent read ops to get fast performance.
Ran with
sudo -S -E geesefs -o allow_other --cache-to-disk-hits 0 --memory-limit 1000 --endpoint "$s3_endpoint" --file-mode=0444 --dir-mode=0777 "$bucket" "$bucket_path";
I have 2 quetsions.
What is the --cache parameter used for? What happens if I don't specify this parameter? How do I make it cache on the mounted geesefs directory?
By setting to
--cache-to-disk-hits 0
I was expecting the cache any file on its first time read. Afterwards, I would expect the read operation of the file to be much faster since it will be stored on local disk, however the subsequent reads seem to be slow, and tries to fetch the file online from s3 again. What should I do to make geesefs do the behavior that I mentioned?Thanks for developing such a useful tool!
The text was updated successfully, but these errors were encountered: