Map data by using dataflows
Important
Azure IoT Operations Preview – enabled by Azure Arc is currently in preview. You shouldn't use this preview software in production environments.
You'll need to deploy a new Azure IoT Operations installation when a generally available release is made available. You won't be able to upgrade a preview installation.
See the Supplemental Terms of Use for Microsoft Azure Previews for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
Use the dataflow mapping language to transform data in Azure IoT Operations. The syntax is a simple, yet powerful, way to define mappings that transform data from one format to another. This article provides an overview of the dataflow mapping language and key concepts.
Mapping allows you to transform data from one format to another. Consider the following input record:
{
"Name": "Grace Owens",
"Place of birth": "London, TX",
"Birth Date": "19840202",
"Start Date": "20180812",
"Position": "Analyst",
"Office": "Kent, WA"
}
Compare it with the output record:
{
"Employee": {
"Name": "Grace Owens",
"Date of Birth": "19840202"
},
"Employment": {
"Start Date": "20180812",
"Position": "Analyst, Kent, WA",
"Base Salary": 78000
}
}
In the output record, the following changes are made to the input record data:
- Fields renamed: The
Birth Date
field is nowDate of Birth
. - Fields restructured: Both
Name
andDate of Birth
are grouped under the newEmployee
category. - Field deleted: The
Place of birth
field is removed because it isn't present in the output. - Field added: The
Base Salary
field is a new field in theEmployment
category. - Field values changed or merged: The
Position
field in the output combines thePosition
andOffice
fields from the input.
The transformations are achieved through mapping, which typically involves:
- Input definition: Identifying the fields in the input records that are used.
- Output definition: Specifying where and how the input fields are organized in the output records.
- Conversion (optional): Modifying the input fields to fit into the output fields.
expression
is required when multiple input fields are combined into a single output field.
The following mapping is an example:
{
inputs: [
'BirthDate'
]
output: 'Employee.DateOfBirth'
}
{
inputs: [
'Position' // - - - - $1
'Office' // - - - - $2
]
output: 'Employment.Position'
expression: '$1 + ", " + $2'
}
{
inputs: [
'$context(position).BaseSalary'
]
output: 'Employment.BaseSalary'
}
The example maps:
- One-to-one mapping:
BirthDate
is directly mapped toEmployee.DateOfBirth
without conversion. - Many-to-one mapping: Combines
Position
andOffice
into a singleEmployment.Position
field. The conversion formula ($1 + ", " + $2
) merges these fields into a formatted string. - Contextual data:
BaseSalary
is added from a contextual dataset namedposition
.
Field references
Field references show how to specify paths in the input and output by using dot notation like Employee.DateOfBirth
or accessing data from a contextual dataset via $context(position)
.
MQTT user properties
When you use MQTT as a source or destination, you can access MQTT user properties in the mapping language. User properties can be mapped in the input or output.
In the following example, the MQTT topic
property is mapped to the origin_topic
field in the output.
inputs: [
'$metadata.topic'
]
output: 'origin_topic'
You can also map MQTT properties to an output header. In the following example, the MQTT topic
is mapped to the origin_topic
field in the output's user property:
inputs: [
'$metadata.topic'
]
output: '$metadata.user_property.origin_topic'
Contextualization dataset selectors
These selectors allow mappings to integrate extra data from external databases, which are referred to as contextualization datasets.
Record filtering
Record filtering involves setting conditions to select which records should be processed or dropped.
Dot notation
Dot notation is widely used in computer science to reference fields, even recursively. In programming, field names typically consist of letters and numbers. A standard dot-notation sample might look like this example:
inputs: [
'Person.Address.Street.Number'
]
In a dataflow, a path described by dot notation might include strings and some special characters without needing escaping:
inputs: [
'Person.Date of Birth'
]
In other cases, escaping is necessary:
inputs: [
'Person."Tag.10".Value'
]
The previous example, among other special characters, contains dots within the field name. Without escaping, the field name would serve as a separator in the dot notation itself.
While a dataflow parses a path, it treats only two characters as special:
- Dots (
.
) act as field separators. - Single quotation marks, when placed at the beginning or the end of a segment, start an escaped section where dots aren't treated as field separators.
Any other characters are treated as part of the field name. This flexibility is useful in formats like JSON, where field names can be arbitrary strings.
In Bicep, all strings are enclosed in single quotation marks ('
). The examples about proper quoting in YAML for Kubernetes use don't apply.
Escaping
The primary function of escaping in a dot-notated path is to accommodate the use of dots that are part of field names rather than separators:
inputs: [
'Payload."Tag.10".Value'
]
In this example, the path consists of three segments: Payload
, Tag.10
, and Value
.
Escaping rules in dot notation
Escape each segment separately: If multiple segments contain dots, those segments must be enclosed in double quotation marks. Other segments can also be quoted, but it doesn't affect the path interpretation:
inputs: [ 'Payload."Tag.10".Measurements."Vibration.$12".Value' ]
Proper use of double quotation marks: Double quotation marks must open and close an escaped segment. Any quotation marks in the middle of the segment are considered part of the field name:
inputs: [ 'Payload.He said: "Hello", and waved' ]
This example defines two fields: Payload
and He said: "Hello", and waved
. When a dot appears under these circumstances, it continues to serve as a separator:
inputs: [
'Payload.He said: "No. It is done"'
]
In this case, the path is split into the segments Payload
, He said: "No
, and It is done"
(starting with a space).
Segmentation algorithm
- If the first character of a segment is a quotation mark, the parser searches for the next quotation mark. The string enclosed between these quotation marks is considered a single segment.
- If the segment doesn't start with a quotation mark, the parser identifies segments by searching for the next dot or the end of the path.
Wildcard
In many scenarios, the output record closely resembles the input record, with only minor modifications required. When you deal with records that contain numerous fields, manually specifying mappings for each field can become tedious. Wildcards simplify this process by allowing for generalized mappings that can automatically apply to multiple fields.
Let's consider a basic scenario to understand the use of asterisks in mappings:
inputs: [
'*'
]
output: '*'
Here's how the asterisk (*
) operates in this context:
- Pattern matching: The asterisk can match a single segment or multiple segments of a path. It serves as a placeholder for any segments in the path.
- Field matching: During the mapping process, the algorithm evaluates each field in the input record against the pattern specified in the
inputs
. The asterisk in the previous example matches all possible paths, effectively fitting every individual field in the input. - Captured segment: The portion of the path that the asterisk matches is referred to as the
captured segment
. - Output mapping: In the output configuration, the
captured segment
is placed where the asterisk appears. This means that the structure of the input is preserved in the output, with thecaptured segment
filling the placeholder provided by the asterisk.
This configuration demonstrates the most generic form of mapping, where every field in the input is directly mapped to a corresponding field in the output without modification.
Another example illustrates how wildcards can be used to match subsections and move them together. This example effectively flattens nested structures within a JSON object.
Original JSON:
{
"ColorProperties": {
"Hue": "blue",
"Saturation": "90%",
"Brightness": "50%",
"Opacity": "0.8"
},
"TextureProperties": {
"type": "fabric",
"SurfaceFeel": "soft",
"SurfaceAppearance": "matte",
"Pattern": "knitted"
}
}
Mapping configuration that uses wildcards:
{
inputs: [
'ColorProperties.*'
]
output: '*'
}
{
inputs: [
'TextureProperties.*'
]
output: '*'
}
Resulting JSON:
{
"Hue": "blue",
"Saturation": "90%",
"Brightness": "50%",
"Opacity": "0.8",
"type": "fabric",
"SurfaceFeel": "soft",
"SurfaceAppearance": "matte",
"Pattern": "knitted"
}
Wildcard placement
When you place a wildcard, you must follow these rules:
- Single asterisk per dataDestination: Only one asterisk (
*
) is allowed within a single path. - Full segment matching: The asterisk must always match an entire segment of the path. It can't be used to match only a part of a segment, such as
path1.partial*.path3
. - Positioning: The asterisk can be positioned in various parts of
dataDestination
:- At the beginning:
*.path2.path3
- Here, the asterisk matches any segment that leads up topath2.path3
. - In the middle:
path1.*.path3
- In this configuration, the asterisk matches any segment betweenpath1
andpath3
. - At the end:
path1.path2.*
- The asterisk at the end matches any segment that follows afterpath1.path2
.
- At the beginning:
- The path containing the asterisk must be enclosed in single quotation marks (
'
).
Multi-input wildcards
Original JSON:
{
"Saturation": {
"Max": 0.42,
"Min": 0.67,
},
"Brightness": {
"Max": 0.78,
"Min": 0.93,
},
"Opacity": {
"Max": 0.88,
"Min": 0.91,
}
}
Mapping configuration that uses wildcards:
inputs: [
'*.Max' // - $1
'*.Min' // - $2
]
output: 'ColorProperties.*'
expression: '($1 + $2) / 2'
Resulting JSON:
{
"ColorProperties" : {
"Saturation": 0.54,
"Brightness": 0.85,
"Opacity": 0.89
}
}
If you use multi-input wildcards, the asterisk (*
) must consistently represent the same Captured Segment
across every input. For example, when *
captures Saturation
in the pattern *.Max
, the mapping algorithm expects the corresponding Saturation.Min
to match with the pattern *.Min
. Here, *
is substituted by the Captured Segment
from the first input, guiding the matching for subsequent inputs.
Consider this detailed example:
Original JSON:
{
"Saturation": {
"Max": 0.42,
"Min": 0.67,
"Mid": {
"Avg": 0.51,
"Mean": 0.56
}
},
"Brightness": {
"Max": 0.78,
"Min": 0.93,
"Mid": {
"Avg": 0.81,
"Mean": 0.82
}
},
"Opacity": {
"Max": 0.88,
"Min": 0.91,
"Mid": {
"Avg": 0.89,
"Mean": 0.89
}
}
}
Initial mapping configuration that uses wildcards:
inputs: [
'*.Max' // - $1
'*.Min' // - $2
'*.Avg' // - $3
'*.Mean' // - $4
]
This initial mapping tries to build an array (for example, for Opacity
: [0.88, 0.91, 0.89, 0.89]
). This configuration fails because:
- The first input
*.Max
captures a segment likeSaturation
. - The mapping expects the subsequent inputs to be present at the same level:
Saturation.Max
Saturation.Min
Saturation.Avg
Saturation.Mean
Because Avg
and Mean
are nested within Mid
, the asterisk in the initial mapping doesn't correctly capture these paths.
Corrected mapping configuration:
inputs: [
'*.Max' // - $1
'*.Min' // - $2
'*.Mid.Avg' // - $3
'*.Mid.Mean' // - $4
]
This revised mapping accurately captures the necessary fields. It correctly specifies the paths to include the nested Mid
object, which ensures that the asterisks work effectively across different levels of the JSON structure.
Second rule vs. specialization
When you use the previous example from multi-input wildcards, consider the following mappings that generate two derived values for each property:
{
inputs: [
'*.Max' // - $1
'*.Min' // - $2
]
output: 'ColorProperties.*.Avg'
expression: '($1 + $2) / 2'
}
{
inputs: [
'*.Max' // - $1
'*.Min' // - $2
]
output: 'ColorProperties.*.Diff'
expression: 'abs($1 - $2)'
}
This mapping is intended to create two separate calculations (Avg
and Diff
) for each property under ColorProperties
. This example shows the result:
{
"ColorProperties": {
"Saturation": {
"Avg": 0.54,
"Diff": 0.25
},
"Brightness": {
"Avg": 0.85,
"Diff": 0.15
},
"Opacity": {
"Avg": 0.89,
"Diff": 0.03
}
}
}
Here, the second mapping definition on the same inputs acts as a second rule for mapping.
Now, consider a scenario where a specific field needs a different calculation:
{
inputs: [
'*.Max' // - $1
'*.Min' // - $2
]
output: 'ColorProperties.*'
expression: '($1 + $2) / 2'
}
{
inputs: [
'Opacity.Max' // - $1
'Opacity.Min' // - $2
]
output: 'ColorProperties.OpacityAdjusted'
expression: '($1 + $2 + 1.32) / 2'
}
In this case, the Opacity
field has a unique calculation. Two options to handle this overlapping scenario are:
- Include both mappings for
Opacity
. Because the output fields are different in this example, they wouldn't override each other. - Use the more specific rule for
Opacity
and remove the more generic one.
Consider a special case for the same fields to help decide the right action:
{
inputs: [
'*.Max' // - $1
'*.Min' // - $2
]
output: 'ColorProperties.*'
expression: '($1 + $2) / 2'
}
{
inputs: [
'Opacity.Max' // - $1
'Opacity.Min' // - $2
]
}
An empty output
field in the second definition implies not writing the fields in the output record (effectively removing Opacity
). This setup is more of a Specialization
than a Second Rule
.
Resolution of overlapping mappings by dataflows:
- The evaluation progresses from the top rule in the mapping definition.
- If a new mapping resolves to the same fields as a previous rule, the following conditions apply:
- A
Rank
is calculated for each resolved input based on the number of segments the wildcard captures. For instance, if theCaptured Segments
areProperties.Opacity
, theRank
is 2. If it's onlyOpacity
, theRank
is 1. A mapping without wildcards has aRank
of 0. - If the
Rank
of the latter rule is equal to or higher than the previous rule, a dataflow treats it as aSecond Rule
. - Otherwise, the dataflow treats the configuration as a
Specialization
.
- A
For example, the mapping that directs Opacity.Max
and Opacity.Min
to an empty output has a Rank
of 0. Because the second rule has a lower Rank
than the previous one, it's considered a specialization and overrides the previous rule, which would calculate a value for Opacity
.
Wildcards in contextualization datasets
Now, let's see how contextualization datasets can be used with wildcards through an example. Consider a dataset named position
that contains the following record:
{
"Position": "Analyst",
"BaseSalary": 70000,
"WorkingHours": "Regular"
}
In an earlier example, we used a specific field from this dataset:
inputs: [
'$context(position).BaseSalary'
]
output: 'Employment.BaseSalary'
This mapping copies BaseSalary
from the context dataset directly into the Employment
section of the output record. If you want to automate the process and include all fields from the position
dataset into the Employment
section, you can use wildcards:
inputs: [
'$context(position).*'
]
output: 'Employment.*'
This configuration allows for a dynamic mapping where every field within the position
dataset is copied into the Employment
section of the output record:
{
"Employment": {
"Position": "Analyst",
"BaseSalary": 70000,
"WorkingHours": "Regular"
}
}
Last known value
You can track the last known value of a property. Suffix the input field with ? $last
to capture the last known value of the field. When a property is missing a value in a subsequent input payload, the last known value is mapped to the output payload.
For example, consider the following mapping:
inputs: [
'Temperature ? $last'
]
output: 'Thermostat.Temperature'
In this example, the last known value of Temperature
is tracked. If a subsequent input payload doesn't contain a Temperature
value, the last known value is used in the output.