Azure Search .net SDK- How to use “FindFailedActionsToRetry”?
问题 Using the Azure Search .net SDK, when you try to index documents you might get an exception IndexBatchException . From the documentation here: try { var batch = IndexBatch.Upload(documents); indexClient.Documents.Index(batch); } catch (IndexBatchException e) { // Sometimes when your Search service is under load, indexing will fail for some of the documents in // the batch. Depending on your application, you can take compensating actions like delaying and // retrying. For this simple demo, we