Skip to content

Commit 978ce10

Browse files
committed
Comment out lines to avoid errors, will re-add after merge
1 parent 95c1735 commit 978ce10

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

articles/iot-operations/connect-to-cloud/concept-dataflow-graphs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ For new projects that use supported endpoint types, we recommend data flow graph
4141

4242
Each transform is a pre-built processing step that you configure with rules and chain with other transforms inside a `DataflowGraph` resource.
4343

44-
| Transform | What it does | Learn more |
44+
<!-- | Transform | What it does | Learn more |
4545
|-----------|-------------|------------|
4646
| **Map** | Rename, restructure, compute, and copy fields | [Transform data with map](howto-dataflow-graphs-map.md) |
4747
| **Filter** | Drop messages that match a condition | [Filter and route data](howto-dataflow-graphs-filter-route.md) |
4848
| **Branch** | Route each message to a `true` or `false` path based on a condition | [Filter and route data](howto-dataflow-graphs-filter-route.md#branch-transform) |
4949
| **Concat** | Merge two or more paths back into one | [Filter and route data](howto-dataflow-graphs-filter-route.md#merge-paths-with-concat) |
50-
| **Window** | Collect messages over a time interval, then aggregate | [Aggregate data over time](howto-dataflow-graphs-window.md) |
50+
| **Window** | Collect messages over a time interval, then aggregate | [Aggregate data over time](howto-dataflow-graphs-window.md) | -->
5151

52-
All transforms share an [expression language](concept-dataflow-graphs-expressions.md) for operators, functions, and field references. You can also [enrich](howto-dataflow-graphs-enrich.md) messages with external data from a state store in map, filter, and branch transforms.
52+
<!-- All transforms share an [expression language](concept-dataflow-graphs-expressions.md) for operators, functions, and field references. You can also [enrich](howto-dataflow-graphs-enrich.md) messages with external data from a state store in map, filter, and branch transforms. -->
5353

5454
## How transforms compose
5555

@@ -77,7 +77,7 @@ Here's a complete example that reads temperature data from an MQTT topic, conver
7777

7878
# [Operations experience](#tab/portal)
7979

80-
![Screenshot of the operations experience showing a data flow graph example with source, transform, and destination.](media/concept-dataflow-graphs/dataflow-graph-example.png)
80+
<!-- ![Screenshot of the operations experience showing a data flow graph example with source, transform, and destination.](media/concept-dataflow-graphs/dataflow-graph-example.png) -->
8181

8282
In the Operations experience:
8383

@@ -190,7 +190,7 @@ spec:
190190
191191
The pipeline defines three elements: a source, a transform (indicated by `nodeType: Graph`), and a destination. The connections describe how data flows between them. The transform's `configuration` passes rules as a JSON string under the `rules` key.
192192

193-
In the how-to articles that follow, examples focus on the transform rules themselves. For a step-by-step guide to creating a data flow graph, see [Create a data flow graph](howto-create-dataflow-graph.md).
193+
<!-- In the how-to articles that follow, examples focus on the transform rules themselves. For a step-by-step guide to creating a data flow graph, see [Create a data flow graph](howto-create-dataflow-graph.md). -->
194194

195195
## Built-in transforms vs. WASM transforms
196196

@@ -231,7 +231,7 @@ To use data flow graphs, you need:
231231

232232
## Next steps
233233

234-
- [Data flows vs. data flow graphs](overview-dataflow-comparison.md)
234+
<!-- - [Data flows vs. data flow graphs](overview-dataflow-comparison.md)
235235
- [Create a data flow graph](howto-create-dataflow-graph.md)
236236
- [Transform data with map](howto-dataflow-graphs-map.md)
237237
- [Filter and route data](howto-dataflow-graphs-filter-route.md)
@@ -240,4 +240,4 @@ To use data flow graphs, you need:
240240
- [Expressions reference](concept-dataflow-graphs-expressions.md)
241241
- [Route messages to different topics](howto-dataflow-graphs-topic-routing.md)
242242
- [Expressions reference](concept-dataflow-graphs-expressions.md)
243-
- [Use WASM transforms in data flow graphs](howto-dataflow-graph-wasm.md)
243+
- [Use WASM transforms in data flow graphs](howto-dataflow-graph-wasm.md) -->

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ In data flow graphs, you can set the destination topic dynamically based on mess
230230

231231
This approach is more flexible than source topic routing because it lets you set the destination topic based on any field or computed value in the message, not just the source topic structure.
232232

233-
For more information and complete examples, see [Route messages to different topics](howto-dataflow-graphs-topic-routing.md).
233+
<!-- For more information and complete examples, see [Route messages to different topics](howto-dataflow-graphs-topic-routing.md). -->
234234

235235
## Serialize the output with a schema
236236

@@ -247,7 +247,7 @@ Specify the schema and serialization format in the data flow endpoint details. T
247247

248248
# [Azure CLI](#tab/cli)
249249

250-
After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration.
250+
<!-- After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration. -->
251251

252252
```json
253253
{
@@ -260,7 +260,7 @@ After you [upload a schema to the schema registry](concept-schema-registry.md#up
260260

261261
# [Bicep](#tab/bicep)
262262

263-
After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration.
263+
<!-- After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration. -->
264264

265265
```bicep
266266
builtInTransformationSettings: {
@@ -271,7 +271,7 @@ builtInTransformationSettings: {
271271

272272
# [Kubernetes (preview)](#tab/kubernetes)
273273

274-
After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration.
274+
<!-- After you [upload a schema to the schema registry](concept-schema-registry.md#upload-a-schema), reference it in the data flow configuration. -->
275275

276276
```yaml
277277
builtInTransformationSettings:
@@ -285,7 +285,7 @@ For more information about schema registry, see [Understand message schemas](con
285285

286286
## Next steps
287287

288-
- [Configure a data flow source](howto-configure-dataflow-source.md)
288+
<!-- - [Configure a data flow source](howto-configure-dataflow-source.md)
289289
- [Create a data flow](howto-create-dataflow.md)
290290
- [Data flow graphs overview](concept-dataflow-graphs.md)
291-
- [Route messages to different topics with data flow graphs](howto-dataflow-graphs-topic-routing.md)
291+
- [Route messages to different topics with data flow graphs](howto-dataflow-graphs-topic-routing.md) -->

0 commit comments

Comments
 (0)