James Bornholt
James Bornholt
https://github.com/awslabs/mountpoint-s3/pull/233
Oh neat! That will save us from dealing with the other partitions, at least. We still need to figure out access points.
Thinking about it a bit more, there's roughly three things we need to do here: 1. Correct endpoint resolution for regions outside the `aws` partition 2. Allow the customer to...
Also need to test S3 on Outposts here.
#61 will let us specify custom endpoint URLs. But some of these things work without that: - Access points can be specified using bucket aliases - Gateway VPC endpoints are...
#428 wrapped this one up, except for testing, which is in #417.
One thing we're definitely missing here is benchmarks for large directories (> one max ListObjects call).
It's exclusively fuser changes, we can't/shouldn't do it on our side.
Somewhere here we need to make sure the `mountpoint-s3-client` crate has a way to cancel inflight requests. For example, `S3GetObjectRequest` right now does nothing when dropped, so the underlying CRT...
#69 improved this by replacing one ListObjects with a HeadObject. What's left to do is to use cached state as a hint to optimize the requests here—if we already suspect...