This document describes the current stable version of Celery (5.2). For development docs, go here.
celery.backends.cosmosdbsql
¶
The CosmosDB/SQL backend for Celery (experimental).
- class celery.backends.cosmosdbsql.CosmosDBSQLBackend(url=None, database_name=None, collection_name=None, consistency_level=None, max_retry_attempts=None, max_retry_wait_time=None, *args, **kwargs)[source]¶
CosmosDB/SQL backend for Celery.
- delete(key)[source]¶
Delete the value at a given key.
- Parameters:
key – The key of the value to delete.
- get(key)[source]¶
Read the value stored at the given key.
- Parameters:
key – The key for which to read the value.