@elyra/pipeline-schemas 3.0.72 → 3.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v3-example-simple.json +232 -0
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v3-example.json +809 -0
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v3-external-subflow-example.json +214 -0
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v3-modeling-example.json +349 -0
- package/package.json +1 -1
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v2-example-simple.json +0 -214
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v2-example.json +0 -755
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v2-external-subflow-example.json +0 -191
- package/common-pipeline/pipeline-flow/examples/pipeline-flow-v2-modeling-example.json +0 -347
- /package/common-pipeline/pipeline-flow/examples/{pipeline-flow-v1-example.png → pipeline-flow-supernode-diagram.png} +0 -0
- /package/common-pipeline/pipeline-flow/examples/{pipeline-flow-v1-example.snagproj → pipeline-flow-supernode-diagram.snagproj} +0 -0
- /package/common-pipeline/pipeline-flow/examples/{pipeline-flow-v1-port-defs.png → pipeline-flow-supernode-ports-diagram.png} +0 -0
- /package/common-pipeline/pipeline-flow/examples/{pipeline-flow-v1-port-defs.snagproj → pipeline-flow-supernode-ports-diagram.snagproj} +0 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
{
|
|
2
|
+
"doc_type": "pipeline",
|
|
3
|
+
"version": "3.0",
|
|
4
|
+
"id": "24cc9881-f83a-4d38-b15b-8bf541e100fb",
|
|
5
|
+
"app_data": {
|
|
6
|
+
"ui_data": {
|
|
7
|
+
"name": "Simple Pipeline Flow Example",
|
|
8
|
+
"description": "A basic example pipeline - just does load/filter/save",
|
|
9
|
+
"class_name": "pipeline-flow-overall"
|
|
10
|
+
},
|
|
11
|
+
"wml_data": {
|
|
12
|
+
"typeId": "stream"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"primary_pipeline": "simple-pipeline",
|
|
16
|
+
"pipelines": [
|
|
17
|
+
{
|
|
18
|
+
"id": "simple-pipeline",
|
|
19
|
+
"nodes": [
|
|
20
|
+
{
|
|
21
|
+
"id": "entryID1PE",
|
|
22
|
+
"type": "binding",
|
|
23
|
+
"op": "bind_input",
|
|
24
|
+
"app_data": {
|
|
25
|
+
"ui_data": {
|
|
26
|
+
"label": "Load",
|
|
27
|
+
"image": "",
|
|
28
|
+
"x_pos": 10,
|
|
29
|
+
"y_pos": 10
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"outputs": [
|
|
33
|
+
{
|
|
34
|
+
"id": "entryPort1PE",
|
|
35
|
+
"schema_ref": "schema1",
|
|
36
|
+
"app_data": {
|
|
37
|
+
"ui_data": {
|
|
38
|
+
"label": ""
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"connection": {
|
|
44
|
+
"ref": "d7c75790-90fc-4883-a5fc-3bb589166a52",
|
|
45
|
+
"project_ref": "0a0a20e8-e8a8-4710-b90a-6df3ff775b04",
|
|
46
|
+
"properties": {
|
|
47
|
+
"schema_name": "GOSALES",
|
|
48
|
+
"table_name": "PRODUCT_NAME_LOOKUP"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "nodeID2PE",
|
|
54
|
+
"type": "execution_node",
|
|
55
|
+
"op": "org.apache.spark.ml.ibm.transformers.FilterColumns",
|
|
56
|
+
"app_data": {
|
|
57
|
+
"wml_data": {
|
|
58
|
+
"typeId": "filter-columns"
|
|
59
|
+
},
|
|
60
|
+
"ui_data": {
|
|
61
|
+
"label": "Filter",
|
|
62
|
+
"image": "",
|
|
63
|
+
"x_pos": 189,
|
|
64
|
+
"y_pos": 56,
|
|
65
|
+
"description": "Filter columns"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"inputs": [
|
|
69
|
+
{
|
|
70
|
+
"id": "input1NodeID2PE",
|
|
71
|
+
"schema_ref": "schema1",
|
|
72
|
+
"app_data": {
|
|
73
|
+
"ui_data": {
|
|
74
|
+
"label": "input 1 Node ID2PE"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"links": [
|
|
78
|
+
{
|
|
79
|
+
"id": "3f91ebcb-1357-40e5-bab3-55a93a444601",
|
|
80
|
+
"node_id_ref": "entryID1PE"
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"outputs": [
|
|
86
|
+
{
|
|
87
|
+
"id": "output1NodeID2PE",
|
|
88
|
+
"schema_ref": "schema2",
|
|
89
|
+
"app_data": {
|
|
90
|
+
"ui_data": {
|
|
91
|
+
"label": "output 1 Node ID2PE"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"parameters": {
|
|
97
|
+
"dropColumns": [
|
|
98
|
+
"integer2",
|
|
99
|
+
"double4"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "exitID1PE",
|
|
105
|
+
"type": "binding",
|
|
106
|
+
"op": "bind_output",
|
|
107
|
+
"app_data": {
|
|
108
|
+
"ui_data": {
|
|
109
|
+
"label": "Save",
|
|
110
|
+
"image": "",
|
|
111
|
+
"x_pos": 357,
|
|
112
|
+
"y_pos": 121
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"inputs": [
|
|
116
|
+
{
|
|
117
|
+
"id": "exitPort1PE",
|
|
118
|
+
"schema_ref": "schema2",
|
|
119
|
+
"app_data": {
|
|
120
|
+
"ui_data": {
|
|
121
|
+
"label": "exit Port 1PE"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"links": [
|
|
125
|
+
{
|
|
126
|
+
"id": "01e100e6-6bba-4f97-9439-e935697e15bf",
|
|
127
|
+
"node_id_ref": "nodeID2PE"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"data_asset": {
|
|
133
|
+
"properties": {
|
|
134
|
+
"name": "employee_data.csv"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"app_data": {
|
|
140
|
+
"ui_data": {
|
|
141
|
+
"zoom": {
|
|
142
|
+
"x": 0,
|
|
143
|
+
"y": 0,
|
|
144
|
+
"k": 1
|
|
145
|
+
},
|
|
146
|
+
"comments": []
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"runtime_ref": "scala-spark-2.0.1"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"schemas": [
|
|
153
|
+
{
|
|
154
|
+
"id": "schema1",
|
|
155
|
+
"fields": [
|
|
156
|
+
{
|
|
157
|
+
"name": "integer2",
|
|
158
|
+
"type": "integer",
|
|
159
|
+
"nullable": false,
|
|
160
|
+
"metadata": {
|
|
161
|
+
"description": "Field integer2 is an integer field",
|
|
162
|
+
"measure": "range",
|
|
163
|
+
"modeling_role": "input",
|
|
164
|
+
"range": {
|
|
165
|
+
"min": -1,
|
|
166
|
+
"max": 400
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "double4",
|
|
172
|
+
"type": "double",
|
|
173
|
+
"nullable": false,
|
|
174
|
+
"metadata": {
|
|
175
|
+
"description": "Field double4 is a double field",
|
|
176
|
+
"measure": "range",
|
|
177
|
+
"modeling_role": "input",
|
|
178
|
+
"range": {
|
|
179
|
+
"min": 0.101,
|
|
180
|
+
"max": 100.211
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "string1",
|
|
186
|
+
"type": "string",
|
|
187
|
+
"nullable": true,
|
|
188
|
+
"metadata": {
|
|
189
|
+
"description": "Field string1 is a string field",
|
|
190
|
+
"measure": "set",
|
|
191
|
+
"modeling_role": "input",
|
|
192
|
+
"max_length": 24,
|
|
193
|
+
"values": [
|
|
194
|
+
"One",
|
|
195
|
+
"Two",
|
|
196
|
+
"Three"
|
|
197
|
+
]
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "schema2",
|
|
204
|
+
"fields": [
|
|
205
|
+
{
|
|
206
|
+
"name": "string1",
|
|
207
|
+
"type": "string",
|
|
208
|
+
"nullable": true,
|
|
209
|
+
"metadata": {
|
|
210
|
+
"description": "Field string1 is a string field",
|
|
211
|
+
"measure": "set",
|
|
212
|
+
"modeling_role": "input",
|
|
213
|
+
"max_length": 24,
|
|
214
|
+
"values": [
|
|
215
|
+
"One",
|
|
216
|
+
"Two",
|
|
217
|
+
"Three"
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
]
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"runtimes": [
|
|
225
|
+
{
|
|
226
|
+
"id": "scala-spark-2.0.1",
|
|
227
|
+
"name": "Scala-Spark",
|
|
228
|
+
"version": "2.0.1"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"json_schema": "https://api.dataplatform.ibm.com/schemas/common-pipeline/pipeline-flow/pipeline-flow-v3-schema.json"
|
|
232
|
+
}
|