Skip to content

Commit 6634bf1

Browse files
committed
Adding error documentation for indexing errors
1 parent d3c4a49 commit 6634bf1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ Indexer read the document from the data source, but there was an issue convertin
4949
| Could not apply field mapping to a field | Could not apply mapping function `'functionName'` to field `'fieldName'`. Array cannot be null. Parameter name: bytes | Double check the [field mappings](search-indexer-field-mappings.md) defined on the indexer, and compare with the data of the specified field of the failed document. It may be necessary to modify the field mappings or the document data. |
5050
| Could not read field value | Could not read the value of column `'fieldName'` at index `'fieldIndex'`. A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.) | These errors are typically due to unexpected connectivity issues with the data source's underlying service. Try running the document through your indexer again later. |
5151

52+
### Could not index document
53+
Indexer read and processed the document but failed to add the data to the search index. This can happen due to:
54+
55+
| Reason | Example | Action |
56+
| --- | --- | --- |
57+
| A field contains a term that is too large | A term in your document is larger then the [32KB limit](search-limits-quotas-capacity#api-request-limits) | You can avoid this restriction by ensuring the field is not configured as filterable, facetable, or sortable.
58+
5259
## Warnings
5360
Warnings do not stop indexing, but they do indicate conditions that could result in unexpected outcomes. Whether you take action or not depends on the data and your scenario.
5461

0 commit comments

Comments
 (0)