Skip to content

Commit 9768a75

Browse files
authored
Merge pull request #126479 from changeworld/patch-31
Fix typo
2 parents b0e2a63 + 6557590 commit 9768a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Azure IoT Hub is a highly scalable publish-subscribe event ingestor optimized fo
8686

8787
The default timestamp of events coming from an IoT Hub in Stream Analytics is the timestamp that the event arrived in the IoT Hub, which is `EventEnqueuedUtcTime`. To process the data as a stream using a timestamp in the event payload, you must use the [TIMESTAMP BY](/stream-analytics-query/timestamp-by-azure-stream-analytics) keyword.
8888

89-
### Iot Hub Consumer groups
89+
### IoT Hub Consumer groups
9090

9191
You should configure each Stream Analytics IoT Hub input to have its own consumer group. When a job contains a self-join or when it has multiple inputs, some input might be read by more than one reader downstream. This situation impacts the number of readers in a single consumer group. To avoid exceeding the Azure IoT Hub limit of five readers per consumer group per partition, it's a best practice to designate a consumer group for each Stream Analytics job.
9292

@@ -101,7 +101,7 @@ The following table explains each property in the **New input** page in the Azur
101101
| **IoT Hub** | The name of the IoT Hub to use as input. |
102102
| **Consumer group** | We recommend that you use a different consumer group for each Stream Analytics job. The consumer group is used to ingest data from the IoT Hub. Stream Analytics uses the $Default consumer group unless you specify otherwise. |
103103
| **Shared access policy name** | The shared access policy that provides access to the IoT Hub. Each shared access policy has a name, permissions that you set, and access keys. |
104-
| **Shared access policy key** | The shared access key used to authorize access to the IoT Hub. This option is automatically populated in unless you select the option to provide the Iot Hub settings manually. |
104+
| **Shared access policy key** | The shared access key used to authorize access to the IoT Hub. This option is automatically populated in unless you select the option to provide the IoT Hub settings manually. |
105105
| **Endpoint** | The endpoint for the IoT Hub.|
106106
| **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." |
107107
| **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. |

0 commit comments

Comments
 (0)