The default instance has everything set to sensible defaults:
The default service address (redis.googleapis.com) and default port (443) are used.
Credentials are acquired automatically through Application Default Credentials.
Retries are configured for idempotent methods but not for non-idempotent methods.
The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.
For example, to set the RetrySettings of getCluster:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_libraryCloudRedisClusterStubSettings.BuildercloudRedisClusterSettingsBuilder=CloudRedisClusterStubSettings.newBuilder();cloudRedisClusterSettingsBuilder.getClusterSettings().setRetrySettings(cloudRedisClusterSettingsBuilder.getClusterSettings().getRetrySettings().toBuilder().setInitialRetryDelayDuration(Duration.ofSeconds(1)).setInitialRpcTimeoutDuration(Duration.ofSeconds(5)).setMaxAttempts(5).setMaxRetryDelayDuration(Duration.ofSeconds(30)).setMaxRpcTimeoutDuration(Duration.ofSeconds(60)).setRetryDelayMultiplier(1.3).setRpcTimeoutMultiplier(1.5).setTotalTimeoutDuration(Duration.ofSeconds(300)).build());CloudRedisClusterStubSettingscloudRedisClusterSettings=cloudRedisClusterSettingsBuilder.build();
To configure the RetrySettings of a Long Running Operation method, create an OperationTimedPollAlgorithm object and update the RPC's polling algorithm. For example, to configure the RetrySettings for updateCluster:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_libraryCloudRedisClusterStubSettings.BuildercloudRedisClusterSettingsBuilder=CloudRedisClusterStubSettings.newBuilder();TimedRetryAlgorithmtimedRetryAlgorithm=OperationalTimedPollAlgorithm.create(RetrySettings.newBuilder().setInitialRetryDelayDuration(Duration.ofMillis(500)).setRetryDelayMultiplier(1.5).setMaxRetryDelayDuration(Duration.ofMillis(5000)).setTotalTimeoutDuration(Duration.ofHours(24)).build());cloudRedisClusterSettingsBuilder.createClusterOperationSettings().setPollingAlgorithm(timedRetryAlgorithm).build();
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-05 UTC."],[],[]]