pitrou commented on issue #40279: URL: https://github.com/apache/arrow/issues/40279#issuecomment-1971517059
Similar observations here: ```python >>> %timeit s = S3FileSystem() 1.29 ms ± 1.27 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) >>> %timeit s = S3FileSystem(anonymous=True) 1.29 ms ± 5.52 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) >>> %timeit s = S3FileSystem(anonymous=True, region='eu-west-1') 1.29 ms ± 4.86 µs per loop (mean ± std. dev. of 7 runs, 1,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]
