Skip to content

Commit 55889f7

Browse files
Add Retries section to README
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ffbfe37 commit 55889f7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

NEXT_CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
### Documentation
1212

13+
* Added "Retries" section to README.
14+
1315
### Internal Changes
1416

1517
### API Changes

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The Databricks SDK for Java includes functionality to accelerate development wit
1313
- [Code examples](#code-examples)
1414
- [Long-running operations](#long-running-operations)
1515
- [Paginated responses](#paginated-responses)
16+
- [Retries](#retries)
1617
- [Single-sign-on with OAuth](#single-sign-on-sso-with-oauth)
1718
- [Error handling](#error-handling)
1819
- [Logging](#logging)
@@ -340,6 +341,10 @@ summary.stream()
340341
.forEach(jobSummary -> LOGGER.info("Latest: {}", jobSummary));
341342
```
342343

344+
## Retries
345+
346+
The SDK automatically retries failed requests that are safe to retry. This includes HTTP 429 (Too Many Requests) and 503 (Service Unavailable) responses, as well as network-level errors such as connection resets and timeouts. The SDK uses a backoff strategy with jitter between retry attempts to avoid overwhelming the service. Retry behavior can be adjusted through the SDK configuration.
347+
343348
## Single-Sign-On (SSO) with OAuth
344349

345350
### Authorization Code flow with PKCE

0 commit comments

Comments
 (0)