Feb 11 2019 10:23 AM - edited Feb 11 2019 10:34 AM
Hi!
I have a ComputerVision resource in Azure, which I use with my subscription credit for development. The maximum allowed plan is S1, which allows up to 10 calls per second.
I have a WebJob to analyze a picture, and when I run it locally, it works perfectly fine. But when I run it in Azure, I get a 'TooManyRequests' Exception.
Anyway, I'm just running a single call at once for testing purposes, but still I run into throttling.
Any idea how I can analyze better what's happening? Or does anyone know if a single call to ComputerVisionClient.RecognizeTextAsync produces more than one call to the API? This could explain it, because running it locally means a much slower connection to the API.
Ah, there is a mayor difference. When running locally I send a stream. But when running in Azure, I send an AzureBlobStorage url with SAS.
Feb 22 2019 08:54 AM
SolutionFeb 22 2019 08:54 AM
Solution