Skip to content

Commit af74a17

Browse files
authored
Merge pull request #91954 from vl8163264128/master
Could not map output field 'X' to search index
2 parents 30f97fe + c7b2d92 commit af74a17

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

articles/search/cognitive-search-common-errors-warnings.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,4 +209,20 @@ In the example LanguageDetectionSkill below, the `'text'` input field may trigge
209209
If you want to ensure that all text is analyzed, consider using the [Split skill](cognitive-search-skill-textsplit.md).
210210

211211
### Web API skill response contains warnings
212-
Indexer was able to run a skill in the skillset, but the response from the Web API request indicated there were warnings during execution. Review the warnings to understand how your data is impacted and whether or not action is required.
212+
Indexer was able to run a skill in the skillset, but the response from the Web API request indicated there were warnings during execution. Review the warnings to understand how your data is impacted and whether or not action is required.
213+
214+
### The current indexer configuration does not support incremental progress
215+
This warning only occurs for Cosmos DB data sources.
216+
217+
Incremental progress during indexing ensures that if indexer execution is interrupted by transient failures or execution time limit, the indexer can pick up where it left off next time it runs, instead of having to re-index the entire collection from scratch. This is especially important when indexing large collections.
218+
219+
The ability to resume an unfinished indexing job is predicated on having documents ordered by the `_ts` column. The indexer uses the timestamp to determine which document to pick up next. If the `_ts` column is missing or if the indexer can't determine if a custom query is ordered by it, the indexer starts at beginning and you'll see this warning.
220+
221+
It is possible to override this behavior, enabling incremental progress and suppressing this warning by using the `assumeOrderByHighWatermarkColumn` configuration property.
222+
223+
[More information about Cosmos DB incremental progress and custom queries.](https://go.microsoft.com/fwlink/?linkid=2099593)
224+
225+
### Could not map output field 'X' to search index
226+
Output field mappings that reference non-existent/null data will produce warnings for each document and result in an empty index field. To workaround this issue, double-check your output field mapping source paths for possible typos, or set a default value using the [Conditional skill](cognitive-search-skill-conditional.md#sample-skill-definition-2-set-a-default-value-for-a-value-that-doesnt-exist).
227+
228+
Indexer was able to run a skill in the skillset, but the response from the Web API request indicated there were warnings during execution. Review the warnings to understand how your data is impacted and whether or not action is required.

0 commit comments

Comments
 (0)