databricks-sdk-java
databricks-sdk-java copied to clipboard
[FEATURE] Control number of retries per call
Problem Statement Currently, the SDK automatically retries API calls 4 times before failing
Proposed Solution While the default is good, it would be good if we could configure the number of retries we want per call or atleast choose not to retry
something like
workspaceClient.withoutRetries().callApi()
Additional Context We have a usecase where we need to continuously call an endpoint, however if its failing, we would prefer not retrying
this is actually a good change. the whole retrystrategy isn't configurable, I would prefer to modify it.