Skip to content

Commit 20681ab

Browse files
authored
Merge pull request #90299 from CoromT/master
Adding error documentation for indexing errors
2 parents f9580eb + 6e640dd commit 20681ab

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ Indexer read the document from the data source, but there was an issue convertin
5555
| 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. |
5656
| 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. |
5757

58+
### Could not index document
59+
The document was read and processed, but the indexer could not add it to the search index. This can happen due to:
60+
61+
| Reason | Example | Action |
62+
| --- | --- | --- |
63+
| A field contains a term that is too large | A term in your document is larger than the [32 KB limit](search-limits-quotas-capacity.md#api-request-limits) | You can avoid this restriction by ensuring the field is not configured as filterable, facetable, or sortable.
64+
| Document is too large to be indexed | A document is larger than the [maximum api request size](search-limits-quotas-capacity.md#api-request-limits) | [How to index large data sets](search-howto-large-index.md)
65+
5866
### Skill input 'languageCode' has the following language codes 'X,Y,Z', at least one of which is invalid.
5967
One or more of the values passed into the optional `languageCode` input of a downstream skill is not supported. This can occur if you are passing the output of the [LanguageDetectionSkill](cognitive-search-skill-language-detection.md) to subsequent skills, and the output consists of more languages than are supported in those downstream skills.
6068

0 commit comments

Comments
 (0)