skills.vishalvoidskills/vishalvoid
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-java

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

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

Explore other random skills

All skillsMy patterns