mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #531] confused about put file #299
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#299
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 @ghost on GitHub (Feb 9, 2017).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/531
when I use dd in the mount point dir create a file, it seems the s3fs do the same thing 3 times. as the log show (returning ENOENT)
s3fs.cpp:s3fs_getattr(808): [path=/test.txt12]
[INF] curl.cpp:HeadRequest(2486): [tpath=/test.txt12]
[INF] curl.cpp:PreHeadRequest(2423): [tpath=/test.txt12][bpath=][save=][sseckeypos=-1]
[INF] curl.cpp:prepare_url(4175): URL is http://10.212.148.253:80/bucket/test.txt12
[INF] curl.cpp:prepare_url(4207): URL changed is http://10.212.148.253:80/bucket/test.txt12
[INF] curl.cpp:RequestPerform(1932): HTTP response code 404 was returned, returning ENOENT
[INF] curl.cpp:HeadRequest(2486): [tpath=/test.txt12/]
[INF] curl.cpp:PreHeadRequest(2423): [tpath=/test.txt12/][bpath=][save=][sseckeypos=-1]
[INF] curl.cpp:prepare_url(4175): URL is http://10.212.148.253:80/bucket/test.txt12/
[INF] curl.cpp:prepare_url(4207): URL changed is http://10.212.148.253:80/bucket/test.txt12/
[INF] curl.cpp:RequestPerform(1932): HTTP response code 404 was returned, returning ENOENT
[INF] curl.cpp:HeadRequest(2486): [tpath=/test.txt12_$folder$]
[INF] curl.cpp:PreHeadRequest(2423): [tpath=/test.txt12_$folder$][bpath=][save=][sseckeypos=-1]
[INF] curl.cpp:prepare_url(4175): URL is http://10.212.148.253:80/bucket/test.txt12_%24folder%24
[INF] curl.cpp:prepare_url(4207): URL changed is http://10.212.148.253:80/bucket/test.txt12_%24folder%24
[INF] curl.cpp:RequestPerform(1932): HTTP response code 404 was returned, returning ENOENT
[INF] s3fs.cpp:list_bucket(2433): [path=/test.txt12]
[INF] curl.cpp:ListBucketRequest(2906): [tpath=/test.txt12]
[INF] curl.cpp:prepare_url(4175): URL is http://10.212.148.253:80/bucket?delimiter=/&max-keys=2&prefix=test.txt12/
[INF] curl.cpp:prepare_url(4207): URL changed is http://10.212.148.253:80/bucket/?delimiter=/&max-keys=2&prefix=test.txt12/
[INF] curl.cpp:RequestPerform(1910): HTTP response code 200
[WAN] s3fs.cpp:append_objects_from_xml_ex(2531): contents_xp->nodesetval is empty.
[WAN] s3fs.cpp:append_objects_from_xml_ex(2531): contents_xp->nodesetval is empty
why it dose 3 times every time ?