pitrou commented on issue #40279: URL: https://github.com/apache/arrow/issues/40279#issuecomment-1971988027
With the caching PoC in https://github.com/apache/arrow/pull/40299 I get the following: ```python >>> %timeit s = S3FileSystem(anonymous=True) 34.2 µs ± 42.8 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each) >>> %timeit s = S3FileSystem(anonymous=True, region='eu-west-1') 32.8 µs ± 37.4 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each) >>> %timeit s = S3FileSystem() 52.5 µs ± 262 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
