How to make the most of Azure Cosmos DB’s free tier (2024)

Microsoft has added a free option to Azure’s distributed database. Let’s jump in

How to make the most of Azure Cosmos DB’s free tier (1)

Credit: Thinkstock

Azure’s Cosmos DB is one of its best features. A multimodel distributed database, it gives you a foundation for building truly cloud-native applications with a series of consistency models that can be mapped to how your application works. But it’s not easy to get started, and a badly configured or designed application can quickly get expensive.

It’s good to see that Cosmos DB now has a free tier that can help you start deploying applications outside of a limited development environment. The new tier isn’t large: it’s based on the minimum configuration for Cosmos DB, and offers 400 RU/s (request units per second) and 5GB of storage, with as many as 25 containers in a shared throughput database. That’s more than enough for a small application which offers more reads than writes, for example, and isn’t reliant on strong consistency models.

You do need to be aware that although Cosmos DB is multiregion, you can only run a single 400 RU/s database in the free tier. In practice that limits you to a single region, as additional regions will each need their own 400 RU/s instance, and those will be charged at standard rates for those regions, per hour.

Getting started with the free Cosmos DB

You will need to create a new account to take advantage of the free tier; it’s not available as a billing option on existing applications. The free tier’s 400 RU/s is the smallest amount that can be provisioned in a Cosmos DB database. That gives you around 1 billion reads a month, which should be enough to get your application off the ground or allow you to deploy and run an internal distributed database as part pf a pilot project. Once you get to the edge of your free RU/s allowance, you can add more capacity in blocks of 100 RU/s, billed at an hourly rate.

It’s worth understanding what a Cosmos database RU is. The RU is a request unit, and the billed RU/s is a measure of the provisioned throughput of your database, covering all its operations. That includes reads, writes, updates, deletes, and more. Microsoft suggests that 1 RU/s is equivalent to one eventually consistent (the slowest and least processing-intensive level of consistency available on Cosmos DB) per second of a 1KB item. To write the same 1KB item per second is 5 RU/s. The more complex the operation, the more RU/s it consumes.

Understanding the consumption of request units

It’s hard to say exactly how many RU/s an application will consume. However, you can think about the Cosmos DB constraints that can affect the RU/s used by your database. First, you need to consider the size of your items. The larger the item, the more RU/s it uses for a read or a write. Similarly, indexing consumes RU/s, and if you use the default indexing model, the resources required to write items will go up as you add more to your database. Then there is your choice of consistency models, with both strong and bounded staleness needing roughly twice as many RU/s for a read as Cosmos DB’s other, less strict models.

With a limited number of RU/s available in the free tier, you may want to work around those constraints to keep consumption to a minimum. One option is to turn off all indexing for your database, though in practice you may prefer to limit indexing to specific properties on each stored JSON document. At the same time, you need to consider how your application is operating and whether it’s better to use something like session consistency to improve user perceptions of performance while reducing the RU/s used.

As RU/s are activity based, you can use query design to keep consumption to a minimum. That might entail limiting the number of results per query, controlling the amount of data you store, or using as few user-defined functions, stored procedures, and triggers as possible.

Setting up your database is easy enough. In the Azure Portal create a new Cosmos DB account, and from the Azure Data Explorer create a new database. Start by giving it an ID and then provision its throughput. Set this to 400 RU/s. Higher amounts will show cost estimates, but as you’re setting up a free instance there’s no need to try this out. You’re not limited to the Portal; you can use the Azure CLI, PowerShell, or even programmatically from inside the Cosmos DB SDK.

Building apps on Cosmos DB’s free tier

In Cosmos DB a database is a set of containers, which are used to handle partitioning in an Azure region and distribution across the regions you’re using your database in. Each database can be configured to be a specific model: NoSQL (both MongoDB and Cassandra), SQL, Gremlin, and tables. Most apps will work with it as a NoSQL document database storing JSON data.

Once you’ve set up a database and chosen a model, you can think of a Cosmos DB container as how the database scales. Outside of the free tier, you can set throughput in RU/s on a container basis; in the free tier you’re sharing that throughput across all the containers in your database, so you can’t predict throughput for any specific container. Paid instances have an associated SLA, which is why they allow you to set throughput on a per-container basis.

Working across containers this way is equivalent to using a cluster in a NoSQL database and works well for this type of workload. By using the same partition key across all your containers, Cosmos DB will automatically share throughput across them. You can use this approach with the free tier’s 25 containers to reduce bottlenecks for your application’s users. If you treat it as a sharded, clustered NoSQL database, you should find it relatively easy to include it in your applications, using it to host pointers to other content rather than the content itself.

Working with a free service offering can be tricky, but if you take sensible precautions it should be possible to use Cosmos DB’s new tier as part of an application back end. You may have to sacrifice some of the service’s scalability features, but that shouldn’t affect applications significantly if you make careful design-time decisions.

It’s important to think about how to take advantage of a distributed database like Cosmos DB rather than simply porting your existing workloads to it—they are unlikely to make a good match. Instead, think of this as your opportunity to build a truly cloud-native, distributed application. In this case 400 RU/s is more than enough to bootstrap a new application and get it working with a reasonable number of users.

Related content

  • analysisBuilding next-generation applications with the Windows Application SDK Microsoft’s desktop transition from UWP continues, although promised features are still missing from experimental releases.By Simon BissonJul 18, 20248 minsVisual StudioSoftware DeploymentMicrosoft .NET
  • analysisHow Azure Functions is evolving Microsoft has delivered major updates to its serverless compute service to align it more closely with development trends including Kubernetes and generative AI. By Simon BissonJul 11, 20247 minsAzure FunctionsMicrosoft AzureServerless Computing
  • analysisUnderstanding DiskANN, a foundation of the Copilot Runtime Microsoft is adding a fast vector search index to Windows. It’s tailor-made for fast, local small language models like Phi Silica.By Simon BissonJul 04, 20247 minsSoftware DeploymentGenerative AIArtificial Intelligence
  • analysisAI development on a Copilot+ PC? Not yet Microsoft’s new AI-infused hardware shows promise for developers, but the platform still needs work to address a fragmented toolchain.By Simon BissonJun 27, 20249 minsVisual Studio CodeSoftware DeploymentGenerative AI
  • Resources
  • Videos
How to make the most of Azure Cosmos DB’s free tier (2024)

FAQs

How to use Azure Cosmos DB for free? ›

You can have up to one free tier Azure Cosmos DB account per Azure subscription and must opt-in when creating the account. If you do not see the option to apply the free tier discount, this means another account in the subscription has already been enabled with free tier. Select Review + create.

Why is Cosmosdb so expensive? ›

FAQs. 1) Why is Azure Cosmos DB so expensive? Azure Cosmos DB can be costly due to its robust features, global distribution, and low latency performance.

Is Azure Cosmos DB deprecated? ›

Cosmos DB (deprecated) - Azure for . NET Developers | Microsoft Learn.

What are the limitations of Cosmos DB? ›

Data encryption with customer-managed keys (CMK) for Azure Cosmos DB for PostgreSQL clusters has the following limitations. CMK encryption can only be enabled during the creation of a new Azure Cosmos DB for PostgreSQL cluster. CMK encryption isn't supported with private access (Private Link).

What is the serverless limit for Cosmos DB? ›

A serverless container can store a maximum of 1 TB of data and indexes. A serverless container offers a maximum throughput that ranges from 5,000 RU/s to 20,000 RU/s. The maximum throughput depends on the number of partitions that are available in the container.

Why is Cosmos DB so slow? ›

Request throttling is the most common reason for slow requests. Azure Cosmos DB throttles requests if they exceed the allocated request units for the database or container. The SDK has built-in logic to retry these requests.

How do you scale Azure Cosmos DB? ›

Azure Cosmos DB scales the throughput T such 0.1*Tmax <= T <= Tmax . For example, if you set the maximum throughput to 20,000 RU/s, the throughput scales between 2000 to 20,000 RU/s. Because scaling is automatic and instantaneous, at any point in time, you can consume up to the provisioned Tmax with no delay.

How do I improve my Azure performance? ›

Common strategies for optimizing performance in an Azure environment include scaling resources based on demand, using managed services like Azure SQL Database, caching with services like Azure Redis Cache, and implementing load balancing with Azure Traffic Manager.

What is Azure Cosmos DB good for? ›

Azure Cosmos DB offers a solution for modern apps and intelligent workloads by being very responsive with dynamic and elastic autoscale. It is available in every Azure region and can automatically replicate data closer to users. It has SLA guaranteed low-latency and high availability.

How do I avoid charges in Azure? ›

To avoid getting charged, keep your usage within the limits. To learn about limits of free services, see the Azure free account FAQ. To check your free service usage, see Check usage of free services included with Azure free Account.

How is Azure Cosmos DB charged? ›

You are charged for the maximum provisioned throughput for any given hour. For instance, if you increase provisioned throughput at 9:30 AM from 400 RU/s to 1,000 RU/s and then lower provisioned throughput at 10:45 AM back to 400 RU/s, you will be charged for two hours of 1,000 RU/s.

Top Articles
Chanel West Coast | Bio & Life Events| Read More Online — CHANEL WEST COAST
CHANEL WEST COAST ON DEBUT ALBUM: ‘IT’S ABOUT MAKING MUSIC THAT COMES FROM YOUR HEART’ — CHANEL WEST COAST
Thedirtyship
Ann Taylor Assembly Row
Calvert Er Wait Time
FREE Houses! All You Have to Do Is Move Them. - CIRCA Old Houses
What Auto Parts Stores Are Open
What Is Opm1 Treas 310 Deposit
Pulitzer And Tony Winning Play About A Mathematical Genius Crossword
Websites erstellen, benennen, kopieren oder löschen
月曜から夜ふかし 9Tsu
Rules - LOTTOBONUS - Florida Lottery Bonus Play Drawings & Promotions
803 Castroville Road, San Antonio, TX 78237
Nutrislice White Bear Lake
El Puerto Harrisonville Mo Menu
Methodwow
Th 8 Best Army
Katonah Train Times
To Give A Guarantee Promise Figgerits
Truecarcin
Spaghetti Models | Cyclocane
Swissport Timecard
Hannah Palmer Listal
Dumb Money, la recensione: Paul Dano e quel film biografico sul caso GameStop
Live Stream Portal
David Goggins Is A Fraud
Pcc Skilled Nursing Login
Stuckey Furniture
Itsfunnydude11 Wisconsin Volleyball Team : Itsfunnydude11 Twitter, Itsfunnydude11 Reddit – Know About It ! - Opensquares
Conan Exiles Meteor Shower Command
Dutchessravenna N Word
Rare Rides: The 1970 Chevrolet Chevelle SS454 LS6 Convertible - Street Muscle Rare Rides
Unblocked Games 66E
Help with Finding Parts for Your Vehicle
Did Taylor Swift Date Greg Gutfeld
Glassbox Eyecare
Craigslist Lake Charles
Tények este teljes adás, 2024. április 26., péntek
Barbarian Frenzy Build with the Horde of the Ninety Savages set (Patch 2.7.7 / Season 32)
Matt Laubhan Salary
10439 Gliding Eagle Way Land O Lakes Fl 34638
P1 Offshore Schedule
Cetaphil Samples For Providers
Uncg Directions
Pirates Bay Knaben
Craigslist Ri Rhode Island
Before Trump, neo-Nazis pushed false claims about Haitians as part of hate campaign
Craigslist Farm And Garden Atlanta Georgia
What Does Wmt Contactless Mean
Craigslist Cars By Owner
Liberty 1098-T
Larry's Country Diner LIVE! - 2024 Tickets - Branson Travel Office
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5829

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.