-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
65 lines (65 loc) · 1.38 KB
/
Copy pathexample.json
File metadata and controls
65 lines (65 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"schema_version": 1,
"id": "branching-fanout-join",
"title": "Branching fan-out and join",
"category": "Basic Dataflow",
"summary": "A non-linear source -> preprocess -> branch_a/branch_b -> merge -> sink graph.",
"difficulty": "beginner",
"graph": "branching_fanout_join.yaml",
"show_in_readme": true,
"readme_priority": 20,
"expected_exit": 0,
"commands": [
{
"label": "Validate",
"argv": [
"graph",
"validate",
"examples/10-basic-dataflow/branching_fanout_join.yaml"
],
"expect_success": true
},
{
"label": "Render",
"argv": [
"graph",
"render",
"examples/10-basic-dataflow/branching_fanout_join.yaml",
"--format",
"mermaid"
],
"expect_success": true
},
{
"label": "Run",
"argv": [
"graph",
"run",
"examples/10-basic-dataflow/branching_fanout_join.yaml",
"--steps",
"1"
],
"expect_success": true
}
],
"assets": {
"generate_graph": true,
"generate_metrics_summary": false,
"generate_trace_summary": false
},
"ci": {
"validate": true,
"run": true,
"render": true,
"smoke": true
},
"related_docs": [
"docs/11-user-guide/examples.md",
"docs/21-architecture/runtime-semantics.md"
],
"tags": [
"branching",
"fan-out",
"join"
]
}