Share via

Storage rest API

raja dev 0 Reputation points
2026-02-16T10:05:22.3666667+00:00

how to resolve storage rest api latency.please share best practices and share the details of sdks and thier latencies if any.

Azure Blob Storage
Azure Blob Storage

An Azure service that stores unstructured data in the cloud as blobs.

0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Thanmayi Godithi 7,110 Reputation points Microsoft External Staff Moderator
    2026-02-16T16:53:44.3566667+00:00

    Hi @raja dev ,

    Azure Storage REST API latency is usually influenced by client‑side network factors and request patterns rather than the REST API itself. Here are some best practices to reduce latency:

    1. Deploy client and storage in the same region to minimize network RTT. Cross‑region access significantly increases latency.
    2. Avoid oversized range reads when reading blobs; large ranges can increase response time.
    3. Check DNS resolution behavior—stale or misconfigured DNS can easily add 80–100 ms per request.
    4. Use parallel/asynchronous requests instead of sequential calls to improve throughput and perceived latency.
    5. Prefer Azure Storage SDKs where possible. SDKs use the same REST APIs but add client‑side optimizations such as connection pooling, retries, and efficient async patterns, which typically provide more stable performance in production.

    Azure does not publish fixed latency numbers for REST or SDKs, as latency depends on region, network path, request type, and workload characteristics.

    If the issue persists, please share the below over Private message:

    • Which SDK or REST client you’re using
    • Operation type (read/write/list)
    • Whether the client and storage account are in the same region

    References:

    Note: This is drafted with the help of AI.

    Kindly let us know if the above helps or you need further assistance on this issue.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    0 comments No comments

  2. kagiyama yutaka 1,165 Reputation points
    2026-02-16T10:59:01.5433333+00:00

    For REST latency, pin the client to the storage region and avoid oversized range reads. If it still spikes, check for stale DNS. a bad resolve can easily add 80–100 ms. Seen this one bite more than once.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.