How to delete indexes for Azure AI Studio?

Matt Fox 25 Reputation points
2023-08-22T08:58:52.71+00:00

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 OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
4,081 questions
Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
3,602 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Matt Fox 25 Reputation points
    2023-08-22T09:03:08.99+00:00

    Found indexes by going into existing 'search service' resource created in Azure portal and selecting 'indexes' within the search service.

    0 comments No comments

  2. 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.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.