mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 05:16:00 +03:00
[GH-ISSUE #2630] S3FS Mount Auto Unmounts intermittently #1254
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#1254
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 @ranga2crazyy on GitHub (Jan 8, 2025).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2630
Additional Information
Version of s3fs being used (
s3fs --version)[root@instance]# s3fs --version
Amazon Simple Storage Service File System V1.95 with OpenSSL
Copyright (C) 2010 Randy Rizun rrizun@gmail.com
License GPL2: GNU GPL version 2 https://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Version of fuse being used (
pkg-config --modversion fuse,rpm -qi fuseordpkg -s fuse)rpm -qi fuse
Name : fuse
Version : 2.9.7
Release : 19.el8
Architecture: x86_64
Install Date: Sat 04 Jan 2025 08:29:57 AM UTC
Group : Unspecified
Size : 208332
License : GPL+
Signature : RSA/SHA256, Tue 20 Feb 2024 09:31:11 AM UTC, Key ID 199e2f91fd431d51
Source RPM : fuse-2.9.7-19.el8.src.rpm
Build Date : Tue 06 Feb 2024 01:37:57 PM UTC
Build Host : x86-64-01.build.eng.rdu2.redhat.com
Relocations : (not relocatable)
Packager : Red Hat, Inc. http://bugzilla.redhat.com/bugzilla
Vendor : Red Hat, Inc.
URL : http://fuse.sf.net
Summary : File System in Userspace (FUSE) v2 utilities
Description :
With FUSE it is possible to implement a fully functional filesystem in a
userspace program. This package contains the FUSE v2 userspace tools to
mount a FUSE filesystem.
Kernel information (
uname -r)uname -r
4.18.0-553.32.1.el8_10.x86_64
GNU/Linux Distribution, if applicable (
cat /etc/os-release)Red Hat Enterprise Linux release 8.10 (Ootpa)
How to run s3fs, if applicable
[] command line
[] /etc/fstab
s3fs#dev3-data-staging /mnt_s3/dev3-data-staging fuse _netdev,stat_cache_expire=30,umask=0022,uid=airflow,gid=airflow,allow_other,compat_dir,iam_role=auto,disable_noobj_cache 0 0s3fs syslog messages (
grep s3fs /var/log/syslog,journalctl | grep s3fs, ors3fs outputs)Details about issue
We are experiencing intermittent issues with S3FS mounts on our EC2 instances. Specifically, a particular S3 bucket is frequently un-mounting unexpectedly, leading to disruptions in our production jobs.
Symptoms:
Investigation:
Logs:
Request:
Has anyone else encountered similar S3FS mount unmounting issues on EC2 instances?
If so, what were the identified root causes and how were they resolved?
Note: This issue only affects a specific S3 bucket, while other buckets mounted on the same instances remain largely unaffected.
@ggtakec commented on GitHub (Jan 19, 2025):
@ranga2crazyy
You are specifying
iam_roleoption for launching s3fs.Authentication with
iam_rolemay not work due to a bug in v1.95. (See #2612.)If possible, could you please use v1.94 or try it with the latest master branch code?
@ranga2crazyy commented on GitHub (Jan 21, 2025):
@ggtakec Thanks for the pointers.
I will update this issue with the results of my testing.