Found indexes by going into existing 'search service' resource created in Azure portal and selecting 'indexes' within the search service.
How to delete indexes for Azure AI Studio?
Trying to use 'Add Your Data' functionality in Azure AI Studio but receiving the following error:
An index with the name 'x' in service 'xsearch' could not be created. Index quota has been exceeded for this service. You must either delete unused indexes first, add a delay between index creation requests, or upgrade the service for higher limits. Maximum number of indexes allowed: 15
I am unsure how to find / delete indexes.
Azure OpenAI Service
Azure AI services
2 answers
Sort by: Most helpful
-
-
AshokPeddakotla-MSFT 35,971 Reputation points Moderator
2023-08-22T10:41:12.88+00:00 Matt Fox Greetings!
I'm glad that your issue is resolved and thank you for posting your solution so that others experiencing the same thing can easily reference this!
Since the Microsoft Q&A community has a policy that the question author cannot accept their own answer, they can only accept answers by others, I'll repost your solution in case you'd like to Accept the answer.
Issue:
Trying to use 'Add Your Data' functionality in Azure AI Studio but receiving the following error:
An index with the name 'x' in service 'xsearch' could not be created. Index quota has been exceeded for this service. You must either delete unused indexes first, add a delay between index creation requests, or upgrade the service for higher limits. Maximum number of indexes allowed: 15
Solution:
Found indexes by going into existing 'search service' resource created in Azure portal and selecting 'indexes' within the search service.
Also, you can use Delete Index (Azure Cognitive Search REST API)
DELETE https://[service name].search.windows.net/indexes/[index name]?api-version=[api-version] Content-Type: application/json api-key: [admin key]
If you have any other questions, please let me know. Thank you again for your time and patience throughout this issue.