mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #1581] Mount hangs after initial request receives HTTP 100 Continue #829
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#829
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 @mun1r0b0t on GitHub (Feb 19, 2021).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/1581
Additional Information
The following information is very important in order to help us to help you. Omission of the following details may delay your support request or receive no attention at all.
Keep in mind that the commands we provide to retrieve information are oriented to GNU/Linux Distributions, so you could need to use others if you use s3fs on macOS or BSD
Version of s3fs being used (s3fs --version)
Version of fuse being used (pkg-config --modversion fuse, rpm -qi fuse, dpkg -s fuse)
Kernel information (uname -r)
GNU/Linux Distribution, if applicable (cat /etc/os-release)
s3fs command line used, if applicable
/etc/fstab entry, if applicable
s3fs syslog messages (grep s3fs /var/log/syslog, journalctl | grep s3fs, or s3fs outputs)
if you execute s3fs with dbglevel, curldbg option, you can get detail debug messages
Details about issue
S3 bucket is mounted to a mount point inside a docker image. The output of the commands above is from within the image. s3fs is compiled from source as part of the docker build after checking out v1.88 tag from the git repo.
Basically, the mount hangs after the output listed above. In this state, I can see the mount listed in the output of
mount. But if I try to runlsor any other command on the mount point it also hangs. The only way to stop this is withkill -9. Even hitting Ctrl+C doesn't terminate the process.I noticed when leaving the container up overnight, that the command eventually moves forward, but the same issue then occurs when trying to read from the files.
Please let me know if you need more info or any suggestions on what's wrong.
@adamstrawson commented on GitHub (Mar 1, 2021):
We're encountering this same issue too, under the same version.
Only difference here is the OS version, below if it helps with troubleshooting;
@gaul commented on GitHub (Mar 7, 2021):
Which S3 server are you testing with, AWS or another implementation? If the latter I suspect some buggy behavior in the server since AWS works for me. libcurl does not have an obvious way to disable
Expected: 100-continuealthough they discussed disabling it by default a few years ago. Can you try adding:to
S3fsCurl::PutHeadRequest? Maybe this is something s3fs should do by default or at least add a flag.@adamstrawson commented on GitHub (Mar 7, 2021):
@gaul For me, we were using AWS (Region:
eu-west-1).Wasn't doing anything else out the ordinary for a standard setup based on the documentation.
@giafar commented on GitHub (Jun 15, 2021):
Same behaviour here.
S3FS package is installed via
amazon-linux-extras install epel ; yum install s3fs-fuseand the docker image is anamazonlinux:latest.Any help is appreciated
OS
Kernel version
s3fs version
s3fs mount command
@jvassev commented on GitHub (Jul 10, 2021):
I can confirm the same with V1.89 on AmazonLinux. I performed the same request with curl to see if it can handle AWS's implementation as doubted in https://github.com/s3fs-fuse/s3fs-fuse/issues/1581#issuecomment-792189941
@maresb commented on GitHub (Aug 10, 2021):
I'm seeing this too. Reverting to 1.87 seems to solve the problem for me.