Skip to content

Commit 2a4cff6

Browse files
authored
Merge pull request #47674 from sidramadoss/patch-9
Create output-error-policy.md
2 parents dbdf341 + c98acbe commit 2a4cff6

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

articles/stream-analytics/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
href: stream-analytics-out-of-order-and-late-events.md
5353
- name: Checkpoint and replay
5454
href: stream-analytics-concepts-checkpoint-replay.md
55+
- name: Error policy
56+
href: output-error-policy.md
5557
- name: How-to-guides
5658
items:
5759
- name: Manage
5.82 KB
Loading
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Output error policies in Azure Stream Analytics
3+
description: Learn about the output error handling policies available in Azure Stream Analytics.
4+
services: stream-analytics
5+
author: sidram
6+
ms.author: sidram
7+
manager: jeanb
8+
ms.reviewer: jasonh
9+
ms.service: stream-analytics
10+
ms.topic: conceptual
11+
ms.date: 07/27/2018
12+
---
13+
# Output error policy
14+
This article describes the output data error handling policies that can be configured in Azure Stream Analytics.
15+
16+
Output data error handling policies apply only to data conversion errors that occur when the output event produced by a Stream Analytics job does not conform to the schema of the target sink. You can configure this policy by choosing either **Retry** or **Drop**. In the Azure portal, while in a Stream Analytics job, under **Configure**, select **Error Policy** to make your selection.
17+
18+
![Error Policy - location](./media/stream-analytics-error-policy/stream-analytics-error-policy-locate.PNG)
19+
20+
21+
## Retry
22+
When an error occurs, Azure Stream Analytics retries writing the event indefinitely until the write succeeds. There is no timeout for retries. Eventually all subsequent events are blocked from processing by the event that is retrying. This option is the default output error handling policy.
23+
24+
## Drop
25+
Azure Stream Analytics will drop any output event that results in a data conversion error. The dropped events cannot be recovered for reprocessing later.
26+
27+
28+
All transient errors (for example, network errors) are retried regardless of the output error handling policy configuration.
29+
30+
31+
## Next steps
32+
[Troubleshooting guide for Azure Stream Analytics](stream-analytics-troubleshooting-guide.md)

0 commit comments

Comments
 (0)