Azure Cosmos DB

Cosmos Database (DB) is a globally distributed, low latency, multi-model database for managing data at large scales. It is a cloud-based NoSQL database offered as a PaaS (Platform as a Service) from Microsoft Azure. It is a highly available, high throughput, reliable database and is often called a serverless database. Cosmos database contains the Azure Document DB and is available everywhere.

Azure Cosmos Document Sensor

Checks for the existence of a document which matches the given query in CosmosDB. AzureCosmosDocumentSensor

airflow/providers/microsoft/azure/example_dag/example_cosmos_document_sensor.py[source]

azure_wasb_sensor = AzureCosmosDocumentSensor(
    database_name=DATABASE_NAME,
    collection_name=COLLECTION_NAME,
    document_id=DOCUMENT_ID,
    task_id="cosmos_document_sensor",
)

Was this entry helpful?