Use Azure Stream Analytics no-code editor to transform and store data in Azure SQL database

This article describes how you can use the no code editor to easily create a Stream Analytics job, which continuously reads data from an Event Hubs instance (event hub), transforms the data, and then writes results to an Azure SQL database.

Prerequisites

Your Azure Event Hubs and Azure SQL Database resources must be publicly accessible and not be behind a firewall or secured in an Azure Virtual Network. The data in your Event Hubs must be serialized in either JSON, CSV, or Avro format.

If you want to try steps in this article, follow these steps.

  • Create an event hub if you don't have one already. Generate data in the event hub. On the Event Hubs Instance page, select Generate data (preview) on the left menu, select Stock data for Dataset, and then select Send to send some sample data to the event hub. This step is required if you want to test steps in this article.

    Screenshot showing the Generate data (preview) page of an Event Hubs instance.

  • Create an Azure SQL database. Here are a few important points to note while creating the database.

    1. On the Basics page, select Create new for Server. Then, on the Create SQL Database server page, select Use SQL authentication, and specify admin user ID and password.

    2. On the Networking page, follow these steps:

      1. Enable Public endpoint.
      2. Select Yes for Allow Azure services and resources to access this server.
      3. Select Yes for Add current client IP address.
    3. On the Additional settings page, select None for Use existing data.

    4. In the article, skip steps in the Query the database and Clean up resources sections.

    5. If you want to test steps, create a table in the SQL database by using the Query editor (preview).

      create table stocks (
          symbol varchar(4),
          price decimal
      )
      

Use no-code editor to create a Stream Analytics job

In this section, you create an Azure Stream Analytics job using the no-code editor. The job transforms data streaming from an Event Hubs instance (event hub) and store result data in an Azure SQL database.

  1. In the Azure portal, navigate to the Event Hubs Instance page for your event hub.

  2. Select Features > Process Data on the left menu and then select Start on the Transform and store data to SQL database card.

    Screenshot showing the Filter and ingest to ADLS Gen2 card where you select Start.

  3. Enter a name for the Stream Analytics job, then select Create. You see the Stream Analytics job diagram with Event Hubs window to the right.

    Screenshot showing where to enter a job name.

  4. On the Event hub window, review Serialization and Authentication mode settings, and select Connect.

    Screenshot showing the Event Hubs connection configuration.

  5. When the connection is established successfully and you have data in your Event Hubs instance, you see two things:

    • Fields that are present in the input data. You can choose Add field or select the three dot symbol next to a field to remove, rename, or change its type.

      Screenshot showing the Event Hubs field list where you can remove, rename, or change the field type.

    • A live sample of incoming data in the Data preview table under the diagram view. It automatically refreshes periodically. You can select Pause streaming preview to see a static view of the sample input data.

      Screenshot showing sample data under Data Preview.

  6. Select the Group by tile to aggregate the data. In the Group by configuration panel, You can specify the field that you want to Group By along with the Time window.

    In the following example, average of price and symbol are used.

    Screenshot that shows the group by operator configuration.

  7. You can validate the results of the step in the Data preview section.

    Screenshot that shows the data preview for the group by operator.

  8. Select the Manage fields tile. In the Manage fields configuration panel, choose the fields you want to output by selecting Add field -> Imported Schema -> field.

    If you want to add all the fields, select Add all fields. While adding a field, you can specify different name for the output. For example, AVG_Value to Value. After you save the selections, you see data in the Data preview pane.

    In the following example, Symbol and AVG_Value are selected. Symbol is mapped to symbol, and AVG_Value is mapped to price.

    Screenshot that shows the manage field operator configuration.

  9. Select SQL tile. In the SQL Database configuration panel, fill in needed parameters and connect. Select Load existing table to have the table automatically picked. In the following example, [dbo].[stocks] is picked. Then, select Connect.

    Note

    The schema of the table you choose to write must exactly match the number of fields and their types that your data preview generates.

    Screenshot that shows the sql database output configuration.

  10. In the Data preview pane, you see the data preview that is ingested in SQL database.

    Screenshot showing the Get static preview/Refresh static preview option.

  11. Select Save and then select Start the Stream Analytics job.

    Screenshot showing the Save and Start options.

  12. To start the job, specify:

    • The number of Streaming Units (SUs) the job runs with. SUs represents the amount of compute and memory allocated to the job. We recommended that you start with three and then adjust as needed.

    • Output data error handling – It allows you to specify the behavior you want when a job’s output to your destination fails due to data errors. By default, your job retries until the write operation succeeds. You can also choose to drop such output events.

      Screenshot showing the Start Stream Analytics job options where you can change the output time, set the number of streaming units, and select the Output data error handling options.

  13. After you select Start, the job starts running within two minutes. You see the metrics panel in the bottom pane open. It takes sometime for this panel to updated. Select Refresh in the top-right corner of the panel to refresh the chart. Proceed to the next step in a separate tab or window of the web browser.

    Screenshot that shows the job metrics after it's started.

    You can also see the job under the Process Data section on the Stream Analytics jobs tab. Select Open metrics to monitor it or stop and restart it, as needed.

    Screenshot of the Stream Analytics jobs tab where you view the running jobs status.

  14. Navigate to your event hub in the portal in a separate browser window or tab, and send sample stock data again (as you did in the prerequisites). On the Event Hubs Instance page, select Generate data (preview) on the left menu, select Stock data for Dataset, and then select Send to send some sample data to the event hub. It make take a few minutes to see the Metrics panel updated.

  15. You should see records inserted in the Azure SQL database.

    Screenshot that shows contents of the stocks table in the database.

Next steps

Learn more about Azure Stream Analytics and how to monitor the job you've created.