Skip to content

Commit add39ec

Browse files
committed
updated article
1 parent 7e371f6 commit add39ec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/event-hubs/store-captured-data-data-warehouse.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
22

33
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.
44

55
![Visual Studio](./media/store-captured-data-data-warehouse/EventGridIntegrationOverview.PNG)
66

77
* 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.
88
* 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.
1010

1111
In this tutorial, you do the following actions:
1212

1313
> [!div class="checklist"]
14-
> * Deploy the infrastructure for this solution
14+
> * Deploy infrastructure for this solution
1515
> * Create a table in SQL Data Warehouse
1616
> * Publish code to the Functions App
1717
> * Create an Event Grid subscription from the Functions app
18-
> * Stream sample data intoEvent Hub.
18+
> * Stream sample data into Event Hub.
1919
> * Verify captured data in SQL Data Warehouse
2020
2121
# Prerequisites
@@ -36,7 +36,7 @@ Deploy the infrastructure needed for this tutorial by using this [Azure Resource
3636
- SQL Data Warehouse for storing the migrated data
3737

3838

39-
To deploy the template using Azure CLI, use:
39+
To deploy the template using Azure CLI, use the following commands:
4040

4141
```azurecli-interactive
4242
az group create -l westcentralus -n rgDataMigrationSample
@@ -46,7 +46,7 @@ az group deployment create \
4646
--template-uri https://raw.githubusercontent.com/Azure/azure-docs-json-samples/master/event-grid/EventHubsDataMigration.json \
4747
--parameters eventHubNamespaceName=<event-hub-namespace> eventHubName=hubdatamigration sqlServerName=<sql-server-name> sqlServerUserName=<user-name> sqlServerPassword=<password> sqlServerDatabaseName=<database-name> storageName=<unique-storage-name> functionAppName=<app-name>
4848
```
49-
To deploy the template using PowerShell, use:
49+
To deploy the template using PowerShell, use the following commands:
5050

5151
```powershell
5252
New-AzureRmResourceGroup -Name rgDataMigration -Location westcentralus
@@ -59,7 +59,7 @@ Create a table in your SQL data warehouse by running the *CreateDataWarehouseTab
5959

6060
## Publish code to the Functions App
6161

62-
1. Open the project solution *EventHubsCaptureEventGridDemo.sln* in Visual Studio 2017 (15.3.2 or greater).
62+
1. Open the solution *EventHubsCaptureEventGridDemo.sln* in Visual Studio 2017 (15.3.2 or greater).
6363

6464
1. In Solution Explorer, right-click *FunctionEGDWDumper*, and select **Publish**.
6565

0 commit comments

Comments
 (0)