Skip to content

Commit 9b9afe4

Browse files
authored
Merge pull request #118644 from danewalton/datalake-update
update datalake table name
2 parents e39dcd9 + 0f6c717 commit 9b9afe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/iot-operations/connect-to-cloud/howto-configure-data-lake.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ The specification field of a DataLakeConnectorTopicMap resource contains the fol
270270
- `mqttSourceTopic`: The name of the MQTT topic(s) to subscribe to. Supports [MQTT topic wildcard notation](https://chat.openai.com/share/c6f86407-af73-4c18-88e5-f6053b03bc02).
271271
- `qos`: The quality of service level for subscribing to the MQTT topic. It can be one of 0 or 1.
272272
- `table`: The table field specifies the configuration and properties of the Delta table in the Data Lake Storage account. It has the following subfields:
273-
- `tableName`: The name of the Delta table to create or append to in the Data Lake Storage account. This field is also known as the container name when used with Azure Data Lake Storage Gen2. It can contain any English letter, upper or lower case, and underbar `_`, with length up to 256 characters. No dashes `-` or space characters are allowed.
273+
- `tableName`: The name of the Delta table to create or append to in the Data Lake Storage account. This field is also known as the container name when used with Azure Data Lake Storage Gen2. It can contain any **lower case** English letter, and underbar `_`, with length up to 256 characters. No dashes `-` or space characters are allowed.
274274
- `schema`: The schema of the Delta table, which should match the format and fields of the message payload. It's an array of objects, each with the following subfields:
275275
- `name`: The name of the column in the Delta table.
276276
- `format`: The data type of the column in the Delta table. It can be one of `boolean`, `int8`, `int16`, `int32`, `int64`, `uInt8`, `uInt16`, `uInt32`, `uInt64`, `float16`, `float32`, `float64`, `date32`, `timestamp`, `binary`, or `utf8`. Unsigned types, like `uInt8`, aren't fully supported, and are treated as signed types if specified here.
@@ -295,7 +295,7 @@ spec:
295295
mqttSourceTopic: "orders"
296296
qos: 1
297297
table:
298-
tableName: "ordersTable"
298+
tableName: "orders"
299299
schema:
300300
- name: "orderId"
301301
format: int32

0 commit comments

Comments
 (0)