Skip to content

Commit 73f0acc

Browse files
Review feedback
1 parent 58a4cb7 commit 73f0acc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/blobs/storage-retry-policy-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: pauljewellmsft
66
ms.author: pauljewell
77
ms.service: azure-blob-storage
88
ms.topic: how-to
9-
ms.date: 04/29/2024
9+
ms.date: 05/03/2024
1010
ms.custom: devx-track-java, devguide-java
1111
---
1212

@@ -26,7 +26,7 @@ The following table lists the parameters available when constructing a [RequestR
2626
| --- | --- | --- | --- |
2727
| `retryPolicyType` | [RetryPolicyType](/java/api/com.azure.storage.common.policy.retrypolicytype) | Optional. The approach to use for calculating retry delays. | [EXPONENTIAL](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-exponential) |
2828
| `maxTries` | Integer | Optional. The maximum number of retry attempts before giving up. | 4 |
29-
| `tryTimeoutInSeconds` | Integer | Optional. Maximum time allowed before a request is cancelled and assumed failed. This value should be based on the bandwidth available to the host machine and proximity to the Storage service. A good starting point might be 60 seconds per MB of anticipated payload size. | Integer.MAX_VALUE (seconds) |
29+
| `tryTimeoutInSeconds` | Integer | Optional. Maximum time allowed before a request is cancelled and assumed failed. Note that the timeout applies to the operation request, not the overall operation end to end. This value should be based on the bandwidth available to the host machine and proximity to the Storage service. A good starting point might be 60 seconds per MB of anticipated payload size. | Integer.MAX_VALUE (seconds) |
3030
| `retryDelayInMs` | Long | Optional. Specifies the amount of delay to use before retrying an operation. | 4ms for [EXPONENTIAL](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-exponential), 30ms for [FIXED](/java/api/com.azure.storage.common.policy.retrypolicytype#com-azure-storage-common-policy-retrypolicytype-fixed) |
3131
| `maxRetryDelayInMs` | Long | Optional. Specifies the maximum delay allowed before retrying an operation. | 120ms |
3232
| `secondaryHost` | String | Optional. Secondary storage account endpoint to retry requests against. Before setting this value, you should understand the issues around reading stale and potentially inconsistent data. To learn more, see [Use geo-redundancy to design highly available applications](../common/geo-redundant-design.md) | None |
@@ -43,7 +43,7 @@ BlobServiceClient client = new BlobServiceClientBuilder()
4343
```
4444

4545

46-
In this example, each service request issued from the `BlobServiceClient` object uses the retry options as defined in the `RequestRetryOptions` instance. You can configure various retry strategies for service clients based on the needs of your app.
46+
In this example, each service request issued from the `BlobServiceClient` object uses the retry options as defined in the `RequestRetryOptions` instance. This policy applies to client requestsYou can configure various retry strategies for service clients based on the needs of your app.
4747

4848
## Related content
4949

0 commit comments

Comments
 (0)