-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathworkflow.json
More file actions
270 lines (270 loc) · 8.53 KB
/
Copy pathworkflow.json
File metadata and controls
270 lines (270 loc) · 8.53 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
{
"$id": "https://open-metadata.org/schema/metadataIngestion/workflow.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MetadataWorkflow",
"description": "OpenMetadata Ingestion Framework definition.",
"type": "object",
"definitions": {
"sourceConfig": {
"description": "Additional connection configuration.",
"javaType": "org.openmetadata.schema.metadataIngestion.SourceConfig",
"type": "object",
"properties": {
"config": {
"oneOf": [
{
"$ref": "databaseServiceMetadataPipeline.json"
},
{
"$ref": "databaseServiceQueryUsagePipeline.json"
},
{
"$ref": "databaseServiceQueryLineagePipeline.json"
},
{
"$ref": "dashboardServiceMetadataPipeline.json"
},
{
"$ref": "messagingServiceMetadataPipeline.json"
},
{
"$ref": "databaseServiceProfilerPipeline.json"
},
{
"$ref": "databaseServiceAutoClassificationPipeline.json"
},
{
"$ref": "pipelineServiceMetadataPipeline.json"
},
{
"$ref": "mlmodelServiceMetadataPipeline.json"
},
{
"$ref": "storageServiceMetadataPipeline.json"
},
{
"$ref": "storageServiceAutoClassificationPipeline.json"
},
{
"$ref": "driveServiceMetadataPipeline.json"
},
{
"$ref": "searchServiceMetadataPipeline.json"
},
{
"$ref": "testSuitePipeline.json"
},
{
"$ref": "metadataToElasticSearchPipeline.json"
},
{
"$ref": "dataInsightPipeline.json"
},
{
"$ref": "dbtPipeline.json"
},
{
"$ref": "applicationPipeline.json"
},
{
"$ref": "apiServiceMetadataPipeline.json"
},
{
"$ref": "reverseIngestionPipeline.json"
},
{
"$ref": "mcpServiceMetadataPipeline.json"
},
{
"$ref": "policyAgentPipeline.json"
}
]
}
},
"additionalProperties": false
},
"source": {
"description": "Configuration for Source component in OpenMetadata Ingestion Framework.",
"type": "object",
"properties": {
"type": {
"description": "Type of the source connector ex: mysql, snowflake, tableau etc..",
"type": "string"
},
"serviceName": {
"description": "Type of the source connector ex: mysql, snowflake, tableau etc..",
"type": "string"
},
"serviceConnection": {
"description": "Connection configuration for the source. ex: mysql , tableau connection.",
"$ref": "../entity/services/connections/serviceConnection.json#/definitions/serviceConnection"
},
"sourceConfig": {
"$ref": "#/definitions/sourceConfig"
}
},
"additionalProperties": false,
"required": ["type", "sourceConfig"]
},
"processor": {
"description": "Configuration for Processor Component in the OpenMetadata Ingestion Framework.",
"type": "object",
"properties": {
"type": {
"description": "Type of processor component ex: pii-processor",
"type": "string"
},
"config": {
"$ref": "../type/basic.json#/definitions/componentConfig"
}
},
"additionalProperties": false,
"required": ["type"]
},
"stage": {
"description": "Configuration for Stage Component in the OpenMetadata Ingestion Framework.",
"type": "object",
"properties": {
"type": {
"description": "Type of stage component ex: table-usage",
"type": "string"
},
"config": {
"$ref": "../type/basic.json#/definitions/componentConfig"
}
},
"additionalProperties": false,
"required": ["type"]
},
"sink": {
"description": "Configuration for Sink Component in the OpenMetadata Ingestion Framework.",
"type": "object",
"properties": {
"type": {
"description": "Type of sink component ex: metadata",
"type": "string"
},
"config": {
"$ref": "../type/basic.json#/definitions/componentConfig"
}
},
"additionalProperties": false,
"required": ["type"]
},
"bulkSink": {
"description": "Configuration for BulkSink Component in the OpenMetadata Ingestion Framework.",
"type": "object",
"properties": {
"type": {
"description": "Type of BulkSink component ex: metadata-usage",
"type": "string"
},
"config": {
"$ref": "../type/basic.json#/definitions/componentConfig"
}
},
"additionalProperties": false,
"required": ["type"]
},
"logLevels": {
"description": "Supported logging levels",
"javaType": "org.openmetadata.schema.metadataIngestion.LogLevels",
"type": "string",
"enum": ["DEBUG", "INFO", "WARN", "ERROR"],
"default": "INFO"
},
"workflowConfig": {
"description": "Configuration for the entire Ingestion Workflow.",
"type": "object",
"properties": {
"loggerLevel": {
"$ref": "#/definitions/logLevels",
"default": "INFO"
},
"raiseOnError": {
"description": "Control if we want to flag the workflow as failed if we encounter any processing errors.",
"type": "boolean",
"default": true
},
"successThreshold": {
"title": "Success Threshold",
"description": "The percentage of successfully processed records that must be achieved for the pipeline to be considered successful. Otherwise, the pipeline will be marked as failed.",
"type": "integer",
"default": 90,
"minimum": 0,
"maximum": 100
},
"openMetadataServerConfig": {
"$ref": "../entity/services/connections/metadata/openMetadataConnection.json"
},
"config": {
"$ref": "../type/basic.json#/definitions/componentConfig"
}
},
"additionalProperties": false,
"required": ["openMetadataServerConfig"]
}
},
"properties": {
"id": {
"description": "Unique identifier that identifies this pipeline.",
"$ref": "../type/basic.json#/definitions/uuid"
},
"name": {
"description": "Name that identifies this pipeline instance uniquely.",
"$ref": "../type/basic.json#/definitions/entityName"
},
"openMetadataWorkflowConfig": {
"description": "OpenMetadata Ingestion Workflow Config.",
"type": "object",
"properties": {
"source": {
"$ref": "#/definitions/source"
},
"processor": {
"$ref": "#/definitions/processor"
},
"sink": {
"$ref": "#/definitions/sink"
},
"stage": {
"$ref": "#/definitions/stage"
},
"bulkSink": {
"$ref": "#/definitions/bulkSink"
},
"workflowConfig": {
"$ref": "#/definitions/workflowConfig"
},
"ingestionPipelineFQN": {
"description": "Fully qualified name of ingestion pipeline, used to identify the current ingestion pipeline",
"type": "string"
},
"pipelineRunId": {
"description": "Unique identifier of pipeline run, used to identify the current pipeline run",
"$ref": "../type/basic.json#/definitions/uuid"
},
"enableStreamableLogs": {
"description": "Enable streaming logs to a remote log storage via the OpenMetadata Server",
"type": "boolean",
"default": false
},
"ingestionRunnerName": {
"description": "Name of the ingestion runner executing this workflow. Set at dispatch time by the execution environment.",
"type": "string"
}
},
"required": ["source", "workflowConfig"],
"additionalProperties": false
}
},
"oneOf": [
{
"required": ["name", "openMetadataWorkflowConfig", "source", "sink"]
},
{
"required": ["name", "openMetadataWorkflowConfig", "source", "bulkSink"]
}
],
"additionalProperties": false
}