Skip to content

Commit c4dc6e4

Browse files
fixing some wordings
1 parent 6dc821e commit c4dc6e4

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

articles/iot-operations/connect-to-cloud/howto-create-dataflow.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ To create a dataflow in the operations experience portal, select **Dataflow** >
6262

6363
This Bicep template file from [Bicep File to create Dataflow](https://github.com/Azure-Samples/explore-iot-operations/blob/main/samples/quickstarts/dataflow.bicep) deploys the necessary resources for dataflows.
6464

65-
1. Download the file to your local, and make sure to replace the values for `customLocationName`, `aioInstanceName`, `schemaRegistryName`, `opcuaSchemaName`, and `persistentVCName`.
65+
1. Download the file to your local, and replace the values for `customLocationName`, `aioInstanceName`, `schemaRegistryName`, `opcuaSchemaName`, and `persistentVCName`.
6666

67-
1. Next, deploy the resources using the [az stack group](/azure/azure-resource-manager/bicep/deployment-stacks?tabs=azure-powershell) command in your terminal:
67+
2. Next, deploy the resources using the [az stack group](/azure/azure-resource-manager/bicep/deployment-stacks?tabs=azure-powershell) command in your terminal:
6868

6969
```azurecli
7070
az stack group create --name MyDeploymentStack --resource-group $RESOURCE_GROUP --template-file /workspaces/explore-iot-operations/<filename>.bicep --action-on-unmanage 'deleteResources' --deny-settings-mode 'none' --yes
@@ -186,18 +186,22 @@ The MQTT endpoint is configured in the Bicep template file. This endpoint serves
186186
{
187187
operationType: 'Source'
188188
sourceSettings: {
189-
endpointRef: MqttBrokerDataflowEndpoint.name
190-
dataSources: array('azure-iot-operations/data/thermostat')
189+
endpointRef: MqttBrokerDataflowEndpoint.name // Reference to the 'mq' endpoint
190+
dataSources: [
191+
'azure-iot-operations/data/thermostat', // MQTT topic for thermostat temperature data
192+
'humidifiers/+/telemetry/humidity/#' // MQTT topic for humidifier humidity data
193+
194+
]
191195
}
192196
}
193197
```
194198

195-
`dataSources`: This is an array of MQTT topic(s) that define where the data will be sourced from. In this example, `azure-iot-operations/data/thermostat` refers to a specific topic where thermostat data is being published.
199+
`dataSources`: This is an array of MQTT topic(s) that define where the data will be sourced from. In this example, `azure-iot-operations/data/thermostat` refers to one of the topics in the dataSources array where thermostat data is being published.
196200

197201
Datasources allow you to specify multiple MQTT or Kafka topics without needing to modify the endpoint configuration. This means the same endpoint can be reused across multiple dataflows, even if the topics vary. To learn more, see [Reuse dataflow endpoints](./howto-configure-dataflow-endpoint.md#reuse-endpoints).
198202

199203
<!-- TODO: Put the right article link here -->
200-
For more information about creating an MQTT endpoint as a dataflow source, see [MQTT Endpoint](concept-schema-registry.md).
204+
For more information about creating an MQTT endpoint as a dataflow source, see [MQTT Endpoint](howto-configure-mqtt-endpoint.md).
201205

202206
# [Kubernetes](#tab/kubernetes)
203207

@@ -589,8 +593,6 @@ Specify the **Output** schema when you add the destination dataflow endpoint.
589593

590594
When the dataflow resource is created, it includes a schemaRef value that points to the generated schema stored in the schema registry. It can be referenced in transformations which creates a new schema in Delta format.
591595

592-
Currently, Azure IoT Operations experience only supports Parquet output for output schemas.
593-
594596
```bicep
595597
{
596598
operationType: 'BuiltInTransformation'
@@ -675,7 +677,7 @@ To configure a destination for the dataflow, specify the endpoint reference and
675677

676678
# [Bicep](#tab/bicep)
677679

678-
For example, to configure a destination using the Microsoft Fabric OneLake endpoint and a static MQTT topic, use the following configuration:
680+
Here is an example of configuring Fabric OneLake as a destination with a static MQTT topic, after deploying Microsoft's Fabric OneLake dataflow endpoint:
679681

680682
```bicep
681683
resource oneLakeEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@2024-08-15-preview' = {
@@ -711,8 +713,8 @@ resource oneLakeEndpoint 'Microsoft.IoTOperations/instances/dataflowEndpoints@20
711713
{
712714
operationType: 'Destination'
713715
destinationSettings: {
714-
endpointRef: oneLakeEndpoint.name
715-
dataDestination: 'sensorData'
716+
endpointRef: oneLakeEndpoint.name // oneLake endpoint
717+
dataDestination: 'sensorData' // static MQTT topic
716718
}
717719
}
718720
```
@@ -791,7 +793,7 @@ Select the dataflow you want to export and select **Export** from the toolbar.
791793

792794
# [Bicep](#tab/bicep)
793795

794-
This does not currently apply to Bicep.
796+
TODO.
795797

796798
# [Kubernetes](#tab/kubernetes)
797799

0 commit comments

Comments
 (0)