Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Hi @BEJJANKI SHREYAS ,
Microsoft documentation commonly references ~500 requests per second as a scalability target for a single blob. This is considered a service target rather than a strict hard limit, and exceeding it may lead to throttling responses such as HTTP 503 (Server Busy) or 500 (Operation Timeout).
For block blobs, Microsoft does not publish a strict fixed RPS limit. Instead, achievable throughput depends on factors such as:
- Request size
- Level of client concurrency
- Access patterns (reads vs writes)
- Overall storage account performance limits
Reference: https://dotnet.territoriali.olinfo.it/azure/storage/blobs/storage-performance-checklist https://dotnet.territoriali.olinfo.it/azure/storage/blobs/scalability-targets
The Hot, Cool, and Archive tiers apply to Standard Blob Storage and primarily affect cost, latency, and data lifecycle, not the documented per-blob request-rate target.
- Premium Block Blob Storage is designed for workloads that require:
- Lower and more predictable latency
- Higher transaction rates
- Consistent performance using SSD-backed storage
Microsoft does not publish a higher explicit per-blob requests/sec limit for Premium block blobs. Instead, the benefit comes from improved latency and the ability to sustain higher transaction density and throughput at the account level.
Reference: https://dotnet.territoriali.olinfo.it/azure/storage/blobs/storage-blob-block-blob-premium
Because scalability targets apply at the individual blob level, Azure recommends scaling throughput by distributing traffic across:
- Multiple blobs
- Multiple partitions
- Or multiple storage accounts if necessary
This approach helps avoid throttling when workloads exceed the performance targets of a single blob.
Kindly let us know if the above helps or you need further assistance on this issue.
If the answer is helpful, please "Accept the answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".