I've tried various ways to set the read timeout on a s3fs.S3FileSystem
object such as
s3 = s3fs.S3FileSystem(s3_additional_kwargs={"read_timeout": 500}, config_kwargs={"read_timeout": 500} )
or
s3.read_timeout = 500
But none of them seem to be controlling the timeout as expected. Does anyone know of the correct way to set these types of parameters?
Thanks