Skip to main content

A bulk updater for Microsoft CosmosDB

Project description

CosmosDB bulk updater

A package to update a tons of documents in Microsoft CosmosDB

How it works?

It executes a query and iterate all the items executing an update function defined by the user. This query will be executed until it return any result

Usage

The sample bellow show how to add a new field into the all database documents

from cosmosdb_bulk_updater import BulkUpdater, Database


def update_document(document: dict):

    document['new_field'] = 'blah'
    return document


def run():
    database = Database(
        endpoint="[ENDPOINT]",
        key="[YOUR_KEY]",
        database="[DATABASE]",
        collection="[COLLECTION]"
    )

    updater = BulkUpdater(
        database=database,
        query="SELECT TOP 500 VALUE c FROM c where NOT IS_DEFINED(c.new_field)"
    )

    updater.execute_update(
        execute_fn=update_document
    )


if __name__ == '__main__':
    run()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cosmosdb-bulk-updater-0.5.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

cosmosdb_bulk_updater-0.5.0-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page