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/event-hubs/store-captured-data-data-warehouse.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
-
# Store captured Event Hubs data in a SQL Data Warehouse using Event Grid and Azure Functions
1
+
# Capture Event Hubs data in a SQL Data Warehouse using Event Grid and Azure Functions
2
2
3
3
Event Hubs [Capture](https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-capture-overview) is the easiest way to automatically deliver streamed data in Event Hubs to an Azure Blob storage or Azure Data Lake store. You can subsequently process and deliver the data to any other storage destinations of your choice, such as SQL Data Warehouse or Cosmos DB. In this tutorial, you learn how you to capture data from your event hub into a SQL Database Warehouse by using an [Event Grid](https://docs.microsoft.com/azure/event-grid/overview) triggered Azure Function.
* First, you create an event hub with the Capture feature enabled and set an Azure blob storage as the destination. Data generated by WindTurbineGenerator is streamed into the event hub and is automatically captured into Azure Storage as Avro files.
8
8
* Next, you create an Azure Event Grid subscription with the Event Hubs namespace as its source and the Azure Function endpoint as its destination.
9
-
* Whenever a new Avro file is delivered to the Azure Storage blob by Event Hubs Capture, Event Grid notifies the Azure Function with the blob URI. The Function then migrates the data from the Storage blob to a SQL Database data warehouse.
9
+
* Whenever a new Avro file is delivered to the Azure Storage blob by Event Hubs Capture, Event Grid notifies the Azure Function with the blob URI. The Function then migrates the data from the Storage blob to a SQL data warehouse.
10
10
11
11
In this tutorial, you do the following actions:
12
12
13
13
> [!div class="checklist"]
14
-
> * Deploy the infrastructure for this solution
14
+
> * Deploy infrastructure for this solution
15
15
> * Create a table in SQL Data Warehouse
16
16
> * Publish code to the Functions App
17
17
> * Create an Event Grid subscription from the Functions app
18
-
> * Stream sample data intoEvent Hub.
18
+
> * Stream sample data into Event Hub.
19
19
> * Verify captured data in SQL Data Warehouse
20
20
21
21
# Prerequisites
@@ -36,7 +36,7 @@ Deploy the infrastructure needed for this tutorial by using this [Azure Resource
36
36
- SQL Data Warehouse for storing the migrated data
37
37
38
38
39
-
To deploy the template using Azure CLI, use:
39
+
To deploy the template using Azure CLI, use the following commands:
40
40
41
41
```azurecli-interactive
42
42
az group create -l westcentralus -n rgDataMigrationSample
0 commit comments