mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #259] Strange Bug: Creating folder "showshow" results in unwriteable folder. #134
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#134
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 @Cat5TV on GitHub (Sep 10, 2015).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/259
Encountered a very strange bug (I'm assuming it's a bug) in creating a folder specifically named "showshow". No matter what, if I make a folder with that name under s3fs, I get a folder where NO FILE can be written. All files placed in this folder simply end up being 0 bytes (glad I caught this!)
It is not a Linux permissions issue.
Check it out:
user@server:
/s3fs-mountpoint$ mkdir showshow/s3fs-mountpoint$ cd showshowuser@server:
user@server:
/s3fs-mountpoint/showshow$ touch test/s3fs-mountpoint/showshow$ cd ..touch: closing `test': Bad file descriptor
user@server:
user@server:
/s3fs-mountpoint$ mkdir show/s3fs-mountpoint$ cd showuser@server:
user@server:
/s3fs-mountpoint/show$ touch test/s3fs-mountpoint/show$ lsuser@server:
test
user@server:~/s3fs-mountpoint/show$
Weird eh? Why would this be?
Thanks!!
@gaul commented on GitHub (Sep 10, 2015):
@Cat5TV This works for me. Can you retest this running s3fs with the
-d -d -f -o f2 -o curldbgflags?@Cat5TV commented on GitHub (Sep 10, 2015):
Thanks @andrewgaul - I'm using fstab. What would you like me to try?
@gaul commented on GitHub (Sep 10, 2015):
@Cat5TV You want mount without fstab for this -- we use the flags to dump debug output so we can further troubleshoot.
@Cat5TV commented on GitHub (Sep 10, 2015):
Gives me "fuse: unknown option `f2' "
S3FS version 1.67
Yes, yes... I'll upgrade when I can replace the server, but it's operating on a live server.
:)
Thanks!
@gaul commented on GitHub (Sep 10, 2015):
Sorry, 1.67 precedes my involvement in the project and later versions likely address your issue. I recommend upgrading to 1.79.
@ggtakec commented on GitHub (Sep 13, 2015):
"f2" option was added after 1.67 because raw level debugging message on foreground mode.
The problem that the file size is zero, has occurred mainly such as communication timeout as a cause.
(Of course, it is not only it)
Please use the latest version that fixes a lot of problems.
We hope that it is the bes way to solve this issue.
Best Regards,
@Cat5TV commented on GitHub (Sep 14, 2015):
Thanks. Yes, I'll have to update the OS in order to do that. It was just a strange thing. I just went with a different folder name for now. :)