mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #2358] Lack of Support for AWS S3 Transfer Acceleration in s3fs Mount Command #1164
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#1164
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 @Lmarcho on GitHub (Oct 30, 2023).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2358
Additional Information
Version of s3fs being used (
s3fs --version)Amazon Simple Storage Service File System V1.90 (commit:unknown) with GnuTLS(gcrypt)
Version of fuse being used (
pkg-config --modversion fuse,rpm -qi fuseordpkg -s fuse)fusermount3 version: 3.10.5
Kernel information (
uname -r)6.2.0-35-generic
GNU/Linux Distribution, if applicable (
cat /etc/os-release)PRETTY_NAME="Ubuntu 22.04.2 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.2 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
How to run s3fs, if applicable
sudo s3fs *****-uat-new-ui:/media -o use_cache=/tmp -o url=https://****-uat-new-ui.s3-accelerate.amazonaws.com -o endpoint=ap-south-1 -o allow_other -o uid=1001 -o gid=1001 -o mp_umask=002 -o multireq_max=10 /var/www/html/magento/pub/media
Details about issue
Issue Description
I'm attempting to mount an AWS S3 bucket using s3fs, and I'd like to make use of AWS's S3 Transfer Acceleration feature for better upload and download speeds. However, I don't see an option in s3fs to enable this feature.
Mount Command
I'm using the following mount command:
sudo s3fs *****-uat-new-ui:/media -o use_cache=/tmp -o url=https://****-uat-new-ui.s3-accelerate.amazonaws.com -o endpoint=ap-south-1 -o allow_other -o uid=1001 -o gid=1001 -o mp_umask=002 -o multireq_max=10 /var/www/html/magento/pub/media
Expected Behavior
I expect s3fs to support AWS S3 Transfer Acceleration and take advantage of the faster upload and download speeds.
Actual Behavior
Currently, it seems there is no direct way to enable Transfer Acceleration via the s3fs mount command options.
Would anyone be able to help or provide guidance on how to enable this feature with s3fs?