App Engine 的云存储客户端库默认重试逻辑是什么?

What is App Engine's Cloud Storage Client Library default retry logic?

我正在尝试找出 App Engine Cloud Storage Client Library 的默认重试逻辑是什么。

RetryParams docs 和上面的 link "feels" 好像有一些默认的重试逻辑。

然而 source code here 另有说明。

有人知道确切的答案吗?

谢谢

如果不指定retry_params,这里使用默认值: https://github.com/GoogleCloudPlatform/appengine-gcs-client/blob/master/python/src/cloudstorage/rest_api.py#L146

默认设置可以在这里看到: https://github.com/GoogleCloudPlatform/appengine-gcs-client/blob/master/python/src/cloudstorage/api_utils.py#L210-L215

为后代粘贴:

backoff_factor=2.0,
initial_delay=0.1,
max_delay=10.0,
min_retries=3,
max_retries=6,
max_retry_period=30.0,