Skip to content

Commit f653986

Browse files
authored
Update search-how-to-index-markdown-blobs.md
wording changes
1 parent edacb0f commit f653986

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/search-how-to-index-markdown-blobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ This method uses a soft-delete to delete documents associated with a specific bl
468468

469469
Before re-indexing a modified Markdown file, explicitly delete the existing documents associated with that file using the [https://learn.microsoft.com/en-us/rest/api/searchservice/delete-documents](https://learn.microsoft.com/en-us/rest/api/searchservice/preview-api/add-update-delete-documents). You can either:
470470

471-
* Manually indentify individual stale documents by identifying duplicates in the index to be deleted.
472-
* (**Recommended**) Bulk delete all documents generated from the same parent file before re-indexing.
471+
* Manually indentify individual stale documents by identifying duplicates in the index to be deleted. This may be feasible for small, well-understood changes but can be time-consuming.
472+
* (**Recommended**) Remove all documents generated from the same parent file before re-indexing. This ensures a clean slate and avoids inconsistencies.
473473

474474
1. Identify the id of the documents associated with the file. Use a query like the one below to retrieve the document key IDs (e.g., `id`, `chunk_id`, etc.) for all documents tied to a specific file. Replace `metadata_storage_path` with the appropriate field in your index that maps to the file path or blob URI. Note that this field must be a key.
475475
```

0 commit comments

Comments
 (0)