Technical & DevelopmentIntermediate
azure-cosmos-java
Cosmos DB NoSQL with global distribution
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-cosmos-javanpx skills add https://github.com/microsoft/skills --skill azure-cosmos-javaOr paste this URL into your assistant to install:
Overview
What This Skill Does
Azure Cosmos DB SDK for Java provides a client library for interacting with Cosmos DB's NoSQL API. It supports both synchronous and asynchronous (reactive) programming models via `CosmosClient` and `CosmosAsyncClient`. Use it to manage databases, containers, and documents with global distribution and configurable consistency levels.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure Cosmos DB SDK for Java
Client library for Azure Cosmos DB NoSQL API with global distribution and reactive patterns.
Installation
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>LATEST</version>
</dependency>
Or use Azure SDK BOM:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-sdk-bom</artifactId>
<version>{bom_version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-cosmos</artifactId>
</dependency>
</dependencies>
Lines 1 - 36 of 250
Recommendations