You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have fork for httpfs that provide fuse based http client for specific site.
I'm try to measure speed and after some changes i get 297Mb file on 100Mb/s link
curl get this file to /dev/null 2-3 s
via fuse - 14-16 s
Firstly i see that each time remote file read only by 4K block. So maybe fuse have many allocations. Does it possible to have bigger block size ?
I did not see a way to do that in the code, nor see why you would need to do that, using #175 I get 128k and it's plenty enough to have respectable performance and reliability
I have fork for httpfs that provide fuse based http client for specific site.
I'm try to measure speed and after some changes i get 297Mb file on 100Mb/s link
curl get this file to /dev/null 2-3 s
via fuse - 14-16 s
Firstly i see that each time remote file read only by 4K block. So maybe fuse have many allocations. Does it possible to have bigger block size ?
My repo is https://github.com/vtolstov/httpfs
The text was updated successfully, but these errors were encountered: