acryl-datahub-cloud 0.3.7.8rc4__py3-none-any.whl → 0.3.7.9__py3-none-any.whl
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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ml/metadata/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +251 -48
- acryl_datahub_cloud/metadata/schema_classes.py +233 -27
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceKey.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceOutput.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc +104 -0
- acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +104 -47
- acryl_datahub_cloud/metadata/schemas/MLTrainingRunProperties.avsc +171 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +158 -47
- {acryl_datahub_cloud-0.3.7.8rc4.dist-info → acryl_datahub_cloud-0.3.7.9.dist-info}/METADATA +33 -31
- {acryl_datahub_cloud-0.3.7.8rc4.dist-info → acryl_datahub_cloud-0.3.7.9.dist-info}/RECORD +15 -14
- {acryl_datahub_cloud-0.3.7.8rc4.dist-info → acryl_datahub_cloud-0.3.7.9.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.7.8rc4.dist-info → acryl_datahub_cloud-0.3.7.9.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.8rc4.dist-info → acryl_datahub_cloud-0.3.7.9.dist-info}/top_level.txt +0 -0
|
@@ -37,6 +37,66 @@
|
|
|
37
37
|
"default": null,
|
|
38
38
|
"doc": "URL where the reference exist"
|
|
39
39
|
},
|
|
40
|
+
{
|
|
41
|
+
"Relationship": {
|
|
42
|
+
"/*": {
|
|
43
|
+
"entityTypes": [
|
|
44
|
+
"dataJob",
|
|
45
|
+
"dataProcessInstance"
|
|
46
|
+
],
|
|
47
|
+
"isLineage": true,
|
|
48
|
+
"name": "TrainedBy"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"type": [
|
|
52
|
+
"null",
|
|
53
|
+
{
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": "string"
|
|
56
|
+
}
|
|
57
|
+
],
|
|
58
|
+
"name": "trainingJobs",
|
|
59
|
+
"default": null,
|
|
60
|
+
"doc": "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect."
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"Relationship": {
|
|
64
|
+
"/*": {
|
|
65
|
+
"entityTypes": [
|
|
66
|
+
"dataJob",
|
|
67
|
+
"dataProcessInstance"
|
|
68
|
+
],
|
|
69
|
+
"isLineage": true,
|
|
70
|
+
"isUpstream": false,
|
|
71
|
+
"name": "UsedBy"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"type": [
|
|
75
|
+
"null",
|
|
76
|
+
{
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": "string"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"name": "downstreamJobs",
|
|
82
|
+
"default": null,
|
|
83
|
+
"doc": "List of jobs or process instances (if any) that use the model or group."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"Searchable": {
|
|
87
|
+
"boostScore": 10.0,
|
|
88
|
+
"enableAutocomplete": true,
|
|
89
|
+
"fieldType": "WORD_GRAM",
|
|
90
|
+
"queryByDefault": true
|
|
91
|
+
},
|
|
92
|
+
"type": [
|
|
93
|
+
"null",
|
|
94
|
+
"string"
|
|
95
|
+
],
|
|
96
|
+
"name": "name",
|
|
97
|
+
"default": null,
|
|
98
|
+
"doc": "Display name of the MLModel"
|
|
99
|
+
},
|
|
40
100
|
{
|
|
41
101
|
"Searchable": {
|
|
42
102
|
"fieldType": "TEXT",
|
|
@@ -51,6 +111,7 @@
|
|
|
51
111
|
"doc": "Documentation of the MLModel"
|
|
52
112
|
},
|
|
53
113
|
{
|
|
114
|
+
"deprecated": true,
|
|
54
115
|
"type": [
|
|
55
116
|
"null",
|
|
56
117
|
"long"
|
|
@@ -59,6 +120,49 @@
|
|
|
59
120
|
"default": null,
|
|
60
121
|
"doc": "Date when the MLModel was developed"
|
|
61
122
|
},
|
|
123
|
+
{
|
|
124
|
+
"type": [
|
|
125
|
+
"null",
|
|
126
|
+
{
|
|
127
|
+
"type": "record",
|
|
128
|
+
"name": "TimeStamp",
|
|
129
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
130
|
+
"fields": [
|
|
131
|
+
{
|
|
132
|
+
"type": "long",
|
|
133
|
+
"name": "time",
|
|
134
|
+
"doc": "When did the event occur"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"java": {
|
|
138
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
139
|
+
},
|
|
140
|
+
"type": [
|
|
141
|
+
"null",
|
|
142
|
+
"string"
|
|
143
|
+
],
|
|
144
|
+
"name": "actor",
|
|
145
|
+
"default": null,
|
|
146
|
+
"doc": "Optional: The actor urn involved in the event.",
|
|
147
|
+
"Urn": "Urn"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"doc": "A standard event timestamp"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"name": "created",
|
|
154
|
+
"default": null,
|
|
155
|
+
"doc": "Audit stamp containing who created this and when"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"type": [
|
|
159
|
+
"null",
|
|
160
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
161
|
+
],
|
|
162
|
+
"name": "lastModified",
|
|
163
|
+
"default": null,
|
|
164
|
+
"doc": "Date when the MLModel was last modified"
|
|
165
|
+
},
|
|
62
166
|
{
|
|
63
167
|
"type": [
|
|
64
168
|
"null",
|
|
@@ -287,53 +391,6 @@
|
|
|
287
391
|
"Urn": "Urn",
|
|
288
392
|
"urn_is_array": true
|
|
289
393
|
},
|
|
290
|
-
{
|
|
291
|
-
"Relationship": {
|
|
292
|
-
"/*": {
|
|
293
|
-
"entityTypes": [
|
|
294
|
-
"dataJob"
|
|
295
|
-
],
|
|
296
|
-
"isLineage": true,
|
|
297
|
-
"name": "TrainedBy"
|
|
298
|
-
}
|
|
299
|
-
},
|
|
300
|
-
"type": [
|
|
301
|
-
"null",
|
|
302
|
-
{
|
|
303
|
-
"type": "array",
|
|
304
|
-
"items": "string"
|
|
305
|
-
}
|
|
306
|
-
],
|
|
307
|
-
"name": "trainingJobs",
|
|
308
|
-
"default": null,
|
|
309
|
-
"doc": "List of jobs (if any) used to train the model",
|
|
310
|
-
"Urn": "Urn",
|
|
311
|
-
"urn_is_array": true
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"Relationship": {
|
|
315
|
-
"/*": {
|
|
316
|
-
"entityTypes": [
|
|
317
|
-
"dataJob"
|
|
318
|
-
],
|
|
319
|
-
"isLineage": true,
|
|
320
|
-
"isUpstream": false,
|
|
321
|
-
"name": "UsedBy"
|
|
322
|
-
}
|
|
323
|
-
},
|
|
324
|
-
"type": [
|
|
325
|
-
"null",
|
|
326
|
-
{
|
|
327
|
-
"type": "array",
|
|
328
|
-
"items": "string"
|
|
329
|
-
}
|
|
330
|
-
],
|
|
331
|
-
"name": "downstreamJobs",
|
|
332
|
-
"default": null,
|
|
333
|
-
"doc": "List of jobs (if any) that use the model",
|
|
334
|
-
"Urn": "Urn",
|
|
335
|
-
"urn_is_array": true
|
|
336
|
-
},
|
|
337
394
|
{
|
|
338
395
|
"Relationship": {
|
|
339
396
|
"/*": {
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "mlTrainingRunProperties"
|
|
5
|
+
},
|
|
6
|
+
"name": "MLTrainingRunProperties",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"/*": {
|
|
12
|
+
"fieldType": "TEXT",
|
|
13
|
+
"queryByDefault": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"type": {
|
|
17
|
+
"type": "map",
|
|
18
|
+
"values": "string"
|
|
19
|
+
},
|
|
20
|
+
"name": "customProperties",
|
|
21
|
+
"default": {},
|
|
22
|
+
"doc": "Custom property bag."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"Searchable": {
|
|
26
|
+
"fieldType": "KEYWORD"
|
|
27
|
+
},
|
|
28
|
+
"java": {
|
|
29
|
+
"class": "com.linkedin.pegasus2avro.common.url.Url",
|
|
30
|
+
"coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
|
|
31
|
+
},
|
|
32
|
+
"type": [
|
|
33
|
+
"null",
|
|
34
|
+
"string"
|
|
35
|
+
],
|
|
36
|
+
"name": "externalUrl",
|
|
37
|
+
"default": null,
|
|
38
|
+
"doc": "URL where the reference exist"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": [
|
|
42
|
+
"null",
|
|
43
|
+
"string"
|
|
44
|
+
],
|
|
45
|
+
"name": "id",
|
|
46
|
+
"default": null,
|
|
47
|
+
"doc": "Run Id of the ML Training Run"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"type": [
|
|
51
|
+
"null",
|
|
52
|
+
{
|
|
53
|
+
"type": "array",
|
|
54
|
+
"items": "string"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"name": "outputUrls",
|
|
58
|
+
"default": null,
|
|
59
|
+
"doc": "List of URLs for the Outputs of the ML Training Run"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": [
|
|
63
|
+
"null",
|
|
64
|
+
{
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"type": "record",
|
|
68
|
+
"Aspect": {
|
|
69
|
+
"name": "mlHyperParam"
|
|
70
|
+
},
|
|
71
|
+
"name": "MLHyperParam",
|
|
72
|
+
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
73
|
+
"fields": [
|
|
74
|
+
{
|
|
75
|
+
"type": "string",
|
|
76
|
+
"name": "name",
|
|
77
|
+
"doc": "Name of the MLHyperParam"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": [
|
|
81
|
+
"null",
|
|
82
|
+
"string"
|
|
83
|
+
],
|
|
84
|
+
"name": "description",
|
|
85
|
+
"default": null,
|
|
86
|
+
"doc": "Documentation of the MLHyperParam"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"type": [
|
|
90
|
+
"null",
|
|
91
|
+
"string"
|
|
92
|
+
],
|
|
93
|
+
"name": "value",
|
|
94
|
+
"default": null,
|
|
95
|
+
"doc": "The value of the MLHyperParam"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": [
|
|
99
|
+
"null",
|
|
100
|
+
"long"
|
|
101
|
+
],
|
|
102
|
+
"name": "createdAt",
|
|
103
|
+
"default": null,
|
|
104
|
+
"doc": "Date when the MLHyperParam was developed"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"doc": "Properties associated with an ML Hyper Param"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"name": "hyperParams",
|
|
112
|
+
"default": null,
|
|
113
|
+
"doc": "Hyperparameters of the ML Training Run"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": [
|
|
117
|
+
"null",
|
|
118
|
+
{
|
|
119
|
+
"type": "array",
|
|
120
|
+
"items": {
|
|
121
|
+
"type": "record",
|
|
122
|
+
"Aspect": {
|
|
123
|
+
"name": "mlMetric"
|
|
124
|
+
},
|
|
125
|
+
"name": "MLMetric",
|
|
126
|
+
"namespace": "com.linkedin.pegasus2avro.ml.metadata",
|
|
127
|
+
"fields": [
|
|
128
|
+
{
|
|
129
|
+
"type": "string",
|
|
130
|
+
"name": "name",
|
|
131
|
+
"doc": "Name of the mlMetric"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": [
|
|
135
|
+
"null",
|
|
136
|
+
"string"
|
|
137
|
+
],
|
|
138
|
+
"name": "description",
|
|
139
|
+
"default": null,
|
|
140
|
+
"doc": "Documentation of the mlMetric"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"type": [
|
|
144
|
+
"null",
|
|
145
|
+
"string"
|
|
146
|
+
],
|
|
147
|
+
"name": "value",
|
|
148
|
+
"default": null,
|
|
149
|
+
"doc": "The value of the mlMetric"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": [
|
|
153
|
+
"null",
|
|
154
|
+
"long"
|
|
155
|
+
],
|
|
156
|
+
"name": "createdAt",
|
|
157
|
+
"default": null,
|
|
158
|
+
"doc": "Date when the mlMetric was developed"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"doc": "Properties associated with an ML Metric"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"name": "trainingMetrics",
|
|
166
|
+
"default": null,
|
|
167
|
+
"doc": "Metrics of the ML Training Run"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"doc": "The inputs and outputs of this training run"
|
|
171
|
+
}
|
|
@@ -5769,6 +5769,66 @@
|
|
|
5769
5769
|
"default": null,
|
|
5770
5770
|
"doc": "URL where the reference exist"
|
|
5771
5771
|
},
|
|
5772
|
+
{
|
|
5773
|
+
"Relationship": {
|
|
5774
|
+
"/*": {
|
|
5775
|
+
"entityTypes": [
|
|
5776
|
+
"dataJob",
|
|
5777
|
+
"dataProcessInstance"
|
|
5778
|
+
],
|
|
5779
|
+
"isLineage": true,
|
|
5780
|
+
"name": "TrainedBy"
|
|
5781
|
+
}
|
|
5782
|
+
},
|
|
5783
|
+
"type": [
|
|
5784
|
+
"null",
|
|
5785
|
+
{
|
|
5786
|
+
"type": "array",
|
|
5787
|
+
"items": "string"
|
|
5788
|
+
}
|
|
5789
|
+
],
|
|
5790
|
+
"name": "trainingJobs",
|
|
5791
|
+
"default": null,
|
|
5792
|
+
"doc": "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect."
|
|
5793
|
+
},
|
|
5794
|
+
{
|
|
5795
|
+
"Relationship": {
|
|
5796
|
+
"/*": {
|
|
5797
|
+
"entityTypes": [
|
|
5798
|
+
"dataJob",
|
|
5799
|
+
"dataProcessInstance"
|
|
5800
|
+
],
|
|
5801
|
+
"isLineage": true,
|
|
5802
|
+
"isUpstream": false,
|
|
5803
|
+
"name": "UsedBy"
|
|
5804
|
+
}
|
|
5805
|
+
},
|
|
5806
|
+
"type": [
|
|
5807
|
+
"null",
|
|
5808
|
+
{
|
|
5809
|
+
"type": "array",
|
|
5810
|
+
"items": "string"
|
|
5811
|
+
}
|
|
5812
|
+
],
|
|
5813
|
+
"name": "downstreamJobs",
|
|
5814
|
+
"default": null,
|
|
5815
|
+
"doc": "List of jobs or process instances (if any) that use the model or group."
|
|
5816
|
+
},
|
|
5817
|
+
{
|
|
5818
|
+
"Searchable": {
|
|
5819
|
+
"boostScore": 10.0,
|
|
5820
|
+
"enableAutocomplete": true,
|
|
5821
|
+
"fieldType": "WORD_GRAM",
|
|
5822
|
+
"queryByDefault": true
|
|
5823
|
+
},
|
|
5824
|
+
"type": [
|
|
5825
|
+
"null",
|
|
5826
|
+
"string"
|
|
5827
|
+
],
|
|
5828
|
+
"name": "name",
|
|
5829
|
+
"default": null,
|
|
5830
|
+
"doc": "Display name of the MLModel"
|
|
5831
|
+
},
|
|
5772
5832
|
{
|
|
5773
5833
|
"Searchable": {
|
|
5774
5834
|
"fieldType": "TEXT",
|
|
@@ -5783,6 +5843,7 @@
|
|
|
5783
5843
|
"doc": "Documentation of the MLModel"
|
|
5784
5844
|
},
|
|
5785
5845
|
{
|
|
5846
|
+
"deprecated": true,
|
|
5786
5847
|
"type": [
|
|
5787
5848
|
"null",
|
|
5788
5849
|
"long"
|
|
@@ -5791,6 +5852,24 @@
|
|
|
5791
5852
|
"default": null,
|
|
5792
5853
|
"doc": "Date when the MLModel was developed"
|
|
5793
5854
|
},
|
|
5855
|
+
{
|
|
5856
|
+
"type": [
|
|
5857
|
+
"null",
|
|
5858
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
5859
|
+
],
|
|
5860
|
+
"name": "created",
|
|
5861
|
+
"default": null,
|
|
5862
|
+
"doc": "Audit stamp containing who created this and when"
|
|
5863
|
+
},
|
|
5864
|
+
{
|
|
5865
|
+
"type": [
|
|
5866
|
+
"null",
|
|
5867
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
5868
|
+
],
|
|
5869
|
+
"name": "lastModified",
|
|
5870
|
+
"default": null,
|
|
5871
|
+
"doc": "Date when the MLModel was last modified"
|
|
5872
|
+
},
|
|
5794
5873
|
{
|
|
5795
5874
|
"type": [
|
|
5796
5875
|
"null",
|
|
@@ -6019,53 +6098,6 @@
|
|
|
6019
6098
|
"Urn": "Urn",
|
|
6020
6099
|
"urn_is_array": true
|
|
6021
6100
|
},
|
|
6022
|
-
{
|
|
6023
|
-
"Relationship": {
|
|
6024
|
-
"/*": {
|
|
6025
|
-
"entityTypes": [
|
|
6026
|
-
"dataJob"
|
|
6027
|
-
],
|
|
6028
|
-
"isLineage": true,
|
|
6029
|
-
"name": "TrainedBy"
|
|
6030
|
-
}
|
|
6031
|
-
},
|
|
6032
|
-
"type": [
|
|
6033
|
-
"null",
|
|
6034
|
-
{
|
|
6035
|
-
"type": "array",
|
|
6036
|
-
"items": "string"
|
|
6037
|
-
}
|
|
6038
|
-
],
|
|
6039
|
-
"name": "trainingJobs",
|
|
6040
|
-
"default": null,
|
|
6041
|
-
"doc": "List of jobs (if any) used to train the model",
|
|
6042
|
-
"Urn": "Urn",
|
|
6043
|
-
"urn_is_array": true
|
|
6044
|
-
},
|
|
6045
|
-
{
|
|
6046
|
-
"Relationship": {
|
|
6047
|
-
"/*": {
|
|
6048
|
-
"entityTypes": [
|
|
6049
|
-
"dataJob"
|
|
6050
|
-
],
|
|
6051
|
-
"isLineage": true,
|
|
6052
|
-
"isUpstream": false,
|
|
6053
|
-
"name": "UsedBy"
|
|
6054
|
-
}
|
|
6055
|
-
},
|
|
6056
|
-
"type": [
|
|
6057
|
-
"null",
|
|
6058
|
-
{
|
|
6059
|
-
"type": "array",
|
|
6060
|
-
"items": "string"
|
|
6061
|
-
}
|
|
6062
|
-
],
|
|
6063
|
-
"name": "downstreamJobs",
|
|
6064
|
-
"default": null,
|
|
6065
|
-
"doc": "List of jobs (if any) that use the model",
|
|
6066
|
-
"Urn": "Urn",
|
|
6067
|
-
"urn_is_array": true
|
|
6068
|
-
},
|
|
6069
6101
|
{
|
|
6070
6102
|
"Relationship": {
|
|
6071
6103
|
"/*": {
|
|
@@ -7468,6 +7500,66 @@
|
|
|
7468
7500
|
"default": {},
|
|
7469
7501
|
"doc": "Custom property bag."
|
|
7470
7502
|
},
|
|
7503
|
+
{
|
|
7504
|
+
"Relationship": {
|
|
7505
|
+
"/*": {
|
|
7506
|
+
"entityTypes": [
|
|
7507
|
+
"dataJob",
|
|
7508
|
+
"dataProcessInstance"
|
|
7509
|
+
],
|
|
7510
|
+
"isLineage": true,
|
|
7511
|
+
"name": "TrainedBy"
|
|
7512
|
+
}
|
|
7513
|
+
},
|
|
7514
|
+
"type": [
|
|
7515
|
+
"null",
|
|
7516
|
+
{
|
|
7517
|
+
"type": "array",
|
|
7518
|
+
"items": "string"
|
|
7519
|
+
}
|
|
7520
|
+
],
|
|
7521
|
+
"name": "trainingJobs",
|
|
7522
|
+
"default": null,
|
|
7523
|
+
"doc": "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect."
|
|
7524
|
+
},
|
|
7525
|
+
{
|
|
7526
|
+
"Relationship": {
|
|
7527
|
+
"/*": {
|
|
7528
|
+
"entityTypes": [
|
|
7529
|
+
"dataJob",
|
|
7530
|
+
"dataProcessInstance"
|
|
7531
|
+
],
|
|
7532
|
+
"isLineage": true,
|
|
7533
|
+
"isUpstream": false,
|
|
7534
|
+
"name": "UsedBy"
|
|
7535
|
+
}
|
|
7536
|
+
},
|
|
7537
|
+
"type": [
|
|
7538
|
+
"null",
|
|
7539
|
+
{
|
|
7540
|
+
"type": "array",
|
|
7541
|
+
"items": "string"
|
|
7542
|
+
}
|
|
7543
|
+
],
|
|
7544
|
+
"name": "downstreamJobs",
|
|
7545
|
+
"default": null,
|
|
7546
|
+
"doc": "List of jobs or process instances (if any) that use the model or group."
|
|
7547
|
+
},
|
|
7548
|
+
{
|
|
7549
|
+
"Searchable": {
|
|
7550
|
+
"boostScore": 10.0,
|
|
7551
|
+
"enableAutocomplete": true,
|
|
7552
|
+
"fieldType": "WORD_GRAM",
|
|
7553
|
+
"queryByDefault": true
|
|
7554
|
+
},
|
|
7555
|
+
"type": [
|
|
7556
|
+
"null",
|
|
7557
|
+
"string"
|
|
7558
|
+
],
|
|
7559
|
+
"name": "name",
|
|
7560
|
+
"default": null,
|
|
7561
|
+
"doc": "Display name of the MLModelGroup"
|
|
7562
|
+
},
|
|
7471
7563
|
{
|
|
7472
7564
|
"Searchable": {
|
|
7473
7565
|
"fieldType": "TEXT",
|
|
@@ -7482,6 +7574,7 @@
|
|
|
7482
7574
|
"doc": "Documentation of the MLModelGroup"
|
|
7483
7575
|
},
|
|
7484
7576
|
{
|
|
7577
|
+
"deprecated": true,
|
|
7485
7578
|
"type": [
|
|
7486
7579
|
"null",
|
|
7487
7580
|
"long"
|
|
@@ -7490,6 +7583,24 @@
|
|
|
7490
7583
|
"default": null,
|
|
7491
7584
|
"doc": "Date when the MLModelGroup was developed"
|
|
7492
7585
|
},
|
|
7586
|
+
{
|
|
7587
|
+
"type": [
|
|
7588
|
+
"null",
|
|
7589
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
7590
|
+
],
|
|
7591
|
+
"name": "created",
|
|
7592
|
+
"default": null,
|
|
7593
|
+
"doc": "Time and Actor who created the MLModelGroup"
|
|
7594
|
+
},
|
|
7595
|
+
{
|
|
7596
|
+
"type": [
|
|
7597
|
+
"null",
|
|
7598
|
+
"com.linkedin.pegasus2avro.common.TimeStamp"
|
|
7599
|
+
],
|
|
7600
|
+
"name": "lastModified",
|
|
7601
|
+
"default": null,
|
|
7602
|
+
"doc": "Date when the MLModelGroup was last modified"
|
|
7603
|
+
},
|
|
7493
7604
|
{
|
|
7494
7605
|
"type": [
|
|
7495
7606
|
"null",
|