James Bornholt
James Bornholt
@CrawX yes, that's the constant you'd want to modify to scale back the prefetcher's aggressiveness. We're currently looking into a more comprehensive way to limit memory usage; hope to have...
Cool refactor. I kinda thought that we'd want to use `ChecksummedBytes` to protect other stuff like SSE keys, but maybe that's more trouble than it's worth?
I like the idea of a short TL;DR at the top of that doc. Maybe beyond just showing the `--help` output, we could also briefly call out some of the...
While we don't actively test proxy support today, I expect the `HTTPS_PROXY` and `HTTP_PROXY` environment variables should work. I tried it like this: ``` export HTTPS_PROXY="http://localhost:8080" mount-s3 giab ~/mnt --no-sign-request...
Great that you got it working! I think the outstanding issue here is to consider supporting `NO_PROXY`, which [boto does](https://github.com/boto/boto/issues/1600), and therefore the AWS CLI does too. So I'll keep...
Started poking at this here: https://github.com/jamesbornholt/mountpoint-s3/tree/readdir-shadow-bug Looks like an annoying edge case where a file gets shadowed by a directory from a later ListObjectsV2 request.
Thanks for the super helpful feedback! Some of this stuff is already on our radar, including benchmarking, and we'll look into the others. We generally track future features on our...
> Yes, this is great ! However, I believe you can squeeze more performance by having a s3-mountpoint client. It is very hard to get the exact right tuning for...
We should also test unsigned requests and different profiles from #209. I think they're all similar so lumping that in here.
Unfortunately FUSE/POSIX don't give us a way to know the file size in advance (other than `copy_file_range` if you're copying from a file already in Mountpoint), so we don't have...