Skip to content

Commit 8816b21

Browse files
moved serialization to its own section
1 parent d6f3e9c commit 8816b21

File tree

1 file changed

+8
-27
lines changed

1 file changed

+8
-27
lines changed

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

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -372,25 +372,6 @@ resource opcuaSchemaInstance 'Microsoft.DeviceRegistry/schemaRegistries/schemas/
372372
}
373373
```
374374

375-
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.
376-
377-
Currently, Azure IoT Operations experience only supports Parquet output for output schemas.
378-
379-
Note: The Delta schema format is used for both Parquet and Delta output.
380-
381-
```bicep
382-
{
383-
operationType: 'BuiltInTransformation'
384-
builtInTransformationSettings: {
385-
// ..
386-
schemaRef: 'aio-sr://${opcuaSchemaName}:${opcuaSchemaVer}'
387-
serializationFormat: 'Parquet' // can also be 'Delta'
388-
}
389-
}
390-
```
391-
392-
For more information about schema registry, see [Understand message schemas](concept-schema-registry.md).
393-
394375
# [Kubernetes](#tab/kubernetes)
395376

396377
```yaml
@@ -537,25 +518,25 @@ Specify the **Output** schema when you add the destination dataflow endpoint.
537518

538519
# [Bicep](#tab/bicep)
539520

521+
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.
522+
523+
Currently, Azure IoT Operations experience only supports Parquet output for output schemas.
524+
525+
Note: The Delta schema format is used for both Parquet and Delta output.
526+
540527
```bicep
541-
{
528+
{
542529
operationType: 'BuiltInTransformation'
543530
builtInTransformationSettings: {
544-
// ...
531+
// ..
545532
schemaRef: 'aio-sr://${opcuaSchemaName}:${opcuaSchemaVer}'
546533
serializationFormat: 'Parquet' // can also be 'Delta'
547534
}
548535
}
549536
```
550537

551-
To specify the schema, you can create a Schema custom resource with the schema definition.
552-
553538
For more information about schema registry, see [Understand message schemas](concept-schema-registry.md).
554539

555-
Currently, Azure IoT Operations experience only supports Parquet output for output schemas.
556-
557-
Note: The Delta schema format is used for both Parquet and Delta output.
558-
559540
# [Kubernetes](#tab/kubernetes)
560541

561542

0 commit comments

Comments
 (0)