Home > other >  Azure search indexer is failing frequently
Azure search indexer is failing frequently

Time:01-07

I have set of files stored in Azure blob storage. I am trying to index all these files based on daily basis. Some times indexer runs are failing with errors. I am not sure why it is failing sometimes and sometimes it will run successfully.

Tried to resolve error but not able to solve it. Because sometimes indexer runs successfully and sometimes not.

CodePudding user response:

By looking at error, it seems like some of the files in your storage are not supported for azure search indexing or files may be corrupted. Suggesting to check files are corrupted, or the files are not supported for indexing as mentioned here.

I have tried from my side and below are steps i followed,

  1. I have list of files in storage account which are having different formats.

enter image description here

  1. Created index, data source , skillset and indexer.
  2. As there are different formats in data source configured allowed formats in indexer as shown below, enter image description here
  3. In this case, indexer will not fail for unsupported formats.
  4. Also if you don't want to stop run of indexer in failure case, you can configure setting in indexer as shown below and reference is here,

enter image description here

  • Related