An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
Hello Sachin Raorane,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you're having Azure speech service error.
For Standard S0 real-time Speech-to-Text, the default concurrent request limit is 100 per Speech resource. Since you reported only 36 calls, 36 alone should not exceed the default limit.
Therefore, the actual issue is one of these:
- Your application is leaving Speech recognizer sessions open,
- More workloads are sharing the same Speech resource,
- The app is using a different resource/tier/region than expected, or the quota/tier change has not propagated.
My advice to you:
- Implement a strict client-side concurrency limit of 70–80 active recognizers,
- Explicitly stop and dispose every recognizer, log SDK
CancellationDetailsincludingErrorCode,ErrorDetails, and session ID, and verify metrics against the exact East US Speech resource. - If production concurrency must exceed 100, raise an Azure quota request for real-time Speech-to-Text concurrent requests on that Speech resource.
This will guide you for both mitigation and root cause.
I hope this is helpful! Do not hesitate to let me know if you have any other questions, steps or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.