mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #2045] some directory not shown #1033
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#1033
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 @mbensaid23 on GitHub (Oct 11, 2022).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2045
Hello
I installed s3fs on VM1 RED Hat 8.6 and mounted the s3bucket. but when i synchronize my local folder and my files i can't see all the folders, the folder is there but I don't see them it's as if the folders are hidden.
Cammand tha i used:
s3fs $SCW-BUCKET-NAME $FOLDER-TO-MOUNT -o allow_other -o passwd_file=$HOME/.passwd-s3fs -o use_path_request_style -o endpoint=fr-par -o url=https://s3.fr-par.scw.cloud
also i add uid= and gid, umask , but nothing has changed.
can you help me plz
@ggtakec commented on GitHub (Feb 12, 2023):
@mbensaid23
The default of the object(file/directory) compatibility option has been changed since V1.91.
You may need to give the compat_dir and complement_stat options.
@880831ian commented on GitHub (Apr 9, 2023):
@ggtakec Hello, I also have the same problem and would like to ask how to add compat_dir and complement_stat options
@ggtakec commented on GitHub (Apr 16, 2023):
@880831ian
You just specify
compat_dirandcomplement_statin the options when starting sfs or in fstab.Please see below for the necessity of each option.
compat_dirHere's an excerpt from the man page on the current master branch:
s3fs recognizes an object
dir/as a directory. (This is an object for directory stat information)However, if you create a directory or object with a client other than s3fs, this object will not exist.
Therefore, in such cases, specify the
compat_diroption.complement_statHere's an excerpt from the man page on the current master branch:
Specify this option if the objects in your S3 bucket do not have
x-amz-meta***headers.NOTE
From v1.91, you have to grant this option if you have a above case.
(Before that, the behavior of these options was the default, but the communication cost was too high, so the default behavior has been changed.)
I'll close this issue, if you have a problem, please reopen this.