GCSFileSystem 的 requests_timeout 参数缺少文档
Documentation missing for the requests_timeout parameter of GCSFileSystem
Google Cloud GCFSFileSystem 对象采用默认值为 None 的 requests_timeout
参数。此参数未记录。
我想这是我们放弃单个 GCFS 请求之前的时间。通过与记录的 cache_timeout
类比,我假设它是一个以秒为单位的浮点值,其中 None
表示没有超时。
这是正确的吗?
以秒为单位的整数值:
摘自 google.auth.transport.requests documentation:
timeout (Optional[int]): The number of seconds to wait for a
response from the server. If not specified or if None, the
requests default timeout will be used.
根据gcsfs.core
documentation.
在第490行调用
编辑: 默认超时为 120 秒,如 _DEFAULT_TIMEOUT
所定义(感谢 @John Hanley 添加此信息)
Google Cloud GCFSFileSystem 对象采用默认值为 None 的 requests_timeout
参数。此参数未记录。
我想这是我们放弃单个 GCFS 请求之前的时间。通过与记录的 cache_timeout
类比,我假设它是一个以秒为单位的浮点值,其中 None
表示没有超时。
这是正确的吗?
以秒为单位的整数值:
摘自 google.auth.transport.requests documentation:
timeout (Optional[int]): The number of seconds to wait for a
response from the server. If not specified or if None, the
requests default timeout will be used.
根据gcsfs.core
documentation.
编辑: 默认超时为 120 秒,如 _DEFAULT_TIMEOUT
所定义(感谢 @John Hanley 添加此信息)