acryl-datahub-cloud 0.3.8.2rc8__py3-none-any.whl → 0.3.9rc2__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.

Potentially problematic release.


This version of acryl-datahub-cloud might be problematic. Click here for more details.

Files changed (79) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
  3. acryl_datahub_cloud/action_request/__init__.py +0 -0
  4. acryl_datahub_cloud/action_request/action_request_owner_source.py +174 -0
  5. acryl_datahub_cloud/api/__init__.py +1 -1
  6. acryl_datahub_cloud/api/client.py +2 -2
  7. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +6 -6
  8. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +67 -33
  9. acryl_datahub_cloud/datahub_reporting/extract_sql.py +4 -4
  10. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py +21 -21
  11. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +14 -13
  12. acryl_datahub_cloud/metadata/_urns/urn_defs.py +1064 -418
  13. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py +6 -0
  14. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/dataplatforminstance/__init__.py +2 -0
  15. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/dataset/__init__.py +2 -0
  16. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorglobalconfig/__init__.py +15 -0
  17. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py +4 -0
  18. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
  19. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metric/__init__.py +29 -0
  20. acryl_datahub_cloud/metadata/schema.avsc +786 -48
  21. acryl_datahub_cloud/metadata/schema_classes.py +1113 -62
  22. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +422 -12
  23. acryl_datahub_cloud/metadata/schemas/ActionRequestStatus.avsc +12 -0
  24. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +5 -3
  25. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +5 -3
  26. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +5 -3
  27. acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +6 -2
  28. acryl_datahub_cloud/metadata/schemas/BusinessAttributes.avsc +6 -0
  29. acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +1 -0
  30. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +3 -3
  31. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -1
  32. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +1 -1
  33. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +3 -3
  34. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -1
  35. acryl_datahub_cloud/metadata/schemas/DataHubActionInfo.avsc +1 -1
  36. acryl_datahub_cloud/metadata/schemas/DataHubConnectionKey.avsc +2 -1
  37. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc +9 -4
  38. acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeDefinition.avsc +185 -0
  39. acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeEvent.avsc +184 -0
  40. acryl_datahub_cloud/metadata/schemas/DataHubMetricCubeKey.avsc +22 -0
  41. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +4 -4
  42. acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceKey.avsc +2 -1
  43. acryl_datahub_cloud/metadata/schemas/DataProcessInstanceInput.avsc +4 -2
  44. acryl_datahub_cloud/metadata/schemas/DataProcessInstanceOutput.avsc +2 -0
  45. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +14 -13
  46. acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +6 -2
  47. acryl_datahub_cloud/metadata/schemas/ExecutionRequestInput.avsc +6 -1
  48. acryl_datahub_cloud/metadata/schemas/ExecutionRequestSignal.avsc +1 -1
  49. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +5 -0
  50. acryl_datahub_cloud/metadata/schemas/GlossaryTerms.avsc +3 -1
  51. acryl_datahub_cloud/metadata/schemas/IcebergCatalogInfo.avsc +28 -0
  52. acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +96 -0
  53. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +4 -1
  54. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +4 -1
  55. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +3 -1
  56. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -1
  57. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -1
  58. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -1
  59. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +3 -3
  60. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -1
  61. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +399 -176
  62. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +6 -4
  63. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -1
  64. acryl_datahub_cloud/metadata/schemas/Operation.avsc +4 -2
  65. acryl_datahub_cloud/metadata/schemas/RemoteExecutorGlobalConfigKey.avsc +21 -0
  66. acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolGlobalConfig.avsc +16 -0
  67. acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc +85 -0
  68. acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolKey.avsc +1 -1
  69. acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc +5 -5
  70. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +2 -2
  71. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +3 -1
  72. acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc +18 -0
  73. acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc +5 -0
  74. {acryl_datahub_cloud-0.3.8.2rc8.dist-info → acryl_datahub_cloud-0.3.9rc2.dist-info}/METADATA +43 -43
  75. {acryl_datahub_cloud-0.3.8.2rc8.dist-info → acryl_datahub_cloud-0.3.9rc2.dist-info}/RECORD +78 -68
  76. {acryl_datahub_cloud-0.3.8.2rc8.dist-info → acryl_datahub_cloud-0.3.9rc2.dist-info}/entry_points.txt +1 -0
  77. acryl_datahub_cloud/api/entity_versioning.py +0 -167
  78. {acryl_datahub_cloud-0.3.8.2rc8.dist-info → acryl_datahub_cloud-0.3.9rc2.dist-info}/WHEEL +0 -0
  79. {acryl_datahub_cloud-0.3.8.2rc8.dist-info → acryl_datahub_cloud-0.3.9rc2.dist-info}/top_level.txt +0 -0
@@ -9,11 +9,8 @@
9
9
  "editableChartProperties",
10
10
  "chartQuery",
11
11
  "inputFields",
12
- "usageFeatures",
13
- "lineageFeatures",
14
12
  "chartUsageStatistics",
15
13
  "embed",
16
- "proposals",
17
14
  "browsePaths",
18
15
  "domains",
19
16
  "container",
@@ -30,6 +27,9 @@
30
27
  "incidentsSummary",
31
28
  "forms",
32
29
  "testResults",
30
+ "usageFeatures",
31
+ "lineageFeatures",
32
+ "proposals",
33
33
  "share",
34
34
  "origin",
35
35
  "documentation"
@@ -18,12 +18,12 @@
18
18
  "browsePaths",
19
19
  "status",
20
20
  "domains",
21
- "proposals",
22
21
  "browsePathsV2",
23
22
  "structuredProperties",
24
23
  "forms",
25
24
  "testResults",
26
25
  "access",
26
+ "proposals",
27
27
  "share",
28
28
  "origin",
29
29
  "documentation"
@@ -11,11 +11,11 @@
11
11
  "ownership",
12
12
  "status",
13
13
  "origin",
14
- "corpGroupSettings",
15
14
  "roleMembership",
16
15
  "structuredProperties",
17
16
  "forms",
18
17
  "testResults",
18
+ "corpGroupSettings",
19
19
  "share"
20
20
  ],
21
21
  "entityDoc": "CorpGroup represents an identity of a group of users in the enterprise."
@@ -10,11 +10,8 @@
10
10
  "deprecation",
11
11
  "dashboardUsageStatistics",
12
12
  "inputFields",
13
- "usageFeatures",
14
- "lineageFeatures",
15
13
  "subTypes",
16
14
  "embed",
17
- "proposals",
18
15
  "dashboardInfo",
19
16
  "editableDashboardProperties",
20
17
  "ownership",
@@ -29,6 +26,9 @@
29
26
  "incidentsSummary",
30
27
  "forms",
31
28
  "testResults",
29
+ "usageFeatures",
30
+ "lineageFeatures",
31
+ "proposals",
32
32
  "share",
33
33
  "origin",
34
34
  "documentation"
@@ -8,7 +8,6 @@
8
8
  "domains",
9
9
  "deprecation",
10
10
  "versionInfo",
11
- "proposals",
12
11
  "dataFlowInfo",
13
12
  "editableDataFlowProperties",
14
13
  "ownership",
@@ -25,6 +24,7 @@
25
24
  "forms",
26
25
  "subTypes",
27
26
  "testResults",
27
+ "proposals",
28
28
  "share",
29
29
  "origin",
30
30
  "lineageFeatures",
@@ -55,7 +55,7 @@
55
55
  ],
56
56
  "name": "executorId",
57
57
  "default": null,
58
- "doc": "The id of the executor to use to execute the automation. Defaults to 'default' (runs locally)"
58
+ "doc": "The id of the executor pool to use to execute the automation. Defaults to 'default' (runs locally embedded)"
59
59
  }
60
60
  ]
61
61
  },
@@ -6,7 +6,8 @@
6
6
  "entityCategory": "internal",
7
7
  "entityAspects": [
8
8
  "dataHubConnectionDetails",
9
- "dataPlatformInstance"
9
+ "dataPlatformInstance",
10
+ "status"
10
11
  ]
11
12
  },
12
13
  "name": "DataHubConnectionKey",
@@ -16,7 +16,8 @@
16
16
  },
17
17
  {
18
18
  "Searchable": {
19
- "fieldType": "TEXT_PARTIAL"
19
+ "fieldType": "KEYWORD",
20
+ "queryByDefault": false
20
21
  },
21
22
  "type": "string",
22
23
  "name": "type",
@@ -83,7 +84,9 @@
83
84
  },
84
85
  {
85
86
  "Searchable": {
86
- "fieldName": "sourceExecutorId"
87
+ "fieldName": "sourceExecutorId",
88
+ "fieldType": "KEYWORD",
89
+ "queryByDefault": false
87
90
  },
88
91
  "type": [
89
92
  "null",
@@ -91,7 +94,7 @@
91
94
  ],
92
95
  "name": "executorId",
93
96
  "default": null,
94
- "doc": "The id of the executor to use to execute the ingestion run"
97
+ "doc": "The id of the executor pool to use to execute the ingestion run"
95
98
  },
96
99
  {
97
100
  "type": [
@@ -129,7 +132,9 @@
129
132
  "fields": [
130
133
  {
131
134
  "Searchable": {
132
- "fieldName": "sourceType"
135
+ "fieldName": "sourceType",
136
+ "fieldType": "KEYWORD",
137
+ "queryByDefault": false
133
138
  },
134
139
  "type": {
135
140
  "type": "enum",
@@ -0,0 +1,185 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "dataHubMetricCubeDefinition"
5
+ },
6
+ "name": "DataHubMetricCubeDefinition",
7
+ "namespace": "com.linkedin.pegasus2avro.metric",
8
+ "fields": [
9
+ {
10
+ "Searchable": {},
11
+ "type": "string",
12
+ "name": "name",
13
+ "doc": " Display name of the metric cube"
14
+ },
15
+ {
16
+ "Searchable": {},
17
+ "type": "string",
18
+ "name": "type",
19
+ "default": "custom",
20
+ "doc": "A type or category for the metric cube. This is used to categorize the metric cube & for filtering.\n\nThis may be used to group similar types of metrics for a given entity, e.g. 'row_count', 'error_count', etc.\nthat originated in different places."
21
+ },
22
+ {
23
+ "type": [
24
+ "null",
25
+ "string"
26
+ ],
27
+ "name": "description",
28
+ "default": null,
29
+ "doc": " Optional description for the metric"
30
+ },
31
+ {
32
+ "Searchable": {},
33
+ "java": {
34
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
35
+ },
36
+ "type": [
37
+ "null",
38
+ "string"
39
+ ],
40
+ "name": "entity",
41
+ "default": null,
42
+ "doc": " An optional URN for the entity that this metric cube is associated with.",
43
+ "Urn": "Urn"
44
+ },
45
+ {
46
+ "type": {
47
+ "type": "record",
48
+ "name": "DataHubMetricCubeOrigin",
49
+ "namespace": "com.linkedin.pegasus2avro.metric",
50
+ "fields": [
51
+ {
52
+ "Searchable": {
53
+ "addToFilters": true,
54
+ "fieldName": "originType",
55
+ "filterNameOverride": "Origin"
56
+ },
57
+ "type": {
58
+ "type": "enum",
59
+ "symbolDocs": {
60
+ "ASSERTION_MONITOR": "Assertion monitor created the metric.",
61
+ "MANUAL": "Manually created metric, via UI or API."
62
+ },
63
+ "name": "DataHubMetricSourceType",
64
+ "namespace": "com.linkedin.pegasus2avro.metric",
65
+ "symbols": [
66
+ "MANUAL",
67
+ "ASSERTION_MONITOR"
68
+ ]
69
+ },
70
+ "name": "type",
71
+ "doc": "Message associated with the incident"
72
+ },
73
+ {
74
+ "Searchable": {
75
+ "fieldType": "URN"
76
+ },
77
+ "java": {
78
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
79
+ },
80
+ "type": [
81
+ "null",
82
+ "string"
83
+ ],
84
+ "name": "originUrn",
85
+ "default": null,
86
+ "doc": "Reference to the source that created the metric.\nIn the case of assertion monitor, this is the URN of the assertion monitor.",
87
+ "Urn": "Urn"
88
+ }
89
+ ],
90
+ "doc": "Information about the origin of the metric cube"
91
+ },
92
+ "name": "origin",
93
+ "doc": "The origin of the metric cube."
94
+ },
95
+ {
96
+ "type": [
97
+ "null",
98
+ {
99
+ "type": "record",
100
+ "name": "DataHubMetricCubeMeasures",
101
+ "namespace": "com.linkedin.pegasus2avro.metric",
102
+ "fields": [
103
+ {
104
+ "type": {
105
+ "type": "record",
106
+ "name": "DataHubMetricCubeMeasure",
107
+ "namespace": "com.linkedin.pegasus2avro.metric",
108
+ "fields": [
109
+ {
110
+ "type": "string",
111
+ "name": "name",
112
+ "doc": " The name of the measure"
113
+ }
114
+ ],
115
+ "doc": "The definition of a metric cube measure."
116
+ },
117
+ "name": "measure",
118
+ "doc": " The first measure being tracked in the cube."
119
+ }
120
+ ],
121
+ "doc": "The definition of the measures of a metric cube.\nA measure is a metric that is being tracked in the cube."
122
+ }
123
+ ],
124
+ "name": "measures",
125
+ "default": null,
126
+ "doc": " Optional - The measures of the cube for display purposes."
127
+ },
128
+ {
129
+ "type": [
130
+ "null",
131
+ {
132
+ "type": "record",
133
+ "name": "DataHubMetricCubeDimensions",
134
+ "namespace": "com.linkedin.pegasus2avro.metric",
135
+ "fields": [
136
+ {
137
+ "type": [
138
+ "null",
139
+ {
140
+ "type": "record",
141
+ "name": "DataHubMetricCubeDimension",
142
+ "namespace": "com.linkedin.pegasus2avro.metric",
143
+ "fields": [
144
+ {
145
+ "type": "string",
146
+ "name": "name",
147
+ "doc": " The name of the dimension"
148
+ }
149
+ ],
150
+ "doc": "The definition of a metric cube dimension."
151
+ }
152
+ ],
153
+ "name": "dim1",
154
+ "default": null,
155
+ "doc": " The first measure being tracked in the cube."
156
+ },
157
+ {
158
+ "type": [
159
+ "null",
160
+ "com.linkedin.pegasus2avro.metric.DataHubMetricCubeDimension"
161
+ ],
162
+ "name": "dim2",
163
+ "default": null,
164
+ "doc": "Optional: A second measure being tracked in the cube."
165
+ },
166
+ {
167
+ "type": [
168
+ "null",
169
+ "com.linkedin.pegasus2avro.metric.DataHubMetricCubeDimension"
170
+ ],
171
+ "name": "dim3",
172
+ "default": null,
173
+ "doc": "Optional: A third measure being tracked in the cube."
174
+ }
175
+ ],
176
+ "doc": "The dimensions of the cube. This is what you filter and group by.\nThis is a record to allow for future expansion of the dimensions."
177
+ }
178
+ ],
179
+ "name": "dimensions",
180
+ "default": null,
181
+ "doc": "Optional - The dimensions of the cube for display purposes."
182
+ }
183
+ ],
184
+ "doc": "The structure of an individual metric cube in DataHub."
185
+ }
@@ -0,0 +1,184 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "dataHubMetricCubeEvent",
5
+ "type": "timeseries"
6
+ },
7
+ "name": "DataHubMetricCubeEvent",
8
+ "namespace": "com.linkedin.pegasus2avro.metric",
9
+ "fields": [
10
+ {
11
+ "type": "long",
12
+ "name": "reportedTimeMillis",
13
+ "doc": "The event or bucket reported time field as epoch at UTC in milli seconds.\nThis must be provided in order to pass validation."
14
+ },
15
+ {
16
+ "TimeseriesField": {},
17
+ "type": "double",
18
+ "name": "measure",
19
+ "doc": "The first measure value - Typically this is the primary metric."
20
+ },
21
+ {
22
+ "TimeseriesField": {},
23
+ "type": [
24
+ "null",
25
+ {
26
+ "type": "array",
27
+ "items": "string"
28
+ }
29
+ ],
30
+ "name": "dim1",
31
+ "default": null,
32
+ "doc": "The first dimension value(s). Array type to support multi-dimensionality."
33
+ },
34
+ {
35
+ "TimeseriesField": {},
36
+ "type": [
37
+ "null",
38
+ {
39
+ "type": "array",
40
+ "items": "string"
41
+ }
42
+ ],
43
+ "name": "dim2",
44
+ "default": null,
45
+ "doc": "The second dimension value(s). Array type to support multi-dimensionality."
46
+ },
47
+ {
48
+ "TimeseriesField": {},
49
+ "type": [
50
+ "null",
51
+ {
52
+ "type": "array",
53
+ "items": "string"
54
+ }
55
+ ],
56
+ "name": "dim3",
57
+ "default": null,
58
+ "doc": "The third dimension value(s). Array type to support multi-dimensionality."
59
+ },
60
+ {
61
+ "type": "long",
62
+ "name": "timestampMillis",
63
+ "doc": "The event timestamp field as epoch at UTC in milli seconds."
64
+ },
65
+ {
66
+ "type": [
67
+ "null",
68
+ {
69
+ "type": "record",
70
+ "name": "TimeWindowSize",
71
+ "namespace": "com.linkedin.pegasus2avro.timeseries",
72
+ "fields": [
73
+ {
74
+ "type": {
75
+ "type": "enum",
76
+ "name": "CalendarInterval",
77
+ "namespace": "com.linkedin.pegasus2avro.timeseries",
78
+ "symbols": [
79
+ "SECOND",
80
+ "MINUTE",
81
+ "HOUR",
82
+ "DAY",
83
+ "WEEK",
84
+ "MONTH",
85
+ "QUARTER",
86
+ "YEAR"
87
+ ]
88
+ },
89
+ "name": "unit",
90
+ "doc": "Interval unit such as minute/hour/day etc."
91
+ },
92
+ {
93
+ "type": "int",
94
+ "name": "multiple",
95
+ "default": 1,
96
+ "doc": "How many units. Defaults to 1."
97
+ }
98
+ ],
99
+ "doc": "Defines the size of a time window."
100
+ }
101
+ ],
102
+ "name": "eventGranularity",
103
+ "default": null,
104
+ "doc": "Granularity of the event if applicable"
105
+ },
106
+ {
107
+ "type": [
108
+ {
109
+ "type": "record",
110
+ "name": "PartitionSpec",
111
+ "namespace": "com.linkedin.pegasus2avro.timeseries",
112
+ "fields": [
113
+ {
114
+ "TimeseriesField": {},
115
+ "type": "string",
116
+ "name": "partition",
117
+ "doc": "A unique id / value for the partition for which statistics were collected,\ngenerated by applying the key definition to a given row."
118
+ },
119
+ {
120
+ "type": [
121
+ "null",
122
+ {
123
+ "type": "record",
124
+ "name": "TimeWindow",
125
+ "namespace": "com.linkedin.pegasus2avro.timeseries",
126
+ "fields": [
127
+ {
128
+ "type": "long",
129
+ "name": "startTimeMillis",
130
+ "doc": "Start time as epoch at UTC."
131
+ },
132
+ {
133
+ "type": "com.linkedin.pegasus2avro.timeseries.TimeWindowSize",
134
+ "name": "length",
135
+ "doc": "The length of the window."
136
+ }
137
+ ]
138
+ }
139
+ ],
140
+ "name": "timePartition",
141
+ "default": null,
142
+ "doc": "Time window of the partition, if we are able to extract it from the partition key."
143
+ },
144
+ {
145
+ "deprecated": true,
146
+ "type": {
147
+ "type": "enum",
148
+ "name": "PartitionType",
149
+ "namespace": "com.linkedin.pegasus2avro.timeseries",
150
+ "symbols": [
151
+ "FULL_TABLE",
152
+ "QUERY",
153
+ "PARTITION"
154
+ ]
155
+ },
156
+ "name": "type",
157
+ "default": "PARTITION",
158
+ "doc": "Unused!"
159
+ }
160
+ ],
161
+ "doc": "A reference to a specific partition in a dataset."
162
+ },
163
+ "null"
164
+ ],
165
+ "name": "partitionSpec",
166
+ "default": {
167
+ "partition": "FULL_TABLE_SNAPSHOT",
168
+ "type": "FULL_TABLE",
169
+ "timePartition": null
170
+ },
171
+ "doc": "The optional partition specification."
172
+ },
173
+ {
174
+ "type": [
175
+ "null",
176
+ "string"
177
+ ],
178
+ "name": "messageId",
179
+ "default": null,
180
+ "doc": "The optional messageId, if provided serves as a custom user-defined unique identifier for an aspect value."
181
+ }
182
+ ],
183
+ "doc": "A timeseries measure event, e.g. a single observation."
184
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "dataHubMetricCubeKey",
5
+ "keyForEntity": "dataHubMetricCube",
6
+ "entityCategory": "internal",
7
+ "entityAspects": [
8
+ "dataHubMetricCubeDefinition",
9
+ "dataHubMetricCubeEvent"
10
+ ]
11
+ },
12
+ "name": "DataHubMetricCubeKey",
13
+ "namespace": "com.linkedin.pegasus2avro.metadata.key",
14
+ "fields": [
15
+ {
16
+ "type": "string",
17
+ "name": "id",
18
+ "doc": "Unique id for the cube type."
19
+ }
20
+ ],
21
+ "doc": "Key for a DataHub Metric Cube, e.g. an internal metric."
22
+ }
@@ -10,7 +10,6 @@
10
10
  "domains",
11
11
  "deprecation",
12
12
  "versionInfo",
13
- "proposals",
14
13
  "dataJobInfo",
15
14
  "dataJobInputOutput",
16
15
  "editableDataJobProperties",
@@ -25,15 +24,16 @@
25
24
  "browsePathsV2",
26
25
  "structuredProperties",
27
26
  "forms",
28
- "anomaliesSummary",
29
27
  "subTypes",
30
28
  "incidentsSummary",
31
29
  "testResults",
30
+ "dataTransformLogic",
31
+ "proposals",
32
+ "anomaliesSummary",
32
33
  "share",
33
34
  "origin",
34
35
  "lineageFeatures",
35
- "documentation",
36
- "dataTransformLogic"
36
+ "documentation"
37
37
  ]
38
38
  },
39
39
  "name": "DataJobKey",
@@ -10,7 +10,8 @@
10
10
  "globalTags",
11
11
  "institutionalMemory",
12
12
  "deprecation",
13
- "status"
13
+ "status",
14
+ "icebergWarehouseInfo"
14
15
  ]
15
16
  },
16
17
  "name": "DataPlatformInstanceKey",
@@ -10,8 +10,10 @@
10
10
  "Relationship": {
11
11
  "/*": {
12
12
  "entityTypes": [
13
- "dataset"
13
+ "dataset",
14
+ "mlModel"
14
15
  ],
16
+ "isLineage": true,
15
17
  "name": "Consumes"
16
18
  }
17
19
  },
@@ -29,7 +31,7 @@
29
31
  "items": "string"
30
32
  },
31
33
  "name": "inputs",
32
- "doc": "Input datasets to be consumed",
34
+ "doc": "Input assets consumed",
33
35
  "Urn": "Urn",
34
36
  "urn_is_array": true
35
37
  }
@@ -13,6 +13,8 @@
13
13
  "dataset",
14
14
  "mlModel"
15
15
  ],
16
+ "isLineage": true,
17
+ "isUpstream": false,
16
18
  "name": "Produces"
17
19
  }
18
20
  },
@@ -11,24 +11,14 @@
11
11
  "datasetUsageStatistics",
12
12
  "operation",
13
13
  "domains",
14
- "proposals",
15
- "schemaProposals",
16
14
  "schemaMetadata",
17
15
  "status",
18
16
  "container",
19
17
  "deprecation",
20
- "usageFeatures",
21
- "storageFeatures",
22
- "lineageFeatures",
23
18
  "testResults",
24
19
  "siblings",
25
20
  "embed",
26
21
  "incidentsSummary",
27
- "inferredNeighbors",
28
- "inferredMetadata",
29
- "schemaFieldsInferredMetadata",
30
- "schemaFieldsInferredNeighbors",
31
- "assertionsSummary",
32
22
  "datasetProperties",
33
23
  "editableDatasetProperties",
34
24
  "datasetDeprecation",
@@ -42,16 +32,27 @@
42
32
  "browsePaths",
43
33
  "dataPlatformInstance",
44
34
  "browsePathsV2",
45
- "anomaliesSummary",
46
35
  "access",
47
36
  "structuredProperties",
48
37
  "forms",
49
38
  "partitionsSummary",
39
+ "versionProperties",
40
+ "icebergCatalogInfo",
41
+ "inferredNeighbors",
42
+ "inferredMetadata",
43
+ "schemaFieldsInferredMetadata",
44
+ "schemaFieldsInferredNeighbors",
45
+ "assertionsSummary",
46
+ "usageFeatures",
47
+ "storageFeatures",
48
+ "lineageFeatures",
49
+ "proposals",
50
+ "schemaProposals",
51
+ "anomaliesSummary",
50
52
  "share",
51
53
  "origin",
52
54
  "documentation",
53
- "entityInferenceMetadata",
54
- "versionProperties"
55
+ "entityInferenceMetadata"
55
56
  ],
56
57
  "entityDoc": "Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets."
57
58
  },