Skip to content

Commit 9565c7d

Browse files
Add Retries section to README (#671)
## Summary - Added a dedicated "Retries" section to the README, placed between "Paginated responses" and "Single-Sign-On (SSO) with OAuth" - The README introduction already mentions that the SDK performs "intelligent retries," but there was no dedicated section explaining the retry behavior - Added corresponding TOC entry and updated NEXT_CHANGELOG.md ## Test plan - [x] Verify the new TOC entry links correctly to the Retries section - [x] Verify the Retries section renders correctly in GitHub markdown - [x] Verify NEXT_CHANGELOG.md has the documentation entry 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0a4469a commit 9565c7d

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
@@ -12,6 +12,8 @@
1212

1313
### Documentation
1414

15+
* Added "Retries" section to README.
16+
1517
### Internal Changes
1618

1719
### 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)