acryl-datahub-cloud 0.3.8rc0__py3-none-any.whl → 0.3.8rc1__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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/acryl_cs_issues/source.py +0 -1
- acryl_datahub_cloud/datahub_metadata_sharing/__init__.py +0 -0
- acryl_datahub_cloud/datahub_metadata_sharing/metadata_sharing_source.py +262 -0
- acryl_datahub_cloud/datahub_metadata_sharing/query.py +7 -0
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +0 -2
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +0 -1
- acryl_datahub_cloud/datahub_reporting/extract_graph.py +0 -1
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +0 -1
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +163 -0
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +29 -129
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1612 -1567
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executor/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +25096 -25347
- acryl_datahub_cloud/metadata/schema_classes.py +807 -503
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +63 -0
- acryl_datahub_cloud/metadata/schemas/EntityTypeKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestInput.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestResult.avsc +14 -0
- acryl_datahub_cloud/metadata/schemas/PostInfo.avsc +23 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc +80 -0
- acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- {acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/METADATA +34 -33
- {acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/RECORD +33 -25
- {acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/entry_points.txt +1 -0
- {acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataTransformLogic"
|
|
5
|
+
},
|
|
6
|
+
"name": "DataTransformLogic",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "array",
|
|
12
|
+
"items": {
|
|
13
|
+
"type": "record",
|
|
14
|
+
"name": "DataTransform",
|
|
15
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"type": [
|
|
19
|
+
"null",
|
|
20
|
+
{
|
|
21
|
+
"type": "record",
|
|
22
|
+
"name": "QueryStatement",
|
|
23
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
24
|
+
"fields": [
|
|
25
|
+
{
|
|
26
|
+
"type": "string",
|
|
27
|
+
"name": "value",
|
|
28
|
+
"doc": "The query text"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": {
|
|
32
|
+
"type": "enum",
|
|
33
|
+
"symbolDocs": {
|
|
34
|
+
"SQL": "A SQL Query"
|
|
35
|
+
},
|
|
36
|
+
"name": "QueryLanguage",
|
|
37
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
38
|
+
"symbols": [
|
|
39
|
+
"SQL"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"name": "language",
|
|
43
|
+
"default": "SQL",
|
|
44
|
+
"doc": "The language of the Query, e.g. SQL."
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"doc": "A query statement against one or more data assets."
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "queryStatement",
|
|
51
|
+
"default": null,
|
|
52
|
+
"doc": "The data transform may be defined by a query statement"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"doc": "Information about a transformation. It may be a query,"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"name": "transforms",
|
|
59
|
+
"doc": "List of transformations applied"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"doc": "Information about a Query against one or more data assets (e.g. Tables or Views)."
|
|
63
|
+
}
|
|
@@ -119,6 +119,15 @@
|
|
|
119
119
|
"default": null,
|
|
120
120
|
"doc": "Urn of the actor who created this execution request.",
|
|
121
121
|
"Urn": "Urn"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": [
|
|
125
|
+
"null",
|
|
126
|
+
"long"
|
|
127
|
+
],
|
|
128
|
+
"name": "attempts",
|
|
129
|
+
"default": null,
|
|
130
|
+
"doc": "Field tracking number of previously unsuccessful attempts for the given execution request"
|
|
122
131
|
}
|
|
123
132
|
],
|
|
124
133
|
"doc": "An request to execution some remote logic or action.\nTODO: Determine who is responsible for emitting execution request success or failure. Executor?"
|
|
@@ -15,6 +15,20 @@
|
|
|
15
15
|
"name": "status",
|
|
16
16
|
"doc": "The status of the execution request"
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
"Searchable": {
|
|
20
|
+
"fieldName": "executorInstanceId",
|
|
21
|
+
"fieldType": "KEYWORD",
|
|
22
|
+
"queryByDefault": false
|
|
23
|
+
},
|
|
24
|
+
"type": [
|
|
25
|
+
"null",
|
|
26
|
+
"string"
|
|
27
|
+
],
|
|
28
|
+
"name": "executorInstanceId",
|
|
29
|
+
"default": null,
|
|
30
|
+
"doc": "Identity of the executor instance handling the request"
|
|
31
|
+
},
|
|
18
32
|
{
|
|
19
33
|
"type": [
|
|
20
34
|
"null",
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"namespace": "com.linkedin.pegasus2avro.post",
|
|
8
8
|
"fields": [
|
|
9
9
|
{
|
|
10
|
+
"Searchable": {},
|
|
10
11
|
"type": {
|
|
11
12
|
"type": "enum",
|
|
12
13
|
"symbolDocs": {
|
|
@@ -205,9 +206,20 @@
|
|
|
205
206
|
"dataset",
|
|
206
207
|
"schemaField",
|
|
207
208
|
"chart",
|
|
209
|
+
"container",
|
|
208
210
|
"dashboard",
|
|
209
211
|
"dataFlow",
|
|
210
212
|
"dataJob",
|
|
213
|
+
"dataProduct",
|
|
214
|
+
"glossaryTerm",
|
|
215
|
+
"glossaryNode",
|
|
216
|
+
"mlModel",
|
|
217
|
+
"mlFeature",
|
|
218
|
+
"notebook",
|
|
219
|
+
"mlFeatureTable",
|
|
220
|
+
"mlPrimaryKey",
|
|
221
|
+
"mlModelGroup",
|
|
222
|
+
"domain",
|
|
211
223
|
"dataProduct"
|
|
212
224
|
],
|
|
213
225
|
"name": "PostTarget"
|
|
@@ -228,9 +240,20 @@
|
|
|
228
240
|
"dataset",
|
|
229
241
|
"schemaField",
|
|
230
242
|
"chart",
|
|
243
|
+
"container",
|
|
231
244
|
"dashboard",
|
|
232
245
|
"dataFlow",
|
|
233
246
|
"dataJob",
|
|
247
|
+
"dataProduct",
|
|
248
|
+
"glossaryTerm",
|
|
249
|
+
"glossaryNode",
|
|
250
|
+
"mlModel",
|
|
251
|
+
"mlFeature",
|
|
252
|
+
"notebook",
|
|
253
|
+
"mlFeatureTable",
|
|
254
|
+
"mlPrimaryKey",
|
|
255
|
+
"mlModelGroup",
|
|
256
|
+
"domain",
|
|
234
257
|
"dataProduct"
|
|
235
258
|
]
|
|
236
259
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubRemoteExecutorKey",
|
|
5
|
+
"keyForEntity": "dataHubRemoteExecutor",
|
|
6
|
+
"entityCategory": "internal",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"dataHubRemoteExecutorStatus"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"name": "RemoteExecutorKey",
|
|
12
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
13
|
+
"fields": [
|
|
14
|
+
{
|
|
15
|
+
"type": "string",
|
|
16
|
+
"name": "id",
|
|
17
|
+
"doc": "A unique id for the DataHub Remote Executor."
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"doc": "Key for an DataHub Remote Executor"
|
|
21
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubRemoteExecutorStatus"
|
|
5
|
+
},
|
|
6
|
+
"name": "RemoteExecutorStatus",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.executor",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"fieldType": "KEYWORD"
|
|
12
|
+
},
|
|
13
|
+
"type": "string",
|
|
14
|
+
"name": "executorId",
|
|
15
|
+
"doc": "TODO: rename to pipeline id"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "string",
|
|
19
|
+
"name": "executorReleaseVersion",
|
|
20
|
+
"doc": " Release Version (Tag) embedded into remote executor image"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "string",
|
|
24
|
+
"name": "executorAddress",
|
|
25
|
+
"doc": " IP address of the host where remote executor is running"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "string",
|
|
29
|
+
"name": "executorHostname",
|
|
30
|
+
"doc": "Hostname of the host where remote executor is running"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "float",
|
|
34
|
+
"name": "executorUptime",
|
|
35
|
+
"doc": "Uptime of the remote executor master process"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"Searchable": {
|
|
39
|
+
"fieldType": "BOOLEAN"
|
|
40
|
+
},
|
|
41
|
+
"type": "boolean",
|
|
42
|
+
"name": "executorExpired",
|
|
43
|
+
"default": false,
|
|
44
|
+
"doc": "Flag indicating whether remote executor status record is stale."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"name": "executorStopped",
|
|
49
|
+
"default": false,
|
|
50
|
+
"doc": "Flag indicating whether remote executor is stopped."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "boolean",
|
|
54
|
+
"name": "executorEmbedded",
|
|
55
|
+
"default": false,
|
|
56
|
+
"doc": "Flag indicating whether remote executor is embedded executor"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "boolean",
|
|
60
|
+
"name": "executorInternal",
|
|
61
|
+
"default": false,
|
|
62
|
+
"doc": "Flag indicating whether remote executor is Acryl managed executor"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "boolean",
|
|
66
|
+
"name": "logDeliveryEnabled",
|
|
67
|
+
"default": false,
|
|
68
|
+
"doc": "Flag indicating whether log delivery is enabled by the customer in the given\nremote executor instance."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"Searchable": {
|
|
72
|
+
"fieldType": "COUNT",
|
|
73
|
+
"queryByDefault": false
|
|
74
|
+
},
|
|
75
|
+
"type": "int",
|
|
76
|
+
"name": "reportedAt",
|
|
77
|
+
"doc": "UTC-based timestamp of the last reported status"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
@@ -15,10 +15,10 @@ import pathlib
|
|
|
15
15
|
def _load_schema(schema_name: str) -> str:
|
|
16
16
|
return (pathlib.Path(__file__).parent / f"{schema_name}.avsc").read_text()
|
|
17
17
|
|
|
18
|
-
def getMetadataChangeProposalSchema() -> str:
|
|
19
|
-
return _load_schema("MetadataChangeProposal")
|
|
20
|
-
|
|
21
18
|
def getMetadataChangeEventSchema() -> str:
|
|
22
19
|
return _load_schema("MetadataChangeEvent")
|
|
23
20
|
|
|
21
|
+
def getMetadataChangeProposalSchema() -> str:
|
|
22
|
+
return _load_schema("MetadataChangeProposal")
|
|
23
|
+
|
|
24
24
|
# fmt: on
|
|
@@ -1,80 +1,81 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8rc1
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Provides-Extra: datahub-lineage-features
|
|
7
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
8
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
9
7
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
10
8
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
9
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
10
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
11
11
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
14
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
15
13
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
16
14
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
16
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
17
17
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
18
18
|
Provides-Extra: datahub-reporting-extract-graph
|
|
19
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
20
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
21
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
22
19
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
23
20
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
21
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
22
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
23
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
24
24
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-sql
|
|
26
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
27
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
28
26
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
29
27
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
28
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
29
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
30
30
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Provides-Extra: datahub-usage-feature-reporting
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
33
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
34
34
|
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
35
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
|
|
36
36
|
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
37
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
38
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
39
37
|
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
38
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
39
|
+
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
40
40
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
41
|
-
Requires-Dist:
|
|
41
|
+
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
42
42
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
43
|
+
Provides-Extra: datahub-metadata-sharing
|
|
43
44
|
Provides-Extra: acryl-cs-issues
|
|
44
45
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
45
|
-
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
46
46
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
47
47
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
48
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
48
49
|
Provides-Extra: all
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist: duckdb; extra == "all"
|
|
50
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
51
51
|
Requires-Dist: jinja2; extra == "all"
|
|
52
|
-
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
53
52
|
Requires-Dist: zenpy; extra == "all"
|
|
53
|
+
Requires-Dist: openai; extra == "all"
|
|
54
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
54
55
|
Requires-Dist: pandas; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
56
|
+
Requires-Dist: duckdb; extra == "all"
|
|
56
57
|
Requires-Dist: numpy<2; extra == "all"
|
|
57
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
58
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
59
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
60
58
|
Requires-Dist: boto3; extra == "all"
|
|
61
59
|
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
62
|
-
Requires-Dist:
|
|
60
|
+
Requires-Dist: pydantic<2; extra == "all"
|
|
61
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
62
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
63
|
+
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
63
64
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
64
65
|
Provides-Extra: dev
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
66
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
67
67
|
Requires-Dist: jinja2; extra == "dev"
|
|
68
|
-
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
69
68
|
Requires-Dist: zenpy; extra == "dev"
|
|
69
|
+
Requires-Dist: openai; extra == "dev"
|
|
70
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
71
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
70
72
|
Requires-Dist: pandas; extra == "dev"
|
|
71
|
-
Requires-Dist: pydantic<2; extra == "dev"
|
|
72
73
|
Requires-Dist: numpy<2; extra == "dev"
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
74
|
+
Requires-Dist: boto3; extra == "dev"
|
|
75
75
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
76
|
+
Requires-Dist: pydantic<2; extra == "dev"
|
|
76
77
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
77
|
-
Requires-Dist:
|
|
78
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
78
79
|
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
79
|
-
Requires-Dist:
|
|
80
|
+
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
80
81
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=OMxT390dGuSZbGnWc_kbdsFPK8zmFeHIBG75oMmNU-Y,555
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uFjR2SqGS34y09-S9WqOqNGY8nOq6ptGf4y9781i8Z4,25230
|
|
@@ -7,30 +7,34 @@ acryl_datahub_cloud/acryl_cs_issues/acryl_linear.py,sha256=PH1fEKwG7ZNdQNw_KUTey
|
|
|
7
7
|
acryl_datahub_cloud/acryl_cs_issues/acryl_slack.py,sha256=SCDnFG-wqK3W_OPXJQB-gDyMawtVWT0st_iC0Y9LN1Y,16211
|
|
8
8
|
acryl_datahub_cloud/acryl_cs_issues/acryl_zendesk.py,sha256=eFS08VOzrUf9xgVmUEGxjY4vGyOlY5llIxJr8bcy5_g,5937
|
|
9
9
|
acryl_datahub_cloud/acryl_cs_issues/models.py,sha256=6VvZjA-gInrG71kTzwN7y4lP-QsLcxhknVxNT2-cQEo,13459
|
|
10
|
-
acryl_datahub_cloud/acryl_cs_issues/source.py,sha256=
|
|
10
|
+
acryl_datahub_cloud/acryl_cs_issues/source.py,sha256=XwRfIs9x6mW7fbPwHLvyud9SJcr3Z2ZBoP-a3wYF2Pc,15999
|
|
11
11
|
acryl_datahub_cloud/api/__init__.py,sha256=f3iF76twAax3k19sl7ffOsebQA7UMjd9na_oadK60vU,54
|
|
12
12
|
acryl_datahub_cloud/api/client.py,sha256=Qp4XKB2tDrh0Z5AuNpHyA9QkYItBl2QXz37PGHzUG7w,194
|
|
13
13
|
acryl_datahub_cloud/api/entity_versioning.py,sha256=6AmAk4jhUmMeO-Ghfn7Wjpv3P93K-pnBs1Vs5TYOqe4,5611
|
|
14
|
+
acryl_datahub_cloud/datahub_metadata_sharing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
acryl_datahub_cloud/datahub_metadata_sharing/metadata_sharing_source.py,sha256=NRXQArDsX6slzHBSkgvcmaV6L6cdkJji8y5JyInDxXQ,9287
|
|
16
|
+
acryl_datahub_cloud/datahub_metadata_sharing/query.py,sha256=7Wc7Vtqdh2Ule5HMe0L_C3pQ2Bejkyo1IRusmFZG_0Y,219
|
|
14
17
|
acryl_datahub_cloud/datahub_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=
|
|
16
|
-
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=
|
|
17
|
-
acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=
|
|
18
|
-
acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=
|
|
18
|
+
acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=OCCfMIK7dU1Z9DahVIc-FrPlcMNbVIokKT3uWEP3A_4,19289
|
|
19
|
+
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=usX0P0nYqqdHcjUwjvI_-g7FdHLAFF1EFKsTUtu1xMQ,19726
|
|
20
|
+
acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=4dth7SWKw39kO0oq7C6minRGVmeetdEKsMQCdTx1Yog,7759
|
|
21
|
+
acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=3Q5cmZahoFn8Y0P6LIHMFaJqpqAaFrT4dEi4HFRrFBw,9400
|
|
19
22
|
acryl_datahub_cloud/datahub_reporting/forms.py,sha256=rOw3aZZ8XRb4JPrfMte8-Xq34snis6bp0gpx7Hf7uw4,5940
|
|
20
23
|
acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEtnx74fLuujV59kDQwi1HSxFNI,2102
|
|
21
24
|
acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=qOVyjPv-LlszFGjBvCZgMi9gcb1fT72uh_p64JRnWBk,5280
|
|
22
26
|
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
|
|
23
|
-
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=
|
|
27
|
+
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=MC-TecCxqZeIrjJaWTArOyCkhYNd4FaL9QbAk3XrWAo,63233
|
|
24
28
|
acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
29
|
acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
|
|
26
30
|
acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
|
|
27
31
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
32
|
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
29
33
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
30
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
31
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
34
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=bzZFfxd4Y772UxELVPyGcIjrkpRNaxk1M_kCcsF1hss,1047731
|
|
35
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=zyv4eMAoLzdceFtjG2vOQwWi8NZVjDZUkS-_QUCwq_Q,1377634
|
|
32
36
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
33
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
37
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=sXZMcpiC2jRZTjVKRFs0k-KwMMSRogZkoz2NZX-lfKk,123283
|
|
34
38
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
35
39
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
36
40
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -44,7 +48,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py,sha25
|
|
|
44
48
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py,sha256=TZrjU2bTZtvxjxGhkRHXzWP-RIAwiofp3ZHC-J6ghmY,6744
|
|
45
49
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/businessattribute/__init__.py,sha256=N8kO-eUi0_Rt7weizIExxlnJ2_kZRtPrZLWCC1xtDMA,653
|
|
46
50
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/chart/__init__.py,sha256=RNyyHLBNp_fxgFcBOLWO2UsXR1ofD_JczcBdPEQSusg,848
|
|
47
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py,sha256=
|
|
51
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py,sha256=mi_JQKFA9ujhSO3kNXvH96lUTaG0sr0Ua6dwvp6-xrY,8015
|
|
48
52
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/fieldtransformer/__init__.py,sha256=FN63vLiB3FCmIRqBjTA-0Xt7M6i7h5NhaVzbA1ysv18,396
|
|
49
53
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/connection/__init__.py,sha256=qRtw-dB14pzVzgQ0pDK8kyBplNdpRxVKNj4D70e_FqI,564
|
|
50
54
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/constraint/__init__.py,sha256=cTdQMR-vfPXYcvlp1nqIQEL-YWhxkzKyGJXjte3fR5I,519
|
|
@@ -72,6 +76,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/templa
|
|
|
72
76
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/events/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
73
77
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/events/metadata/__init__.py,sha256=a1FI_2VZ9Ejc9AIVztO-B5kLPR6VwlOgdFlv4PTCTYs,282
|
|
74
78
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py,sha256=O5XAXnGzDnWv8nbqRHxLPPXUbrIu_pn76WUK_hhkHmg,775
|
|
79
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executor/__init__.py,sha256=0biDXQQFL8m6iB4TJQ0na9SNeZqDEgkxN6ajJlhr63k,311
|
|
75
80
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py,sha256=DcISIMoxrWoZZIaPNszxnz-d4Cx6Rtxktfa8qYT74_g,1373
|
|
76
81
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/glossary/__init__.py,sha256=fa1QNv08O3TqXqZ14bkJerGho_t-8DPHFdcWKiXkkUA,501
|
|
77
82
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py,sha256=wfPpGMWEVl1Ual_nFs7UNiYVB_Tq_vRfNmFfO-XkENU,1582
|
|
@@ -80,7 +85,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/inferred/__init__.py,sha2
|
|
|
80
85
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ingestion/__init__.py,sha256=1bfG2naq4iS_pwU4J-BVer_gfL0hDbJbnH0gh1MPNgA,871
|
|
81
86
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/link/__init__.py,sha256=4DfT4T_I6dh-iGk9LXYjrp98L9D66xZzM7Boqc7jmNg,388
|
|
82
87
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
83
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=
|
|
88
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=w-gZg-gqckNroX8iMkaRcju7AsuGeMQQybRAaIqs-3w,5646
|
|
84
89
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
85
90
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/filter/__init__.py,sha256=DBP_QtxkFmC5q_kuk4dGjb4uOKbB4xKgqTWXGxmNbBQ,532
|
|
86
91
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/recommendation/__init__.py,sha256=6XhFJ-Qf_H8RkEG_kZV6TcUWa0z-RXNlze6MLhV85l4,927
|
|
@@ -152,7 +157,7 @@ acryl_datahub_cloud/metadata/schemas/ChartUsageStatistics.avsc,sha256=FjEEPj_19j
|
|
|
152
157
|
acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc,sha256=XkaSc-3TqXt9NUbnhzHKUufzMbcVo-tqUw0Ns3o5rUc,6485
|
|
153
158
|
acryl_datahub_cloud/metadata/schemas/ConstraintKey.avsc,sha256=8ni5Pz7G1sySlDnZdXqXUwJP-4IjafpNMXYfAhbct-A,380
|
|
154
159
|
acryl_datahub_cloud/metadata/schemas/Container.avsc,sha256=pEpRQgClrJRm59eAiltc4YoP0pg7TG6Bu-ENCh11-mw,813
|
|
155
|
-
acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc,sha256=
|
|
160
|
+
acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc,sha256=DHdQbppWYWsDKMVWa_sENhbub8MFg1x_NG7piQ9j2T8,990
|
|
156
161
|
acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc,sha256=DJVPM6oKZKw2djmfugMP-JW89nIOmkAvQ7QbyqLRvs8,4970
|
|
157
162
|
acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc,sha256=sItWMAGfQdYwmF5xLzMnYGl_rtXvGlxPbEjmRm1E6u4,1290
|
|
158
163
|
acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc,sha256=G83lndR7C6WPfccFg7qFE5Ely5vrdxC8x7zJB3fW3Sw,4740
|
|
@@ -202,7 +207,7 @@ acryl_datahub_cloud/metadata/schemas/DataHubViewInfo.avsc,sha256=Dwkf1EOCnm7hx2t
|
|
|
202
207
|
acryl_datahub_cloud/metadata/schemas/DataHubViewKey.avsc,sha256=p53axIdSVbubo3r23Vpsed7NqRcQBMGveVikEHAVAok,424
|
|
203
208
|
acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc,sha256=o6_B-3YW4eFo63gpwum6f7ZnP7kYRoPcievuuJPkFpI,7346
|
|
204
209
|
acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc,sha256=H1O8eAzZV34tvULdu67iBSWkdn08rt7wS208b8Nisbk,15268
|
|
205
|
-
acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc,sha256=
|
|
210
|
+
acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc,sha256=3TKHEHwO7O7w_IdEIw3SVDr90JZy9aWnGf4fnzD5iDY,1707
|
|
206
211
|
acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc,sha256=WGPFumBNHbR75vsLrivnRCbBc8vSCuxDw2UlylMieh4,2686
|
|
207
212
|
acryl_datahub_cloud/metadata/schemas/DataPlatformInstance.avsc,sha256=SNd3v_YyyLaDflv8Rd5cQR9GrVuky_cDTkYM6FqJiM8,1058
|
|
208
213
|
acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceKey.avsc,sha256=sXUV5EMT6N-x8d6s8ebcJ5JdFIOsJCtiiU5Jtm-ncIk,800
|
|
@@ -218,6 +223,7 @@ acryl_datahub_cloud/metadata/schemas/DataProcessInstanceRunEvent.avsc,sha256=zwT
|
|
|
218
223
|
acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc,sha256=6WQ2QHE2VhdOqs7A2ZEyvokVfDCmOjvFjnkURxaJ94Q,2366
|
|
219
224
|
acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc,sha256=P0FEaaQi5j8-xJ4Jdo0-NDXDwpKDnWc3CE099DcV6no,652
|
|
220
225
|
acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc,sha256=nYEK6JgpTprU0iZaqWLZsBGYJLkh6HCi1qCu-wbYhvM,6925
|
|
226
|
+
acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc,sha256=wDng1GK9znVoK0INHGiSCSa-AH5MrDkVdMzz4wOWmrY,2011
|
|
221
227
|
acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc,sha256=MCjzal71P8uIXZg161LrU8rZTJocZeizK-YxYA0Det0,704
|
|
222
228
|
acryl_datahub_cloud/metadata/schemas/DataTypeKey.avsc,sha256=Gs5uc_azwg10e36ZbwDTFQMevr0IfiFvJoEGHRzEilw,546
|
|
223
229
|
acryl_datahub_cloud/metadata/schemas/DatahubIngestionCheckpoint.avsc,sha256=m2Zyrx3ZWDc5gHuwbmBSRJ3JN4NFkpUhDEKM2Yeuqrw,5681
|
|
@@ -255,12 +261,12 @@ acryl_datahub_cloud/metadata/schemas/Embed.avsc,sha256=NjRynC2b3rqXV4MF39xxlYFFC
|
|
|
255
261
|
acryl_datahub_cloud/metadata/schemas/EntityChangeEvent.avsc,sha256=NMEcBvcUEC_lYoOug60AKzOqWfuxRvelXFwyfbZlp0Y,3722
|
|
256
262
|
acryl_datahub_cloud/metadata/schemas/EntityInferenceMetadata.avsc,sha256=4jSxigjzq-Cn6xLi03lrDC9lnDkUi7xlxIF0ax_xXq4,1345
|
|
257
263
|
acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc,sha256=QVZqy_y1tbxLhvh4k2Mb11otbSC-Xmtv6d30TH-LN3w,753
|
|
258
|
-
acryl_datahub_cloud/metadata/schemas/EntityTypeKey.avsc,sha256=
|
|
264
|
+
acryl_datahub_cloud/metadata/schemas/EntityTypeKey.avsc,sha256=1BmHmPCw7AGKwhJ7YGYLljYb-uaNawBvc8EIkzHETwg,582
|
|
259
265
|
acryl_datahub_cloud/metadata/schemas/EthicalConsiderations.avsc,sha256=FSEs21RK6bc3i_TY-CB9gpmT-oMsyDvYzIfRX0_Xn8w,1957
|
|
260
266
|
acryl_datahub_cloud/metadata/schemas/EvaluationData.avsc,sha256=i2VFWNmw2f2EWpSOe7vXAFEG2JIdtU-51I4e4bPmT2Q,1714
|
|
261
|
-
acryl_datahub_cloud/metadata/schemas/ExecutionRequestInput.avsc,sha256=
|
|
267
|
+
acryl_datahub_cloud/metadata/schemas/ExecutionRequestInput.avsc,sha256=q4gSbr9hIrU4eIxkzlOJX7fPS8kZxV7pJwT8QymuPnA,3797
|
|
262
268
|
acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc,sha256=SvjnlTAGYsSnvVE0rZ9-7UP0f8oMDhK2YCJ9H3VIGE4,584
|
|
263
|
-
acryl_datahub_cloud/metadata/schemas/ExecutionRequestResult.avsc,sha256=
|
|
269
|
+
acryl_datahub_cloud/metadata/schemas/ExecutionRequestResult.avsc,sha256=BKFKf7Yy9jyyzdhvtcCDIzxajmEejRcMLSz8H-98E7c,2671
|
|
264
270
|
acryl_datahub_cloud/metadata/schemas/ExecutionRequestSignal.avsc,sha256=dsIUa6tfVSXqYOgh4cW6_Hzi8RjHuJJoO-mBAuZukpA,2515
|
|
265
271
|
acryl_datahub_cloud/metadata/schemas/Filter.avsc,sha256=HIZV9ClkSozTBEFzjS9YlLVFudrkjkMThY5Yx1EWQow,6176
|
|
266
272
|
acryl_datahub_cloud/metadata/schemas/FormInfo.avsc,sha256=udWOBXAGvHDj-ngZr0kaz_J_jei6AqUQut6vP_uscw4,19002
|
|
@@ -329,7 +335,7 @@ acryl_datahub_cloud/metadata/schemas/PartitionsSummary.avsc,sha256=bl6_ElsVS8Oow
|
|
|
329
335
|
acryl_datahub_cloud/metadata/schemas/PlatformEvent.avsc,sha256=W3BmAMBVGlAXcWvVv4Yy3NUJs-t-apxNdtyYI-uPH1g,1568
|
|
330
336
|
acryl_datahub_cloud/metadata/schemas/PlatformResourceInfo.avsc,sha256=k67bOPnoOwn1-3TldvWZqPrCwedgt2QNGhqmeo0jAys,4146
|
|
331
337
|
acryl_datahub_cloud/metadata/schemas/PlatformResourceKey.avsc,sha256=XLRvsdUD73r2GaKidYYC0-FK-naclWM1FBw0L_28xaI,1687
|
|
332
|
-
acryl_datahub_cloud/metadata/schemas/PostInfo.avsc,sha256=
|
|
338
|
+
acryl_datahub_cloud/metadata/schemas/PostInfo.avsc,sha256=CxL1Z-6jWO-xQ7mei5dwAFe_U7sfkQrkSBP5Aab98lU,7884
|
|
333
339
|
acryl_datahub_cloud/metadata/schemas/PostKey.avsc,sha256=tYhKEz3mEEnGlsrPNZLftwWoRYW--yHxHHBNYsxJyGE,473
|
|
334
340
|
acryl_datahub_cloud/metadata/schemas/Proposals.avsc,sha256=Z_psjYg3IjXUeWW-MArIhcP8ogNaoIfLbVtDwhgdxEY,1254
|
|
335
341
|
acryl_datahub_cloud/metadata/schemas/QuantitativeAnalyses.avsc,sha256=XrGYVoGUh7ZRjAbMORSiqF5Zl4a0IbYDPiQuSJhABZM,960
|
|
@@ -340,6 +346,8 @@ acryl_datahub_cloud/metadata/schemas/QueryUsageFeatures.avsc,sha256=8SpJcoybIh_f
|
|
|
340
346
|
acryl_datahub_cloud/metadata/schemas/QueryUsageStatistics.avsc,sha256=z1gfAnXdBoPEeERi5RESjrdBuS6AcIdqdN5JqWOSuNo,6192
|
|
341
347
|
acryl_datahub_cloud/metadata/schemas/RecommendationModule.avsc,sha256=70BbA_R40dEJDNPJ4BGydwPV2Fw-PoXn4xwVB9sO6aM,12758
|
|
342
348
|
acryl_datahub_cloud/metadata/schemas/RecommendationModuleKey.avsc,sha256=fZl3U8Lr29S47szmtzPlgG7DqyDO8HGKQWym-_0qj7Q,604
|
|
349
|
+
acryl_datahub_cloud/metadata/schemas/RemoteExecutorKey.avsc,sha256=Cb4TWBbBbrS3DiL5i7f44wUFFKfJhYPU8lTRDqqiPCE,495
|
|
350
|
+
acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc,sha256=r5fid2a8SySzSlSGN2UH2Y4MX4xWPYDldiPj9Ct5hmM,2101
|
|
343
351
|
acryl_datahub_cloud/metadata/schemas/RoleKey.avsc,sha256=Uas5jFViSHXhFqq8D4P6-UXqywOth3coztjQ5wA7wL0,449
|
|
344
352
|
acryl_datahub_cloud/metadata/schemas/RoleMembership.avsc,sha256=Al3LXKRowCiHhgTfwr3a-piID3Ld5kN-6-e9edTZ0uU,570
|
|
345
353
|
acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc,sha256=tDw-WF1uBGIcrk38nOnXs3FCF_YjBhScarJbreQvwjE,3037
|
|
@@ -376,13 +384,13 @@ acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc,sha256=iaeFRbL2aVSYFwj
|
|
|
376
384
|
acryl_datahub_cloud/metadata/schemas/UsageAggregation.avsc,sha256=QaF6lyWGUq8IlRel2h4qIXOXCMxBhrwjoaUELsd-I6g,4538
|
|
377
385
|
acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zpVwlPCVG_X68SNcQovaivnUfkAE,6512
|
|
378
386
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
379
|
-
acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=
|
|
387
|
+
acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=2wtE0AbqkLGu6ifRoHClIfPsJxymUKuTonY5_JA7Ufk,7395
|
|
380
388
|
acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
|
|
381
389
|
acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=yrhhVNioD11nFlDO7IfUbxAQjhA9Tr-4wnAYH5I9W74,1172
|
|
382
390
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
383
|
-
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=
|
|
384
|
-
acryl_datahub_cloud-0.3.
|
|
385
|
-
acryl_datahub_cloud-0.3.
|
|
386
|
-
acryl_datahub_cloud-0.3.
|
|
387
|
-
acryl_datahub_cloud-0.3.
|
|
388
|
-
acryl_datahub_cloud-0.3.
|
|
391
|
+
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
|
|
392
|
+
acryl_datahub_cloud-0.3.8rc1.dist-info/METADATA,sha256=9yENxYTuyqVHE7fE4hbeTvGUix1kZjPgcV5RxiDpoBM,4106
|
|
393
|
+
acryl_datahub_cloud-0.3.8rc1.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
394
|
+
acryl_datahub_cloud-0.3.8rc1.dist-info/entry_points.txt,sha256=U25NAI0Z2w_pMQjWWZ6zXvy2lf1m53mjF3ilV_uq6HQ,1004
|
|
395
|
+
acryl_datahub_cloud-0.3.8rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
396
|
+
acryl_datahub_cloud-0.3.8rc1.dist-info/RECORD,,
|
{acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/entry_points.txt
RENAMED
|
@@ -8,6 +8,7 @@ urns = acryl_datahub_cloud.metadata._urns.urn_defs
|
|
|
8
8
|
[datahub.ingestion.source.plugins]
|
|
9
9
|
acryl-cs-issues = acryl_datahub_cloud.acryl_cs_issues.source:AcrylCSIssuesSource
|
|
10
10
|
datahub-lineage-features = acryl_datahub_cloud.lineage_features.source:DataHubLineageFeaturesSource
|
|
11
|
+
datahub-metadata-sharing = acryl_datahub_cloud.datahub_metadata_sharing.metadata_sharing_source:DataHubMetadataSharingSource
|
|
11
12
|
datahub-reporting-extract-graph = acryl_datahub_cloud.datahub_reporting.extract_graph:DataHubReportingExtractGraphSource
|
|
12
13
|
datahub-reporting-extract-sql = acryl_datahub_cloud.datahub_reporting.extract_sql:DataHubReportingExtractSQLSource
|
|
13
14
|
datahub-reporting-forms = acryl_datahub_cloud.datahub_reporting.forms:DataHubReportingFormsSource
|
{acryl_datahub_cloud-0.3.8rc0.dist-info → acryl_datahub_cloud-0.3.8rc1.dist-info}/top_level.txt
RENAMED
|
File without changes
|