Create Cosmos DB Serverless account using Azure CLI

In this comprehensive engineering guide, we will completely bypass the Azure Portal clicks and build a production-ready, serverless Azure Cosmos DB for NoSQL account using the Azure CLI. In this blog post, I tested the commands for creating a single-region Cosmos DB serverless account. The Azure CLI commands are tested, and resources get deployed as … Read more

The NoSQL Showdown: AWS DynamoDB vs. Azure Cosmos DB

Welcome back to Cloud Nerchuko! As data engineers and cloud architects, we are constantly making critical decisions about where our data lives. When migrating heavy workloads or building cloud-native applications from scratch, traditional relational databases don’t always cut it for massive scale. Enter the fully managed NoSQL heavyweights: AWS DynamoDB and Azure Cosmos DB. Both … Read more

Insert data into Cosmos DB NoSQL API using Transactional Batch API with Python

In this blogpost, you will understand about how to insert data into Cosmos DB NoSQL API using Transaction Batch API with Python language. I got the JSON data which has only one row per partition in the Nike Discounts file. Please experiment the batch API by changing the distribution of the JSON records. (Ex. Put … Read more

Asynchronous Data Insertion into Cosmos DB NoSQL API with Python

In this blogpost, we will understand about how to insert data asynchronously into Cosmos DB No SQL API with Python. Pre-requisites: Please refer previous article on Insert data synchronously into Cosmos DB NoSQL API with Python to understand synchronous data insertion to Cosmos DB NoSQL API using python code. Results: Insertion of 1,000 JSON records … Read more

Insert data synchronously into Cosmos DB NoSQL API with Python

In this blogpost, you will learn about inserting data synchronously into Azure Cosmos DB NoSQL API with Python code. Pre-requisites: Results: Insertion of 1,000 JSON records completed in 4:33 minutes. Note: You can setup your local environment using any Python supported IDE such as VS Code. I don’t want to go through VS Code and … Read more

Different methods for inserting data into the Cosmos DB NoSQL API using Python

In this blogpost, I will explain the different methods to insert data into the Azure Cosmos DB NoSQL API using Python code. Azure Cosmos DB is a global distributed database created by Microsoft which supports multi-model databases like Gremlin, Cassandra, Table, PostgreSQL and Mongo DB hosted on Azure Cloud. To insert data into Azure Cosmos … Read more