1

I'm using Azure Text Analytics for Sentiment Analysis. I was wondering if the API is limited to 100 requests per minute or if there is any request limit for the service.

When I tried to request more than 100 times within a minute, the API returns an empty document.

Daniel Merege
  • 11
  • 1
  • 2
  • 1
    The rate limit is 100 calls per minute. Note that you can submit a large quantity of documents in a single call (up to 1000 documents). Check the Data Limits item https://learn.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/overview – Hackerman Oct 02 '17 at 20:46

2 Answers2

1

As mentioned at https://learn.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/overview:

Limits

Maximum size of a single document: 5,000 characters as measured by String.Length.

Maximum size of entire request: 1 MB

Maximum number of documents in a request: 1,000 documents

The rate limit is 100 calls per minute. Note that you can submit a large quantity of documents in a single call (up to 1000 documents).

Luis Cabrera
  • 516
  • 3
  • 6
0

This poster has similar issue and developed their own ratelimiter for cognitive services.

user2368632
  • 990
  • 1
  • 12
  • 33