Home > database >  Is there any way to stop execution of an Azure Cognitive Search indexer?
Is there any way to stop execution of an Azure Cognitive Search indexer?

Time:09-16

I've reset an indexer assigned to an SQL data source with millions of rows but forgot to update some values in the data source. Now I have to wait until the indexer completes the indexation and then I'll have to reset it again. Is it possible to forcibly stop the execution of the indexer?

CodePudding user response:

Setting disabled : true on the indexer resource should stop the indexer's current invocation. You can then set disabled back to false once you're ready to run it again.

  • Related