Skip to content

Commit 01e8831

Browse files
authored
Merge pull request #90510 from HeidiSteen/heidist-gh
Azure Search customer case: document index throttle limits
2 parents 6100acd + 279bc8e commit 01e8831

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

articles/search/search-limits-quotas-capacity.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: nitinme
66
services: search
77
ms.service: search
88
ms.topic: conceptual
9-
ms.date: 07/01/2019
9+
ms.date: 10/03/2019
1010
ms.author: heidist
1111
---
1212
# Service limits in Azure Search
@@ -142,6 +142,18 @@ For the Storage Optimized tiers, you should expect a lower query throughput and
142142

143143
A [cognitive search pipeline](cognitive-search-concept-intro.md) that makes calls to a Text Analytics resource for [entity recognition](cognitive-search-skill-entity-recognition.md), [key phrase extraction](cognitive-search-skill-keyphrases.md), [sentiment analysis](cognitive-search-skill-sentiment.md), and [language detection](cognitive-search-skill-language-detection.md) is subject to data limits. The maximum size of a record should be 50,000 characters as measured by [`String.Length`](https://docs.microsoft.com/dotnet/api/system.string.length). If you need to break up your data before sending it to the sentiment analyzer, use the [Text Split skill](cognitive-search-skill-textsplit.md).
144144

145+
## Throttling limits
146+
147+
Search query and indexing requests are throttled as the system approaches peak capacity. Throttling behaves differently for different APIs. Query APIs (Search/Suggest/Autocomplete) and indexing APIs throttle dynamically based on the load on the service. Index APIs have static request rate limits.
148+
149+
Static rate request limits for operations related to an index:
150+
151+
+ List Indexes (GET /indexes): 5 per second per search unit
152+
+ Get Index (GET /indexes/myindex): 10 per second per search unit
153+
+ Create Index (POST /indexes): 12 per minute per search unit
154+
+ Create or Update Index (PUT /indexes/myindex): 6 per second per search unit
155+
+ Delete Index (DELETE /indexes/myindex): 12 per minute per search unit
156+
145157
## API request limits
146158
* Maximum of 16 MB per request <sup>1</sup>
147159
* Maximum 8 KB URL length

0 commit comments

Comments
 (0)