CosmosClientBuilder Class
- java.lang.Object
- com.azure.cosmos.CosmosClientBuilder
Implements
public class CosmosClientBuilder
implements TokenCredentialTrait<CosmosClientBuilder>, AzureKeyCredentialTrait<CosmosClientBuilder>, EndpointTrait<CosmosClientBuilder>
Helper class to build CosmosAsyncClient CosmosAsyncClient and CosmosClient CosmosClient instances as logical representation of the Azure Cosmos database service.
When building client, endpoint() and key() are mandatory APIs, without these the initialization will fail.
Though consistencyLevel is not mandatory, but we strongly suggest to pay attention to this API when building client. By default, account consistency level is used if none is provided.
By default, direct connection mode is used if none specified.
Building Cosmos Async Client minimal APIs (without any customized configurations)
CosmosAsyncClient client = new CosmosClientBuilder()
.endpoint(serviceEndpoint)
.key(key)
.buildAsyncClient();
Building Cosmos Async Client with customizations
CosmosAsyncClient client = new CosmosClientBuilder()
.endpoint(serviceEndpoint)
.key(key)
.directMode(directConnectionConfig, gatewayConnectionConfig)
.consistencyLevel(ConsistencyLevel.SESSION)
.connectionSharingAcrossClientsEnabled(true)
.contentResponseOnWriteEnabled(true)
.userAgentSuffix("my-application1-client")
.preferredRegions(Collections.singletonList("West US", "East US"))
.buildAsyncClient();
Building Cosmos Sync Client minimal APIs (without any customized configurations)
CosmosClient client = new CosmosClientBuilder()
.endpoint(serviceEndpoint)
.key(key)
.buildClient();
Building Cosmos Sync Client with customizations
CosmosClient client = new CosmosClientBuilder()
.endpoint(serviceEndpoint)
.key(key)
.directMode(directConnectionConfig, gatewayConnectionConfig)
.consistencyLevel(ConsistencyLevel.SESSION)
.connectionSharingAcrossClientsEnabled(true)
.contentResponseOnWriteEnabled(true)
.userAgentSuffix("my-application1-client")
.preferredRegions(Collections.singletonList("West US", "East US"))
.buildClient();
Constructor Summary
Constructor | Description |
---|---|
CosmosClientBuilder() |
Instantiates a new Cosmos client builder. |
Method Summary
Modifier and Type | Method and Description |
---|---|
CosmosClientBuilder |
authorizationTokenResolver(CosmosAuthorizationTokenResolver cosmosAuthorizationTokenResolver)
Sets the token resolver |
CosmosAsyncClient |
buildAsyncClient()
Builds a cosmos async client with the provided properties |
CosmosClient |
buildClient()
Builds a cosmos sync client with the provided properties |
CosmosClientBuilder |
clientTelemetryConfig(CosmosClientTelemetryConfig telemetryConfig)
Returns the client telemetry config instance for this builder |
CosmosClientBuilder |
clientTelemetryEnabled(boolean clientTelemetryEnabled)
Sets the flag to enable client telemetry which will periodically collect database operations aggregation statistics, system information like cpu/memory and send it to cosmos monitoring service, which will be helpful during debugging. |
CosmosClientBuilder |
connectionSharingAcrossClientsEnabled(boolean connectionSharingAcrossClientsEnabled)
Enables connections sharing across multiple Cosmos Clients. |
CosmosClientBuilder |
consistencyLevel(ConsistencyLevel desiredConsistencyLevel)
Sets the ConsistencyLevel to be used By default, SESSION consistency will be used. |
CosmosClientBuilder |
contentResponseOnWriteEnabled(boolean contentResponseOnWriteEnabled)
Sets the boolean to only return the headers and status code in Cosmos DB response in case of Create, Update and Delete operations on Cosmos |
CosmosClientBuilder |
credential(AzureKeyCredential credential)
Sets the AzureKeyCredential to be used |
CosmosClientBuilder |
credential(TokenCredential credential)
Sets the TokenCredential used to authorize requests sent to the service. |
CosmosClientBuilder |
directMode()
Sets the default DIRECT connection configuration to be used. |
CosmosClientBuilder |
directMode(DirectConnectionConfig directConnectionConfig)
Sets the DIRECT connection configuration to be used. |
CosmosClientBuilder |
directMode(DirectConnectionConfig directConnectionConfig, GatewayConnectionConfig gatewayConnectionConfig)
Sets the DIRECT connection configuration to be used. |
CosmosClientBuilder |
endpoint(String endpoint)
Sets the Azure Cosmos DB endpoint the SDK will connect to |
CosmosClientBuilder |
endpointDiscoveryEnabled(boolean endpointDiscoveryEnabled)
Sets the flag to enable endpoint discovery for geo-replicated database accounts. |
CosmosClientBuilder |
gatewayMode()
Sets the default GATEWAY connection configuration to be used. |
CosmosClientBuilder |
gatewayMode(GatewayConnectionConfig gatewayConnectionConfig)
Sets the GATEWAY connection configuration to be used. |
CosmosClientBuilder |
key(String key)
Sets either a master or readonly key used to perform authentication for accessing resource. |
CosmosClientBuilder |
multipleWriteRegionsEnabled(boolean multipleWriteRegionsEnabled)
Sets the flag to enable writes on any regions for geo-replicated database accounts in the Azure Cosmos DB service. |
CosmosClientBuilder |
permissions(List<CosmosPermissionProperties> permissions)
Sets the permission list, which contains the resource tokens needed to access resources. |
CosmosClientBuilder |
preferredRegions(List<String> preferredRegions)
Sets the preferred regions for geo-replicated database accounts. |
CosmosClientBuilder |
readRequestsFallbackEnabled(boolean readRequestsFallbackEnabled)
Sets whether to allow for reads to go to multiple regions configured on an account of Azure Cosmos DB service. |
CosmosClientBuilder |
resourceToken(String resourceToken)
Sets a resource token used to perform authentication for accessing resource. |
CosmosClientBuilder |
sessionCapturingOverrideEnabled(boolean sessionCapturingOverrideEnabled)
Session capturing is enabled by default for SESSION. |
CosmosClientBuilder |
throttlingRetryOptions(ThrottlingRetryOptions throttlingRetryOptions)
Sets the retry policy options associated with the Document |
CosmosClientBuilder |
userAgentSuffix(String userAgentSuffix)
sets the value of the user-agent suffix. |
Methods inherited from java.lang.Object
Constructor Details
CosmosClientBuilder
public CosmosClientBuilder()
Instantiates a new Cosmos client builder.
Method Details
authorizationTokenResolver
public CosmosClientBuilder authorizationTokenResolver(CosmosAuthorizationTokenResolver cosmosAuthorizationTokenResolver)
Sets the token resolver
Parameters:
Returns:
buildAsyncClient
public CosmosAsyncClient buildAsyncClient()
Builds a cosmos async client with the provided properties
Returns:
buildClient
public CosmosClient buildClient()
Builds a cosmos sync client with the provided properties
Returns:
clientTelemetryConfig
public CosmosClientBuilder clientTelemetryConfig(CosmosClientTelemetryConfig telemetryConfig)
Returns the client telemetry config instance for this builder
Parameters:
Returns:
clientTelemetryEnabled
public CosmosClientBuilder clientTelemetryEnabled(boolean clientTelemetryEnabled)
Sets the flag to enable client telemetry which will periodically collect database operations aggregation statistics, system information like cpu/memory and send it to cosmos monitoring service, which will be helpful during debugging.
DEFAULT value is false indicating this is opt in feature, by default no telemetry collection.
Parameters:
Returns:
connectionSharingAcrossClientsEnabled
public CosmosClientBuilder connectionSharingAcrossClientsEnabled(boolean connectionSharingAcrossClientsEnabled)
Enables connections sharing across multiple Cosmos Clients. The default is false.
CosmosAsyncClient client1 = new CosmosClientBuilder()
.endpoint(serviceEndpoint1)
.key(key1)
.consistencyLevel(ConsistencyLevel.SESSION)
.connectionSharingAcrossClientsEnabled(true)
.buildAsyncClient();
CosmosAsyncClient client2 = new CosmosClientBuilder()
.endpoint(serviceEndpoint2)
.key(key2)
.consistencyLevel(ConsistencyLevel.SESSION)
.connectionSharingAcrossClientsEnabled(true)
.buildAsyncClient();
// when configured this way client1 and client2 will share connections when possible.
When you have multiple instances of Cosmos Client in the same JVM interacting to multiple Cosmos accounts, enabling this allows connection sharing in Direct mode if possible between instances of Cosmos Client. Please note, when setting this option, the connection configuration (e.g., socket timeout config, idle timeout config) of the first instantiated client will be used for all other client instances.
Parameters:
Returns:
consistencyLevel
public CosmosClientBuilder consistencyLevel(ConsistencyLevel desiredConsistencyLevel)
Sets the ConsistencyLevel to be used By default, SESSION consistency will be used.
Parameters:
Returns:
contentResponseOnWriteEnabled
public CosmosClientBuilder contentResponseOnWriteEnabled(boolean contentResponseOnWriteEnabled)
Sets the boolean to only return the headers and status code in Cosmos DB response in case of Create, Update and Delete operations on CosmosItem. If set to false (which is by default), service doesn't return payload in the response. It reduces networking and CPU load by not sending the payload back over the network and serializing it on the client. This feature does not impact RU usage for read or write operations. By-default, this is false.
Parameters:
Returns:
credential
public CosmosClientBuilder credential(AzureKeyCredential credential)
Sets the AzureKeyCredential to be used
Parameters:
Returns:
credential
public CosmosClientBuilder credential(TokenCredential credential)
Sets the TokenCredential used to authorize requests sent to the service. Refer to the Azure SDK for Java identity and authentication documentation for more details on proper usage of the TokenCredential type.
Parameters:
Returns:
directMode
public CosmosClientBuilder directMode()
Sets the default DIRECT connection configuration to be used. By default, the builder is initialized with directMode()
Returns:
directMode
public CosmosClientBuilder directMode(DirectConnectionConfig directConnectionConfig)
Sets the DIRECT connection configuration to be used. By default, the builder is initialized with directMode()
Parameters:
Returns:
directMode
public CosmosClientBuilder directMode(DirectConnectionConfig directConnectionConfig, GatewayConnectionConfig gatewayConnectionConfig)
Sets the DIRECT connection configuration to be used. gatewayConnectionConfig - represents basic configuration to be used for gateway client. Even in direct connection mode, some of the meta data operations go through gateway client, Setting gateway connection config in this API doesn't affect the connection mode, which will be Direct in this case.
Parameters:
Returns:
endpoint
public CosmosClientBuilder endpoint(String endpoint)
Sets the Azure Cosmos DB endpoint the SDK will connect to
Parameters:
Returns:
endpointDiscoveryEnabled
public CosmosClientBuilder endpointDiscoveryEnabled(boolean endpointDiscoveryEnabled)
Sets the flag to enable endpoint discovery for geo-replicated database accounts.
When EnableEndpointDiscovery is true, the SDK will automatically discover the current write and read regions to ensure requests are sent to the correct region based on the capability of the region and the user's preference.
The default value for this property is true indicating endpoint discovery is enabled.
Parameters:
Returns:
gatewayMode
public CosmosClientBuilder gatewayMode()
Sets the default GATEWAY connection configuration to be used.
Returns:
gatewayMode
public CosmosClientBuilder gatewayMode(GatewayConnectionConfig gatewayConnectionConfig)
Sets the GATEWAY connection configuration to be used.
Parameters:
Returns:
key
public CosmosClientBuilder key(String key)
Sets either a master or readonly key used to perform authentication for accessing resource.
Parameters:
Returns:
multipleWriteRegionsEnabled
public CosmosClientBuilder multipleWriteRegionsEnabled(boolean multipleWriteRegionsEnabled)
Sets the flag to enable writes on any regions for geo-replicated database accounts in the Azure Cosmos DB service.
When the value of this property is true, the SDK will direct write operations to available writable regions of geo-replicated database account. Writable regions are ordered by PreferredRegions property. Setting the property value to true has no effect until EnableMultipleWriteRegions in DatabaseAccount is also set to true.
DEFAULT value is true indicating that writes are directed to available writable regions of geo-replicated database account.
Parameters:
Returns:
permissions
public CosmosClientBuilder permissions(List
Sets the permission list, which contains the resource tokens needed to access resources.
Parameters:
Returns:
preferredRegions
public CosmosClientBuilder preferredRegions(List
Sets the preferred regions for geo-replicated database accounts. For example, "East US" as the preferred region.
When EnableEndpointDiscovery is true and PreferredRegions is non-empty, the SDK will prefer to use the regions in the container in the order they are specified to perform operations.
If EnableEndpointDiscovery is set to false, this property is ignored.
Parameters:
Returns:
readRequestsFallbackEnabled
public CosmosClientBuilder readRequestsFallbackEnabled(boolean readRequestsFallbackEnabled)
Sets whether to allow for reads to go to multiple regions configured on an account of Azure Cosmos DB service.
DEFAULT value is true.
If this property is not set, the default is true for all Consistency Levels other than Bounded Staleness, The default is false for Bounded Staleness. 1. #endpointDiscoveryEnabled is true 2. the Azure Cosmos DB account has more than one region
Parameters:
Returns:
resourceToken
public CosmosClientBuilder resourceToken(String resourceToken)
Sets a resource token used to perform authentication for accessing resource.
Parameters:
Returns:
sessionCapturingOverrideEnabled
public CosmosClientBuilder sessionCapturingOverrideEnabled(boolean sessionCapturingOverrideEnabled)
Session capturing is enabled by default for SESSION. For other consistency levels, it is not needed, unless if you need occasionally send requests with Session Consistency while the client is not configured in session.
enabling Session capturing for Session mode has no effect.
Parameters:
Returns:
throttlingRetryOptions
public CosmosClientBuilder throttlingRetryOptions(ThrottlingRetryOptions throttlingRetryOptions)
Sets the retry policy options associated with the DocumentClient instance.
Properties in the RetryOptions class allow application to customize the built-in retry policies. This property is optional. When it's not set, the SDK uses the default values for configuring the retry policies. See RetryOptions class for more details.
Parameters:
Returns:
userAgentSuffix
public CosmosClientBuilder userAgentSuffix(String userAgentSuffix)
sets the value of the user-agent suffix.
Parameters:
Returns: