Skip to content

Commit c2a3578

Browse files
committed
Resolutions
1 parent 6ee2eb0 commit c2a3578

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

articles/synapse-analytics/data-explorer/ingest-data/data-explorer-ingest-event-hub-csharp.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Use C\# ingestion to ingest data from Event Hub into Azure Synapse Data Explorer (Preview)
3-
description: Learn how to use C\# to ingest (load) data into Azure Synapse Data Explorer from Event Hub.
2+
title: Use C\# ingestion to ingest data from Event Hubs into Azure Synapse Data Explorer (Preview)
3+
description: Learn how to use C\# to ingest (load) data into Azure Synapse Data Explorer from Event Hubs.
44
ms.topic: how-to
55
ms.date: 11/02/2021
66
author: shsagir
@@ -10,7 +10,7 @@ ms.service: azure-synapse-analytics
1010
ms.subservice: data-explorer
1111
---
1212

13-
# Create an Event Hub data connection for Azure Synapse Data Explorer by using C# (Preview)
13+
# Create an Event Hubs data connection for Azure Synapse Data Explorer by using C# (Preview)
1414

1515
> [!div class="op_single_selector"]
1616
> * [Portal](data-explorer-ingest-event-hub-portal.md)
@@ -21,13 +21,13 @@ ms.subservice: data-explorer
2121
2222
[!INCLUDE [data-connector-intro](../includes/data-explorer-ingest-data-intro.md)]
2323

24-
In this article, you create an Event Hub data connection for Azure Synapse Data Explorer by using C\#.
24+
In this article, you create an Event Hubs data connection for Azure Synapse Data Explorer by using C\#.
2525

2626
## Prerequisites
2727

2828
[!INCLUDE [data-explorer-ingest-prerequisites](../includes/data-explorer-ingest-prerequisites.md)]
2929

30-
- [Event Hub with data for ingestion](data-explorer-ingest-event-hub-portal.md#create-an-event-hubs).
30+
- [Event hub with data for ingestion](data-explorer-ingest-event-hub-portal.md#create-an-event-hubs).
3131

3232
> [!NOTE]
3333
> Ingesting data from an Event Hub into Data Explorer pools will not work if your Synapse workspace uses a managed virtual network with data exfiltration protection enabled.
@@ -42,9 +42,9 @@ In this article, you create an Event Hub data connection for Azure Synapse Data
4242

4343
[!INCLUDE [data-explorer-authentication](../includes/data-explorer-authentication.md)]
4444

45-
## Add an Event Hub data connection
45+
## Add an Event Hubs data connection
4646

47-
The following example shows you how to add an Event Hub data connection programmatically. See [connect to the Event Hub](data-explorer-ingest-event-hub-portal.md#connect-to-the-event-hubs) for information about adding an Event Hub data connection using the Azure portal.
47+
The following example shows you how to add an Event Hubs data connection programmatically. See [connect to the Event Hubs](data-explorer-ingest-event-hub-portal.md#connect-to-the-event-hubs) for information about adding an Event Hubs data connection using the Azure portal.
4848

4949
```csharp
5050
var tenantId = "xxxxxxxx-xxxxx-xxxx-xxxx-xxxxxxxxx";//Directory (tenant) ID
@@ -93,14 +93,14 @@ await kustoManagementClient.DataConnections.CreateOrUpdateAsync(resourceGroupNam
9393
| tableName | *StormEvents* | The name of the target table in the target database.|
9494
| mappingRuleName | *StormEvents_CSV_Mapping* | The name of your column mapping related to the target table.|
9595
| dataFormat | *csv* | The data format of the message.|
96-
| eventHubResourceId | *Resource ID* | The resource ID of your Event Hub that holds the data for ingestion. |
97-
| consumerGroup | *$Default* | The consumer group of your Event Hub.|
96+
| eventHubResourceId | *Resource ID* | The resource ID of your event hub that holds the data for ingestion. |
97+
| consumerGroup | *$Default* | The consumer group of your event hub.|
9898
| location | *Central US* | The location of the data connection resource.|
9999
| compression | *Gzip* or *None* | The type of data compression. |
100100

101101
## Generate data
102102

103-
See the [sample app](https://github.com/Azure-Samples/event-hubs-dotnet-ingest) that generates data and sends it to an Event Hub.
103+
See the [sample app](https://github.com/Azure-Samples/event-hubs-dotnet-ingest) that generates data and sends it to an event hub.
104104

105105
An event can contain one or more records, up to its size limit. In the following sample we send two events, each has five records appended:
106106

articles/synapse-analytics/data-explorer/ingest-data/data-explorer-ingest-event-hub-one-click.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Azure Synapse Data Explorer offers ingestion (data loading) from Event Hubs, a b
3939

4040
1. In the left menu of the Web UI, select the **Data** tab.
4141

42-
:::image type="content" source="../media/ingest-data-event-hub/one-click-ingestion-event-hub.png" alt-text="Select one-select ingest data from Event Hubs in the web UI.":::
42+
:::image type="content" source="../media/ingest-data-event-hub/one-click-ingestion-event-hub.png" alt-text="Screenshot showing the Azure Data Explorer Data menu with ingest from event hub highlighted.":::
4343

4444
1. In the **Ingest data from Event Hub** card, select **Ingest**.
4545

articles/synapse-analytics/data-explorer/ingest-data/data-explorer-ingest-event-hub-portal.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,24 +50,24 @@ Azure Synapse Data Explorer offers ingestion (data loading) from Event Hubs, a b
5050
```
5151
5252
- We recommend using a [user assigned managed identity](../../../active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm.md#user-assigned-managed-identity) or [system assigned managed identity](../../../active-directory/managed-identities-azure-resources/qs-configure-portal-windows-vm.md#system-assigned-managed-identity) for the data connection (optional).
53-
- [A sample app](https://github.com/Azure-Samples/event-hubs-dotnet-ingest) that generates data and sends it to an Event Hubs. Download the sample app to your system.
53+
- [A sample app](https://github.com/Azure-Samples/event-hubs-dotnet-ingest) that generates data and sends it to an event hub. Download the sample app to your system.
5454
- [Visual Studio 2019](https://visualstudio.microsoft.com/vs/) to run the sample app.
5555
5656
## Sign in to the Azure portal
5757
5858
Sign in to the [Azure portal](https://portal.azure.com/).
5959
60-
## Create an Event Hubs
60+
## Create an event hub
6161
62-
Create an Event Hubs by using an Azure Resource Manager template in the Azure portal.
62+
Create an event hub by using an Azure Resource Manager template in the Azure portal.
6363
64-
1. To create an Event Hubs, use the following button to start the deployment. Right-click and select **Open in new window**, so you can follow the rest of the steps in this article.
64+
1. To create an event hub, use the following button to start the deployment. Right-click and select **Open in new window**, so you can follow the rest of the steps in this article.
6565
6666
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.eventhub%2Fevent-hubs-create-event-hub-and-consumer-group%2Fazuredeploy.json":::
6767
6868
The **Deploy to Azure** button takes you to the Azure portal.
6969
70-
1. Select the subscription where you want to create the Event Hubs, and create a resource group named *test-hub-rg*.
70+
1. Select the subscription where you want to create the event hub, and create a resource group named *test-hub-rg*.
7171
7272
![Create a resource group](../media/ingest-data-event-hub/create-resource-group.png)
7373
@@ -115,7 +115,7 @@ Now you connect to the Event Hubs from Data Explorer pool. When this connection
115115
116116
1. Under the Data Explorer pool you created, select **Databases** > **TestDatabase**.
117117
118-
:::image type="content" source="../media/ingest-data-event-hub/select-test-database.png" alt-text="Select test database.":::
118+
:::image type="content" source="../media/ingest-data-event-hub/select-test-database.png" alt-text="Screenshot of the test database pool, showing select test database.":::
119119
120120
1. Select **Data connections** and **Add data connection**.
121121
@@ -125,7 +125,7 @@ Now you connect to the Event Hubs from Data Explorer pool. When this connection
125125
126126
Fill out the form with the following information, and then select **Create**.
127127
128-
:::image type="content" source="../media/ingest-data-event-hub/data-connection-pane.png" alt-text="Data connection pane Event Hubs - Azure Synapse Data Explorer.":::
128+
:::image type="content" source="../media/ingest-data-event-hub/data-connection-pane.png" alt-text="Screenshot of the data connection pane in Event Hubs.":::
129129
130130
**Setting** | **Suggested value** | **Field description**
131131
|---|---|---|

0 commit comments

Comments
 (0)