Skip to content

Commit 0425510

Browse files
authored
Merge pull request #101332 from Careyjmac/projectionErrorDoc
[Azure Cognitive Search] Start documentation for projection errors
2 parents 3799750 + 37d6e41 commit 0425510

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,18 @@ In all these cases, refer to [Supported Data types](https://docs.microsoft.com/r
168168

169169
This error occurs when the indexer is unable to finish processing a single document from the data source within the allowed execution time. [Maximum running time](search-limits-quotas-capacity.md#indexer-limits) is shorter when skillsets are used. When this error occurs, if you have maxFailedItems set to a value other than 0, the indexer bypasses the document on future runs so that indexing can progress. If you cannot afford to skip any document, or if you are seeing this error consistently, consider breaking documents into smaller documents so that partial progress can be made within a single indexer execution.
170170

171+
<a name="could-not-project-document"/>
172+
173+
## Error: Could not project document
174+
175+
This error occurs when the indexer is attempting to [project data into a knowledge store](knowledge-store-projection-overview.md) and there was an failure in our attempt to do so. This failure could be consistent and fixable or it could be a transient failure with the projection output sink that you may need to wait and retry in order to resolve. Here are a set of known failure states and possible resolutions.
176+
177+
| Reason | Details/Example | Resolution |
178+
| --- | --- | --- |
179+
| Could not update projection blob `'blobUri'` in container `'containerName'` |The specified container does not exist. | The indexer will check if the specified container has been previously created and will create it if necessary, but it only performs this check once per indexer run. This error means that something deleted the container after this step. To resolve this error, try this: leave your storage account information alone, wait for the indexer to finish, and then rerun the indexer. |
180+
| Could not update projection blob `'blobUri'` in container `'containerName'` |Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host. | This is expected to be a transient failure with Azure Storage and thus should be resolved by rerunning the indexer. If you encounter this error consistently, please file a [support ticket](https://ms.portal.azure.com/#create/Microsoft.Support) so it can be investigated further. |
181+
| Could not update row `'projectionRow'` in table `'tableName'` | The server is busy. | This is expected to be a transient failure with Azure Storage and thus should be resolved by rerunning the indexer. If you encounter this error consistently, please file a [support ticket](https://ms.portal.azure.com/#create/Microsoft.Support) so it can be investigated further. |
182+
171183
<a name="could-not-execute-skill-because-a-skill-input-was-invalid"/>
172184

173185
## Warning: Skill input was invalid

0 commit comments

Comments
 (0)