Reputation: 1100
For storage and VM, I can check the current quota usage by following powershell command: Get-AzureRmStorageUsage Get-AzureRmVMUsage
Is there similar thing for Azure Search? Either via powershell or Portal is ok.
Upvotes: 0
Views: 1614
Reputation: 1126
https://learn.microsoft.com/en-us/azure/search/search-limits-quotas-capacity
By using above url if you know what is your service plan then you can see the limits
Upvotes: 0
Reputation: 20067
In addition to monitor usage on portal, you could also get it via Service Statistics.
The Service Statistics
request is constructed using HTTP GET
and returns from Azure Search the current usage and limits of the following properties.
GET https://[service name].search.windows.net/servicestats?api-version=[api-version]
Content-Type: application/json
api-key: [admin key]
how many S2 or S3 services I can created on a give region?
You can create multiple services within a subscription. Each one can be provisioned at a specific tier. You're limited only by the number of services allowed at each tier. For example, you could create up to 12 services at the Basic tier and another 12 services at the S1 tier within the same subscription. Please refer to this article.
Upvotes: 3
Reputation: 569
There is an easy way to check your quota usage for an Azure search service, via the portal: If you open up the overview tab for you search service, you'll be presented with something like this: (image from a search service that I've created)
This shows the quota of resources for your search service and how much of the quota has been used up.
Upvotes: 2