Hello Tomás Novo,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to know if there is a simple way to export the content from the Basic service and import it on the Standard service.
Yes, there is a way to export your content from the Basic Azure AI Search service and import it into a new Standard service without re-ingesting all your documents. The below method will ensure a smooth transition to a higher tier service while maintaining your existing data integrity, this is a step-by-step guide to help you through the process:
- You can use the Azure AI Search .NET utilities to export data from your current index. This involves creating JSON files that contain your index schema and documents. The
export-data
command in the utility can help you partition and export your data efficiently. - https://learn.microsoft.com/en-us/samples/azure-samples/azure-search-dotnet-utilities/export-data - In the Azure portal, create a new Azure AI Search service with the Standard tier. Make sure to configure it according to your needs.
- Use the
import-data
command or the Azure portal’s import wizard to load the exported JSON files into your new Standard service. This can be done using the REST API or Azure SDKs for various programming languages. - https://learn.microsoft.com/en-us/azure/search/search-what-is-data-import and https://learn.microsoft.com/en-us/azure/search/search-import-data-portal - After importing, use the Search explorer in the Azure portal to verify that your data has been correctly imported and is queryable, - https://learn.microsoft.com/en-us/azure/search/search-what-is-data-import
If you can try the above - you can migrate your data without incurring additional costs for re-ingesting documents.
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.