You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/stream-analytics/debug-locally-using-job-diagram.md
+50-42Lines changed: 50 additions & 42 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: sujie
6
6
ms.reviewer: mamccrea
7
7
ms.service: stream-analytics
8
8
ms.topic: conceptual
9
-
ms.date: 01/21/2020
9
+
ms.date: 01/23/2020
10
10
---
11
11
12
12
# Debug Azure Stream Analytics queries locally using job diagram in Visual Studio
@@ -15,7 +15,7 @@ Jobs that output no result or unexpected results are common troubleshooting scen
15
15
16
16
## Debug a query using job diagram
17
17
18
-
An Azure Stream Analytics script is used to transform input data to output data. The job diagram shows how data flows from input sources (Event Hub, IoT Hub, etc) through multiple query steps and finally output to sinks. Each query step is mapped to a temporary result set defined in the script using a `WITH` statement. You can view the data as well as metrics of each query step in each intermediate result set to find the source of an issue.
18
+
An Azure Stream Analytics script is used to transform input data to output data. The job diagram shows how data flows from input sources (Event Hub, IoT Hub, etc) through multiple query steps and, finally, to output sinks. Each query step is mapped to a temporary result set defined in the script using a `WITH` statement. You can view the data as well as metrics of each query step in each intermediate result set to find the source of an issue.
19
19
20
20
> [!NOTE]
21
21
> This job diagram only shows the data and metrics for local testing in a single node. It should not be used for performance tuning and troubleshooting.
@@ -31,66 +31,74 @@ Choose the input and output source from the script editor and select **Run local
31
31
32
32
### View the intermediate result set
33
33
34
-
#### Navigate to script
35
-
36
34
1. Select the query step to navigate to the script. You are automatically directed to the corresponding script in the editor on the left.
0 commit comments