SaiVikas
SaiVikas

Reputation: 172

Azure Search Data Retrieval

UseCase:

Assume that i pushed resident data into Azure Search, with City field as searchable and resident name field as retrievable.

If i just search on City, can Azure search return all records.

Lets assume i have close to 10M records per city.

Bottom line is am trying to understand the retrieval limitation for Azure Search.

Note: I know i can use Databricks/Spark or equivalent solutions to query directly from DB, but this question is purely on Azure search standpoint.

Upvotes: 0

Views: 71

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222582

You cannot get more than 1000 records per request.

You could read from docs

Maximum 1000 documents returned per page of search results Maximum 100 suggestions returned per Suggest API request

Upvotes: 1

Related Questions