Skip to content

Commit 1a4e3dd

Browse files
committed
change to multple docs
1 parent 8f0ef56 commit 1a4e3dd

File tree

7 files changed

+363
-304
lines changed

7 files changed

+363
-304
lines changed

articles/stream-analytics/TOC.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,18 @@
224224
- name: Data errors
225225
href: data-errors.md
226226
- name: Error codes
227-
href: error-codes.md
228-
- name: Integrate with machine learning
227+
items:
228+
- name: Configuration errors
229+
href: configuration-error-codes.md
230+
- name: Data errors
231+
href: data-error-codes.md
232+
- name: External availability errors
233+
href: external-availability-error-codes.md
234+
- name: External errors
235+
href: external-error-codes.md
236+
- name: Internal errors
237+
href: internal-error-codes.md
238+
- name: Integrate with machine learnings
229239
items:
230240
- name: Sentiment analysis with ML models
231241
href: stream-analytics-machine-learning-integration-tutorial.md
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
---
2+
title: Configuration error codes - Azure Stream Analytics
3+
description: Troubleshoot Azure Stream Analytics issues with configuration error codes.
4+
ms.author: mamccrea
5+
author: mamccrea
6+
ms.topic: conceptual
7+
ms.date: 05/07/2020
8+
ms.service: stream-analytics
9+
---
10+
11+
You can use activity logs and resource logs to help debug unexpected behaviors from your Azure Stream Analytics job. This article lists the description for every configuration error code. Configuration errors are related to your job configuration, or input and output configurations.
12+
13+
### Error code: KafkaInvalidPermission
14+
15+
* **Cause**: The Stream Analytics job doesn't have the proper permission to perform certain actions.
16+
17+
## KafkaInvalidConfiguration
18+
19+
* **Cause**: Certain configurations on the Kafka adapter are invalid.
20+
21+
## KafkaInvalidTimestampType
22+
23+
* **Cause**: The timestamp type used by Kafka is invalid.
24+
25+
## EventHubUnauthorizedAccess
26+
27+
* **Cause**: Event Hub threw an *Unauthorized Access* error.
28+
29+
## EventHubReceiverEpochConflict
30+
31+
* **Cause**: There is more than one Event Hub receiver with different epoch values.
32+
* **Recommendation**: Ensure *Service Bus Explorer* or an *EventProcessorHost* application is not connected while your Stream Analytics job is running.
33+
34+
## EventHubReceiverQuotaExceeded
35+
36+
* **Cause**: Stream Analytics can't connect to a partition because the maximum number of allowed receivers per partition in a consumer group has been reached.
37+
* **Recommendation**: Ensure that other Stream Analytics jobs or Service Bus Explorer are not using the same consumer group.
38+
39+
## EventHubOutputThrottled
40+
41+
* **Cause**: An error occurred while writing data to Event Hub due to throttling.
42+
* **Recommendation**: If this happens consistently, upgrade the throughput.
43+
44+
## EventHubOutputInvalidConnectionConfig
45+
46+
* **Cause**: The connection configuration provided is incorrect.
47+
* **Recommendation**: Correct the configuration and restart the job.
48+
49+
## EventHubOutputInvalidHostname
50+
51+
* **Cause**: The Event Hub host is unreachable.
52+
* **Recommendation**: Ensure the supplied host name is correct.
53+
54+
## EventHubOutputUnexpectedPartitionCount
55+
56+
* **Cause**: The EventHub sender encountered an unexpected EventHub partition count.
57+
* **Recommendation**: Restart your Stream Analytics job if the EventHub's partition count has changed.
58+
59+
## CosmosDBPartitionKeyNotFound
60+
61+
* **Cause**: Stream Analytics couldn't find the partition key of a particular Cosmos DB collection in the database.
62+
* **Recommendation**: Ensure there is a valid partition key specified for the collection in Cosmos DB.
63+
64+
## CosmosDBInvalidPartitionKeyColumn
65+
66+
* **Cause**: Thrown when a partition key is neither a leaf node nor at the top level.
67+
68+
## CosmosDBInvalidIdColumn
69+
70+
* **Cause**: The query output can't contain the column \[id] if a different column is chosen as the primary key property.
71+
72+
## CosmosDBDatabaseNotFound
73+
74+
* **Cause**: Stream Analytics can't find a CosmosDB database.
75+
76+
## CosmosDBCollectionNotFound
77+
78+
* **Cause**: Stream Analytics can't find a particular Cosmos DB collection in a database.
79+
80+
## CosmosDBOutputWriteThrottling
81+
82+
* **Cause**: An error occurred while writing data due to throttling by Cosmos DB.
83+
* **Recommendation**: Upgrade the collection performance tier and tune the performance of your database.
84+
85+
## SQLDatabaseConnectionStringError
86+
87+
* **Cause**: The Stream Analytics job has encountered an authentication error.
88+
* **Recommendation**: Ensure that the SQL Database connection string is correct.
89+
90+
## SQLDatabaseManagedIdentityAuthenticationError
91+
92+
* **Cause**: The Stream Analytics job has encountered an authentication error.
93+
* **Recommendation**: Ensure that the account name is configured properly and the job's Managed Identity has access to the SQL Database.
94+
95+
## SQLDatabaseOutputNoTableError
96+
97+
* **Cause**: Stream Analytics can't find the schema information for a particular table.
98+
99+
## SQLDWOutputInvalidServiceEdition
100+
101+
* **Cause**: SQL Database is not supported.
102+
* **Recommendation**: Use Synapse SQL pool.
103+
104+
## Next steps
105+
106+
* [Troubleshoot input connections](stream-analytics-troubleshoot-input.md)
107+
* [Troubleshoot Azure Stream Analytics outputs](stream-analytics-troubleshoot-output.md)
108+
* [Troubleshoot Azure Stream Analytics queries](stream-analytics-troubleshoot-query.md)
109+
* [Troubleshoot Azure Stream Analytics by using resource logs](stream-analytics-job-diagnostic-logs.md)
110+
* [Azure Stream Analytics data errors](data-errors.md)
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
title: Data error codes - Azure Stream Analytics
3+
description: Troubleshoot Azure Stream Analytics issues with data error codes.
4+
ms.author: mamccrea
5+
author: mamccrea
6+
ms.topic: conceptual
7+
ms.date: 05/07/2020
8+
ms.service: stream-analytics
9+
---
10+
11+
You can use activity logs and resource logs to help debug unexpected behaviors from your Azure Stream Analytics job. This article lists the description for every data error error code. Data errors occur when there is bad data in the stream, such as an unexpected record schema.
12+
13+
## InputDeserializationError
14+
15+
* **Cause**: There was an error while deserializing input data.
16+
17+
## InputEventTimestampNotFound
18+
19+
* **Cause**: Stream Analytics is unable to get a timestamp for resource.
20+
21+
## InputEventTimestampByOverValueNotFound
22+
23+
* **Cause**: Stream Analytics is unable to get value of `TIMESTAMP BY OVER COLUMN`.
24+
25+
## InputEventLateBeyondThreshold
26+
27+
* **Cause**: An input event was sent later than configured tolerance.
28+
29+
## InputEventEarlyBeyondThreshold
30+
31+
* **Cause**: An input event arrival time is earlier than the input event application timestamp threshold.
32+
33+
## AzureFunctionMessageSizeExceeded
34+
35+
* **Cause**: The message output to Azure Functions exceeds the size limit.
36+
37+
## EventHubOutputRecordExceedsSizeLimit
38+
39+
* **Cause**: An output record exceeds the maximum size limit when writing to Event Hub.
40+
41+
## CosmosDBOutputInvalidId
42+
43+
* **Cause**: The value or the type of a particular column is invalid.
44+
* **Recommendation**: Provide unique non-empty strings that are no longer than 255 characters.
45+
46+
## CosmosDBOutputInvalidIdCharacter
47+
48+
* **Cause**: The output record's Document ID contains an invalid character.
49+
50+
## CosmosDBOutputMissingId
51+
52+
* **Cause**: The output record doesn't contain the column \[id] to use as the primary key property.
53+
54+
## CosmosDBOutputMissingIdColumn
55+
56+
* **Cause**: The output record doesn't contain the Document ID property.
57+
* **Recommendation**: Ensure the query output contains the column with a unique non-empty string less than '255' characters.
58+
59+
## CosmosDBOutputMissingPartitionKey
60+
61+
* **Cause**: The output record is missing the a column to use as the partition key property.
62+
63+
## CosmosDBOutputSingleRecordTooLarge
64+
65+
* **Cause**: A single record write to Cosmos DB is too large.
66+
67+
## SQLDatabaseOutputDataError
68+
69+
* **Cause**: Stream Analytics can't write event(s) to SQL Database due to issues in the data.
70+
71+
## Next steps
72+
73+
* [Troubleshoot input connections](stream-analytics-troubleshoot-input.md)
74+
* [Troubleshoot Azure Stream Analytics outputs](stream-analytics-troubleshoot-output.md)
75+
* [Troubleshoot Azure Stream Analytics queries](stream-analytics-troubleshoot-query.md)
76+
* [Troubleshoot Azure Stream Analytics by using resource logs](stream-analytics-job-diagnostic-logs.md)
77+
* [Azure Stream Analytics data errors](data-errors.md)

0 commit comments

Comments
 (0)