I am in the process of moving to a new database server and I have azure search indexers which are still pointing to my old database server, is it possible to update the connection strings of my azure search indexers without having to rebuild the indexes from the ground up?
is it possible to update the connection strings of my azure search indexers without having to rebuild the indexes from the ground up?
Yes. It is entirely possible to do so.
However you would change the connection string in the data source settings and not in indexer settings.
You would simply need to update the data source with new connection string pointing to your new database and your indexer should pick up the data from the new database on its next run. In other words, simply change the connection string of the data source to point to the new database.
You can do so in Azure Portal. Simply find the data source and change its connection string to point to the new database.