Skip to content

Files

Latest commit

Dec 6, 2021
4d831fb · Dec 6, 2021

History

History
73 lines (43 loc) · 4.22 KB

visual-studio-code-local-run-live-input.md

File metadata and controls

73 lines (43 loc) · 4.22 KB
title description ms.service author ms.author ms.date ms.topic
Test Azure Stream Analytics queries locally against live stream input by using Visual Studio Code
How to test queries locally against live stream input by using Azure Stream Analytics Tools for Visual Studio Code.
stream-analytics
su-jie
sujie
11/14/2019
how-to

Test Stream Analytics queries locally against live stream input by using Visual Studio Code

You can use Azure Stream Analytics Tools for Visual Studio Code to test your Stream Analytics jobs locally against live stream input. The input can come from a source like Azure Event Hubs or Azure IoT Hub. The output results are sent as JSON files to a folder in your project called LocalRunOutputs.

For more information, see Overview of local Stream Analytics runs in Visual Studio Code with ASA Tools.

Prerequisites

  • Install the .NET Core SDK and restart Visual Studio Code.

  • Use this quickstart to learn how to create a Stream Analytics job by using Visual Studio Code.

Define a live stream input

  1. Right-click the Inputs folder in your Stream Analytics project. Then select ASA: Add Input from the context menu.

    Add input from the Inputs folder

    You can also select Ctrl+Shift+P to open the command palette and enter ASA: Add Input.

    Add Stream Analytics input in Visual Studio Code

  2. Choose an input source type from the drop-down list.

    Select IoT hub as the input option

  3. If you added the input from the command palette, choose the Stream Analytics query script that will use the input. It should be automatically populated with the file path to myASAproj.asaql.

    Select a Stream Analytics script in Visual Studio Code

  4. Choose Select from your Azure Subscriptions from the drop-down menu.

    Select from subscriptions

  5. Configure the newly generated JSON file. You can use the CodeLens feature to help you enter a string, select from a drop-down list, or change the text directly in the file. The following screenshot shows Select from your Subscriptions as an example.

    Configure input in Visual Studio Code

Preview input

To make sure that the input data is coming, select Preview data in your live input configuration file from the top line. Some input data comes from an IoT hub and is shown in the preview window. The preview might take a few seconds to appear.

Preview live input

Run queries locally

Return to your query editor, and select Run locally. Then select Use Live Input from the drop-down list.

Select "Run locally" in the query editor

Select "Use Live Input"

The result is shown in the right window and refreshed every 3 seconds. You can select Run to test again. You can also select Open in folder to see the result files in File Explorer and open them with Visual Studio Code or a tool like Excel. The result files are available only in JSON format.

The default time for the job to start creating output is set to Now. You can customize the time by selecting the Output start time button in the result window.

View local run result

Next steps