Skip to content

Files

109 lines (65 loc) · 6.52 KB

debug-locally-using-job-diagram-vs-code.md

File metadata and controls

109 lines (65 loc) · 6.52 KB
title description author ms.author ms.service ms.topic ms.date
Debug Azure Stream Analytics queries locally using job diagram in Visual Studio Code
This article describes how to debug queries locally using job diagram in the Azure Stream Analytics extension for Visual Studio Code.
su-jie
sujie
stream-analytics
how-to
06/23/2020

Debug Azure Stream Analytics queries locally using job diagram in Visual Studio Code (Preview)

Streaming jobs that output no result or unexpected results often need troubleshooting. The Visual Studio Code extension for Azure Stream Analytics integrates job diagrams, metrics, diagnostic logs, and intermediate results to help you quickly isolate the source of a problem. You can use the job diagram while testing your query locally to examine the intermediate result set and metrics for each step.

Debug a query using job diagram

An Azure Stream Analytics script is used to transform input data to output data. The job diagram shows how data flows from input sources, like Event Hub or IoT Hub, through multiple query steps 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.

Note

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.

Start local testing

Use this Quickstart to learn how to create a Stream Analytics job using Visual Studio Code or export an existing job to a local project. Credentials for inputs and outputs are automatically populated for exported jobs.

If you want to test the query with local input data, follow these instructions. If you want to test with live input, configure your input move to the next step.

Open the .asaql script file and select Run locally. Then, select Use local input or Use live input. The job diagram appears on the right side of the window.

View the output and intermediate result set

  1. All the job outputs are displayed in the result window at the bottom-right side of the Visual Studio Code window.

    [!div class="mx-imgBorder"] Job output results

  2. Select the query step to navigate to the script. You're automatically directed to the corresponding script in the editor on the left. The intermediate result appears in the result window at the bottom-right side of the Visual Studio Code window.

    [!div class="mx-imgBorder"] Job diagram preview result

View metrics

In this section, you explore the metrics available for each part of the diagram.

  1. Select the Metrics tab next to the Result tab on the bottom-right side of the Visual Studio Code window.

  2. Select Job from the dropdown. You can select any empty space in a graph node to navigate to job level metrics. This view contains all the metrics, which are updated every 10 seconds when the job is running. You can select or unselect the metrics on the right side to view them in the charts.

    [!div class="mx-imgBorder"] Job diagram metrics

  3. Select the name of the input data source from the dropdown to see input metrics. The input source in the screenshot below is called quotes. For more information about input metrics, see Understand Stream Analytics job monitoring and how to monitor queries.

    [!div class="mx-imgBorder"] Job diagram input metrics

  4. Select a query step from the job diagram or select the step name from the dropdown to see step level metrics. Watermark delay is the only available step metric.

    [!div class="mx-imgBorder"] Step metrics

  5. Select an output in the diagram or from the dropdown to see output-related metrics. For more information about output metrics, see Understand Stream Analytics job monitoring and how to monitor queries. Live output sinks aren't supported.

    [!div class="mx-imgBorder"] Output metrics

View diagnostic logs

Job level diagnostic logs contain diagnostic information for input data sources and output sinks. When you select an input node or output node, only the corresponding logs are shown. There are no logs shown if you select a query step. You can find all logs at the job level, and you can filter the logs by severity and time.

[!div class="mx-imgBorder"] Diagnostic logs

Select a log entry to see the entire message.

[!div class="mx-imgBorder"] Diagnostic logs message

Other job diagram features

You can select Stop or Pause from the tool bar as needed. Once the job is paused, you can resume it from last output.

[!div class="mx-imgBorder"] Stop or pause job

Select Job Summary at the top-right of the job diagram to see properties and configurations for your local job.

[!div class="mx-imgBorder"] Local job summary

Limitations

  • Live output sinks aren't supported in local run.

  • Run job locally with JavaScript function is only supported on the Windows operating system.

  • C# custom code and Azure Machine Learning functions aren't supported.

  • Only cloud input options have time policies support, while local input options don't.

Next steps