Skip to content

Commit c1c06e7

Browse files
authored
Merge pull request #124240 from Thwani47/patch-1
Fixed a few grammatical errors on stream-analytics-define-inputs.md
2 parents 8744de2 + 4967326 commit c1c06e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/stream-analytics/stream-analytics-define-inputs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Stream data as input into Azure Stream Analytics
3-
description: Learn about setting up a data connection in Azure Stream Analytics. Inputs include a data stream from events, and also reference data.
3+
description: Learn about setting up a data connection in Azure Stream Analytics. Inputs include a data stream from events and also reference data.
44
author: AliciaLiMicrosoft
55
ms.author: ali
66
ms.service: azure-stream-analytics
@@ -9,7 +9,7 @@ ms.date: 01/25/2024
99
---
1010
# Stream data as input into Stream Analytics
1111

12-
Stream Analytics has first-class integration with Azure data streams as inputs from three kinds of resources:
12+
Stream Analytics has first-class integration with Azure data streams as inputs from four kinds of resources:
1313

1414
- [Azure Event Hubs](https://azure.microsoft.com/services/event-hubs/)
1515
- [Azure IoT Hub](https://azure.microsoft.com/services/iot-hub/)
@@ -50,7 +50,7 @@ The following table explains each property in the **New input** page in the Azur
5050
| **Event Hub namespace** | The Event Hubs namespace is a container for event hubs. When you create an event hub, you also create the namespace. |
5151
| **Event Hub name** | The name of the event hub to use as input. |
5252
| **Event Hub consumer group** (recommended) | We recommend that you use a distinct consumer group for each Stream Analytics job. This string identifies the consumer group to use to ingest data from the event hub. If no consumer group is specified, the Stream Analytics job uses the `$Default` consumer group. |
53-
| **Authentication mode** | Specify the type of the authentication you want to use to connect to the event hub. You can use a connection string or a managed identity to authenticate with the event hub. For the managed identity option, you can either create a system-assigned managed identity to the Stream Analytics job or a user-assigned managed identity to authenticate with the event hub. When you use a managed identity, the managed identity must be a member of [Azure Event Hubs Data Receiver or Azure Event Hubs Data Owner roles](../event-hubs/authenticate-application.md#built-in-roles-for-azure-event-hubs). |
53+
| **Authentication mode** | Specify the type of the authentication you want to use to connect to the event hub. You can use a connection string or a managed identity to authenticate with the event hub. For the managed identity option, you can either create a system-assigned managed identity for the Stream Analytics job or a user-assigned managed identity to authenticate with the event hub. When you use a managed identity, the managed identity must be a member of [Azure Event Hubs Data Receiver or Azure Event Hubs Data Owner roles](../event-hubs/authenticate-application.md#built-in-roles-for-azure-event-hubs). |
5454
| **Event Hub policy name** | The shared access policy that provides access to the Event Hubs. Each shared access policy has a name, permissions that you set, and access keys. This option is automatically populated, unless you select the option to provide the Event Hubs settings manually.|
5555
| **Partition key** | It's an optional field that is available only if your job is configured to use [compatibility level](./stream-analytics-compatibility-level.md) 1.2 or higher. If your input is partitioned by a property, you can add the name of this property here. It's used for improving the performance of your query if it includes a `PARTITION BY` or `GROUP BY` clause on this property. If this job uses compatibility level 1.2 or higher, this field defaults to `PartitionId.` |
5656
| **Event serialization format** | The serialization format (JSON, CSV, Avro, Parquet, or [Other (Protobuf, XML, proprietary...)](custom-deserializer.md)) of the incoming data stream. Ensure the JSON format aligns with the specification and doesn’t include leading 0 for decimal numbers. |
@@ -63,7 +63,7 @@ When your data comes from an Event Hubs stream input, you have access to the fol
6363
| Property | Description |
6464
| --- | --- |
6565
| **EventProcessedUtcTime** |The date and time when Stream Analytics processes the event. |
66-
| **EventEnqueuedUtcTime** |The date and time that when Event Hubs receives the events. |
66+
| **EventEnqueuedUtcTime** |The date and time when Event Hubs receives the events. |
6767
| **PartitionId** |The zero-based partition ID for the input adapter. |
6868

6969
For example, using these fields, you can write a query like the following example:

0 commit comments

Comments
 (0)