acryl-datahub-cloud 0.3.8rc17__py3-none-any.whl → 0.3.8.1__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/datahub_metadata_sharing/metadata_sharing_source.py +7 -10
- acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +1 -1
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1509 -1464
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +21048 -21005
- acryl_datahub_cloud/metadata/schema_classes.py +569 -502
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc +19 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolKey.avsc +24 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/METADATA +43 -43
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/RECORD +18 -15
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubRemoteExecutorPoolInfo"
|
|
5
|
+
},
|
|
6
|
+
"name": "RemoteExecutorPoolInfo",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.executorpool",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"fieldType": "COUNT",
|
|
12
|
+
"queryByDefault": false
|
|
13
|
+
},
|
|
14
|
+
"type": "long",
|
|
15
|
+
"name": "createdAt",
|
|
16
|
+
"doc": "UTC-based timestamp of when this pool was created"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubRemoteExecutorPoolKey",
|
|
5
|
+
"keyForEntity": "dataHubRemoteExecutorPool",
|
|
6
|
+
"entityCategory": "internal",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"dataHubRemoteExecutorPoolInfo"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"name": "RemoteExecutorPoolKey",
|
|
12
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
13
|
+
"fields": [
|
|
14
|
+
{
|
|
15
|
+
"Searchable": {
|
|
16
|
+
"fieldType": "KEYWORD"
|
|
17
|
+
},
|
|
18
|
+
"type": "string",
|
|
19
|
+
"name": "name",
|
|
20
|
+
"doc": "The unique identifier for the remote executor pool"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"doc": "Key for an DataHub Remote Executor Pool"
|
|
24
|
+
}
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"fieldType": "KEYWORD"
|
|
12
12
|
},
|
|
13
13
|
"type": "string",
|
|
14
|
-
"name": "
|
|
15
|
-
"doc": "
|
|
14
|
+
"name": "poolName",
|
|
15
|
+
"doc": "References the 'name' defined in RemoteExecutorPoolKey"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"type": "string",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"fieldType": "COUNT",
|
|
73
73
|
"queryByDefault": false
|
|
74
74
|
},
|
|
75
|
-
"type": "
|
|
75
|
+
"type": "long",
|
|
76
76
|
"name": "reportedAt",
|
|
77
77
|
"doc": "UTC-based timestamp of the last reported status"
|
|
78
78
|
}
|
|
@@ -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,90 +1,90 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.8.1
|
|
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: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
8
7
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
9
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
10
8
|
Requires-Dist: pyarrow; 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: pandas; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
14
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
15
13
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
14
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
16
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
18
18
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
19
19
|
Provides-Extra: datahub-reporting-extract-graph
|
|
20
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
21
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
22
20
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
23
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
21
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
22
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
23
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
26
26
|
Provides-Extra: datahub-reporting-extract-sql
|
|
27
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
28
27
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
29
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
30
28
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
29
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
32
32
|
Provides-Extra: datahub-usage-reporting
|
|
33
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
34
|
-
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
35
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
36
33
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
34
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
37
35
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
38
|
-
Requires-Dist:
|
|
36
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
39
37
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
38
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
41
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
42
|
+
Requires-Dist: polars==1.19.0; extra == "datahub-usage-reporting"
|
|
40
43
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
41
44
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
42
|
-
Requires-Dist: polars==1.19.0; extra == "datahub-usage-reporting"
|
|
43
|
-
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
45
45
|
Provides-Extra: datahub-metadata-sharing
|
|
46
46
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
47
47
|
Provides-Extra: acryl-cs-issues
|
|
48
|
-
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
49
48
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
50
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
51
49
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
50
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
51
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
52
52
|
Provides-Extra: all
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
53
|
+
Requires-Dist: pydantic<2; extra == "all"
|
|
54
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
55
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
55
56
|
Requires-Dist: pandas; extra == "all"
|
|
57
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
58
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
59
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
60
|
+
Requires-Dist: jinja2; extra == "all"
|
|
56
61
|
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
57
62
|
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
58
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
59
|
-
Requires-Dist: openai; extra == "all"
|
|
60
|
-
Requires-Dist: polars==1.19.0; extra == "all"
|
|
61
|
-
Requires-Dist: duckdb; extra == "all"
|
|
62
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
63
63
|
Requires-Dist: zenpy; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist: pydantic<2; extra == "all"
|
|
66
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
64
|
+
Requires-Dist: openai; extra == "all"
|
|
67
65
|
Requires-Dist: tenacity; extra == "all"
|
|
68
|
-
Requires-Dist:
|
|
69
|
-
Requires-Dist:
|
|
66
|
+
Requires-Dist: duckdb; extra == "all"
|
|
67
|
+
Requires-Dist: boto3; extra == "all"
|
|
68
|
+
Requires-Dist: polars==1.19.0; extra == "all"
|
|
69
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
70
70
|
Provides-Extra: dev
|
|
71
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
72
|
-
Requires-Dist: boto3; extra == "dev"
|
|
73
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
74
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
75
71
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
72
|
+
Requires-Dist: tenacity; extra == "dev"
|
|
73
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
76
74
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
77
|
-
Requires-Dist:
|
|
75
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
76
|
+
Requires-Dist: boto3; extra == "dev"
|
|
78
77
|
Requires-Dist: pandas; extra == "dev"
|
|
78
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
79
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
80
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
81
|
+
Requires-Dist: polars==1.19.0; extra == "dev"
|
|
82
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
83
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
84
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
79
85
|
Requires-Dist: jinja2; extra == "dev"
|
|
80
86
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
81
87
|
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
82
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
83
88
|
Requires-Dist: openai; extra == "dev"
|
|
84
|
-
Requires-Dist: polars==1.19.0; extra == "dev"
|
|
85
|
-
Requires-Dist: tenacity; extra == "dev"
|
|
86
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
87
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
88
|
-
Requires-Dist: pyarrow; extra == "dev"
|
|
89
89
|
Dynamic: provides-extra
|
|
90
90
|
Dynamic: requires-dist
|
|
@@ -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=Ng-0Yz6BLyq2A5TzgnNf29eFlPfjWaGDWXXXxp5ksmY,554
|
|
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
|
|
@@ -12,7 +12,7 @@ acryl_datahub_cloud/api/__init__.py,sha256=f3iF76twAax3k19sl7ffOsebQA7UMjd9na_oa
|
|
|
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
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=
|
|
15
|
+
acryl_datahub_cloud/datahub_metadata_sharing/metadata_sharing_source.py,sha256=9BqPkzCfveck-27y0kG3QMRfJhFhJtoy3p84fS5jNNQ,9264
|
|
16
16
|
acryl_datahub_cloud/datahub_metadata_sharing/query.py,sha256=7Wc7Vtqdh2Ule5HMe0L_C3pQ2Bejkyo1IRusmFZG_0Y,219
|
|
17
17
|
acryl_datahub_cloud/datahub_metadata_sharing/scroll_shared_entities.gql,sha256=Nups4Pwc7_DFm0-Z5Gh22HWq44GpoADNuYCK5YM8BrI,3908
|
|
18
18
|
acryl_datahub_cloud/datahub_metadata_sharing/share_entity.gql,sha256=tJ0VkAekRQCxZ3TkaC0nVqMHQoILqf2J6J-HfbSRL0U,286
|
|
@@ -21,22 +21,22 @@ acryl_datahub_cloud/datahub_reporting/datahub_dataset.py,sha256=OCCfMIK7dU1Z9Dah
|
|
|
21
21
|
acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py,sha256=usX0P0nYqqdHcjUwjvI_-g7FdHLAFF1EFKsTUtu1xMQ,19726
|
|
22
22
|
acryl_datahub_cloud/datahub_reporting/extract_graph.py,sha256=4dth7SWKw39kO0oq7C6minRGVmeetdEKsMQCdTx1Yog,7759
|
|
23
23
|
acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=3Q5cmZahoFn8Y0P6LIHMFaJqpqAaFrT4dEi4HFRrFBw,9400
|
|
24
|
-
acryl_datahub_cloud/datahub_reporting/forms.py,sha256=
|
|
24
|
+
acryl_datahub_cloud/datahub_reporting/forms.py,sha256=WUmJ3DLcKn4VcSplZFxmzdPrxQY2mYKqKc7hk8XZ9_Q,5939
|
|
25
25
|
acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEtnx74fLuujV59kDQwi1HSxFNI,2102
|
|
26
26
|
acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=ft2PRg_YHTYWnZOVznOEx3PSSqAfiaH0YJtkPcS-NJM,5837
|
|
28
28
|
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
|
|
29
|
-
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=
|
|
29
|
+
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=t6dW-sfvjpqAO4Y1cwRl8xkKSZ5B1CmlD-EEhIIZq3g,64277
|
|
30
30
|
acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
31
|
acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
|
|
32
32
|
acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
|
|
33
33
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
35
35
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
36
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256
|
|
37
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
36
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=-h-yAChKHJE9T-_f2w6rhOr9FkjxTndU0bgeWPeylXY,1002954
|
|
37
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=BxqgJZsOFGkg9VYrtjhpBbGyq0EoxRzLZNTMRXTYJ4s,1388125
|
|
38
38
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
39
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
39
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=hBs2VAy4y8OVR1mQ5knuWM5CWeH7_MTt6Z6Ybb9Veho,125081
|
|
40
40
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
41
41
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
42
42
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -79,6 +79,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/events/__init__.py,sha256
|
|
|
79
79
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/events/metadata/__init__.py,sha256=a1FI_2VZ9Ejc9AIVztO-B5kLPR6VwlOgdFlv4PTCTYs,282
|
|
80
80
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py,sha256=O5XAXnGzDnWv8nbqRHxLPPXUbrIu_pn76WUK_hhkHmg,775
|
|
81
81
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executor/__init__.py,sha256=0biDXQQFL8m6iB4TJQ0na9SNeZqDEgkxN6ajJlhr63k,311
|
|
82
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/executorpool/__init__.py,sha256=PjKqWXpofpeDRbqHJFd0SZl1Nkh4iNhZlkhUVs_9r1A,317
|
|
82
83
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py,sha256=DcISIMoxrWoZZIaPNszxnz-d4Cx6Rtxktfa8qYT74_g,1373
|
|
83
84
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/glossary/__init__.py,sha256=fa1QNv08O3TqXqZ14bkJerGho_t-8DPHFdcWKiXkkUA,501
|
|
84
85
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py,sha256=wfPpGMWEVl1Ual_nFs7UNiYVB_Tq_vRfNmFfO-XkENU,1582
|
|
@@ -87,7 +88,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/inferred/__init__.py,sha2
|
|
|
87
88
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ingestion/__init__.py,sha256=1bfG2naq4iS_pwU4J-BVer_gfL0hDbJbnH0gh1MPNgA,871
|
|
88
89
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/link/__init__.py,sha256=4DfT4T_I6dh-iGk9LXYjrp98L9D66xZzM7Boqc7jmNg,388
|
|
89
90
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
90
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=
|
|
91
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=wf1o0Hc3UKNs5QXGRA-eY8OpM4yPkZFLCXl_W4fhCvA,5757
|
|
91
92
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
92
93
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/filter/__init__.py,sha256=DBP_QtxkFmC5q_kuk4dGjb4uOKbB4xKgqTWXGxmNbBQ,532
|
|
93
94
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/recommendation/__init__.py,sha256=6XhFJ-Qf_H8RkEG_kZV6TcUWa0z-RXNlze6MLhV85l4,927
|
|
@@ -350,7 +351,9 @@ acryl_datahub_cloud/metadata/schemas/QueryUsageStatistics.avsc,sha256=z1gfAnXdBo
|
|
|
350
351
|
acryl_datahub_cloud/metadata/schemas/RecommendationModule.avsc,sha256=70BbA_R40dEJDNPJ4BGydwPV2Fw-PoXn4xwVB9sO6aM,12758
|
|
351
352
|
acryl_datahub_cloud/metadata/schemas/RecommendationModuleKey.avsc,sha256=fZl3U8Lr29S47szmtzPlgG7DqyDO8HGKQWym-_0qj7Q,604
|
|
352
353
|
acryl_datahub_cloud/metadata/schemas/RemoteExecutorKey.avsc,sha256=Cb4TWBbBbrS3DiL5i7f44wUFFKfJhYPU8lTRDqqiPCE,495
|
|
353
|
-
acryl_datahub_cloud/metadata/schemas/
|
|
354
|
+
acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc,sha256=8i_e-HdCjCvL1SOpAc1nlveBOn0ByyTW4ZZfTR1ZCtY,416
|
|
355
|
+
acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolKey.avsc,sha256=dAMZURoI7_rEkr4vddFoYhyqz2tLDox8ZWXIH2HuuSs,584
|
|
356
|
+
acryl_datahub_cloud/metadata/schemas/RemoteExecutorStatus.avsc,sha256=69vSn5qn9aJs2ojSzkdbVUoZXuXTTcmypSEamc11W4Q,2127
|
|
354
357
|
acryl_datahub_cloud/metadata/schemas/RoleKey.avsc,sha256=Uas5jFViSHXhFqq8D4P6-UXqywOth3coztjQ5wA7wL0,449
|
|
355
358
|
acryl_datahub_cloud/metadata/schemas/RoleMembership.avsc,sha256=Al3LXKRowCiHhgTfwr3a-piID3Ld5kN-6-e9edTZ0uU,570
|
|
356
359
|
acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc,sha256=tDw-WF1uBGIcrk38nOnXs3FCF_YjBhScarJbreQvwjE,3037
|
|
@@ -391,9 +394,9 @@ acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc,sha256=2wtE0AbqkLGu6
|
|
|
391
394
|
acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh4HnUHNmBEU74uYdJR5g20NhRJU,659
|
|
392
395
|
acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc,sha256=yrhhVNioD11nFlDO7IfUbxAQjhA9Tr-4wnAYH5I9W74,1172
|
|
393
396
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
394
|
-
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=
|
|
395
|
-
acryl_datahub_cloud-0.3.
|
|
396
|
-
acryl_datahub_cloud-0.3.
|
|
397
|
-
acryl_datahub_cloud-0.3.
|
|
398
|
-
acryl_datahub_cloud-0.3.
|
|
399
|
-
acryl_datahub_cloud-0.3.
|
|
397
|
+
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAzZ8EO44Amk4DWSEvplEY,581
|
|
398
|
+
acryl_datahub_cloud-0.3.8.1.dist-info/METADATA,sha256=-4Mc92uWNGbYWIdnQTpKZ2szp22yR0tGNeckxJiCze4,4429
|
|
399
|
+
acryl_datahub_cloud-0.3.8.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
400
|
+
acryl_datahub_cloud-0.3.8.1.dist-info/entry_points.txt,sha256=U25NAI0Z2w_pMQjWWZ6zXvy2lf1m53mjF3ilV_uq6HQ,1004
|
|
401
|
+
acryl_datahub_cloud-0.3.8.1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
402
|
+
acryl_datahub_cloud-0.3.8.1.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|