acryl-datahub-cloud 0.3.7.6__py3-none-any.whl → 0.3.7.7rc1__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/datahub_usage_reporting/usage_feature_reporter.py +7 -11
- acryl_datahub_cloud/metadata/schema.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/InputFields.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +1 -1
- {acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/METADATA +35 -32
- {acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/RECORD +15 -15
- {acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/top_level.txt +0 -0
|
@@ -449,7 +449,6 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
449
449
|
|
|
450
450
|
def queries_entities_batch(self, results: Iterable) -> Iterable[Dict]:
|
|
451
451
|
with PerfTimer() as timer:
|
|
452
|
-
|
|
453
452
|
for doc in results:
|
|
454
453
|
if "platform" not in doc["_source"] or not doc["_source"]["platform"]:
|
|
455
454
|
logger.warning(
|
|
@@ -473,9 +472,11 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
473
472
|
)
|
|
474
473
|
),
|
|
475
474
|
"platform": doc["_source"]["platform"],
|
|
476
|
-
"removed":
|
|
477
|
-
|
|
478
|
-
|
|
475
|
+
"removed": (
|
|
476
|
+
doc["_source"]["removed"]
|
|
477
|
+
if "removed" in doc["_source"]
|
|
478
|
+
else False
|
|
479
|
+
),
|
|
479
480
|
}
|
|
480
481
|
|
|
481
482
|
time_taken = timer.elapsed_seconds()
|
|
@@ -587,7 +588,6 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
587
588
|
|
|
588
589
|
def process_batch(self, results: Iterable) -> Iterable[Dict]:
|
|
589
590
|
with PerfTimer() as timer:
|
|
590
|
-
|
|
591
591
|
for doc in results:
|
|
592
592
|
match = re.match(platform_regexp, doc["_source"]["urn"])
|
|
593
593
|
if match:
|
|
@@ -754,7 +754,6 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
754
754
|
prefix: Optional[str] = None,
|
|
755
755
|
use_exp_cdf: Optional[bool] = None,
|
|
756
756
|
) -> polars.LazyFrame:
|
|
757
|
-
|
|
758
757
|
logger.debug(f"Generating rank and percentile for {count_field} field")
|
|
759
758
|
lf = lf.with_columns(
|
|
760
759
|
polars.col(count_field)
|
|
@@ -880,7 +879,6 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
880
879
|
def load_write_usage(
|
|
881
880
|
self, soft_deleted_entities_df: polars.LazyFrame
|
|
882
881
|
) -> polars.LazyFrame:
|
|
883
|
-
|
|
884
882
|
if self.config.streaming_mode:
|
|
885
883
|
wdf = self.load_es_data_to_lf(
|
|
886
884
|
index="dataset_operationaspect_v1",
|
|
@@ -1557,10 +1555,8 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
1557
1555
|
usage_with_top_users_with_ranks.join(
|
|
1558
1556
|
write_lf, on="urn", how="full", suffix="_write"
|
|
1559
1557
|
)
|
|
1560
|
-
.with_columns("write_count")
|
|
1561
|
-
.fill_null(polars.lit(0))
|
|
1562
|
-
.with_columns("totalSqlQueries")
|
|
1563
|
-
.fill_null(polars.lit(0))
|
|
1558
|
+
.with_columns(polars.col("write_count").fill_null(polars.lit(0)))
|
|
1559
|
+
.with_columns(polars.col("totalSqlQueries").fill_null(polars.lit(0)))
|
|
1564
1560
|
)
|
|
1565
1561
|
|
|
1566
1562
|
# If we get a dataset from the operation aspect index only then we have to use its urn and platform
|
|
@@ -1,77 +1,80 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.7.
|
|
3
|
+
Version: 0.3.7.7rc1
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Provides-Extra: datahub-lineage-features
|
|
7
7
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
8
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
9
8
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
10
|
-
Requires-Dist:
|
|
9
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
11
10
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
11
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
13
14
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
14
15
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
15
|
-
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
17
16
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
18
18
|
Provides-Extra: datahub-reporting-extract-graph
|
|
19
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
19
20
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
20
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
21
21
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
22
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
24
23
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-sql
|
|
26
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
26
27
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
27
28
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
28
|
-
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
29
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
30
29
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Provides-Extra: datahub-usage-feature-reporting
|
|
32
|
+
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
33
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
34
|
+
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
32
35
|
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
36
|
+
Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
|
|
33
37
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
34
38
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
38
|
-
Requires-Dist: scipy; extra == "datahub-usage-feature-reporting"
|
|
39
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
40
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
39
41
|
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
40
|
-
Requires-Dist: polars; extra == "datahub-usage-feature-reporting"
|
|
41
42
|
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
42
43
|
Provides-Extra: acryl-cs-issues
|
|
43
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
44
44
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
45
|
-
Requires-Dist:
|
|
45
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
46
46
|
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
47
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
47
48
|
Provides-Extra: all
|
|
49
|
+
Requires-Dist: boto3; extra == "all"
|
|
50
|
+
Requires-Dist: zenpy; extra == "all"
|
|
51
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
52
|
+
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
48
53
|
Requires-Dist: pyarrow; extra == "all"
|
|
54
|
+
Requires-Dist: duckdb; extra == "all"
|
|
49
55
|
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
50
56
|
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
51
|
-
Requires-Dist: duckdb; extra == "all"
|
|
52
|
-
Requires-Dist: jinja2; extra == "all"
|
|
53
|
-
Requires-Dist: boto3; extra == "all"
|
|
54
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
55
57
|
Requires-Dist: openai; extra == "all"
|
|
56
|
-
Requires-Dist: scipy; extra == "all"
|
|
58
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
59
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
57
60
|
Requires-Dist: pandas; extra == "all"
|
|
61
|
+
Requires-Dist: jinja2; extra == "all"
|
|
58
62
|
Requires-Dist: slack-sdk; extra == "all"
|
|
59
|
-
Requires-Dist: zenpy; extra == "all"
|
|
60
|
-
Requires-Dist: polars; extra == "all"
|
|
61
63
|
Requires-Dist: pydantic<2; extra == "all"
|
|
62
64
|
Provides-Extra: dev
|
|
65
|
+
Requires-Dist: boto3; extra == "dev"
|
|
66
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
67
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
68
|
+
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
63
69
|
Requires-Dist: pyarrow; extra == "dev"
|
|
70
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
64
71
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
65
72
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
66
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
67
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
68
|
-
Requires-Dist: boto3; extra == "dev"
|
|
69
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
70
73
|
Requires-Dist: openai; extra == "dev"
|
|
71
|
-
Requires-Dist: scipy; extra == "dev"
|
|
74
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
75
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
72
76
|
Requires-Dist: pandas; extra == "dev"
|
|
77
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
73
78
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
74
|
-
Requires-Dist:
|
|
75
|
-
Requires-Dist: polars; extra == "dev"
|
|
79
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
76
80
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
77
|
-
Requires-Dist: acryl-datahub[dev]; 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=vWg31T-rY6FO-Vn61CNdIFAg75VJCjYmufVPPmjgtCs,557
|
|
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
|
|
@@ -17,14 +17,14 @@ acryl_datahub_cloud/datahub_reporting/forms.py,sha256=rOw3aZZ8XRb4JPrfMte8-Xq34s
|
|
|
17
17
|
acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEtnx74fLuujV59kDQwi1HSxFNI,2102
|
|
18
18
|
acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
|
|
20
|
-
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=
|
|
20
|
+
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=3glHpWFmkDGPUnCUvlWUPsaPiO4SExnJFOut6jYTiW0,65332
|
|
21
21
|
acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
|
|
23
23
|
acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
|
|
24
24
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
acryl_datahub_cloud/lineage_features/source.py,sha256=DS9VgFXtGDRP98dHBE4KVoB2MDFE-4FSS5RlBuYZqRY,5519
|
|
26
26
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
27
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
27
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=xpxdbHu5ZYS36v1xZo0TPUp6YWrNVsHORfdFoPAu9aI,1070142
|
|
28
28
|
acryl_datahub_cloud/metadata/schema_classes.py,sha256=ij01j8rZNyRZEECPw7OZPHoercAdW726Fly3iQxdsaE,1350416
|
|
29
29
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
30
30
|
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=42Qj-MV_bgobj55sId7kZbMwd2bto8HEZ6mrOxEZmLY,119444
|
|
@@ -126,12 +126,12 @@ acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc,sha256=EhwcEm-B4pSpYK
|
|
|
126
126
|
acryl_datahub_cloud/metadata/schemas/AnomalyInfo.avsc,sha256=s2AHYDP3uDGzT4dIt9dr5g8tBtb03sMhh_BrywyS4BE,11589
|
|
127
127
|
acryl_datahub_cloud/metadata/schemas/AnomalyKey.avsc,sha256=b83B4Hmr44W3SOXWWFGZttEhYUwLVyqqYBFDzmx2k1Q,583
|
|
128
128
|
acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
|
|
129
|
-
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=
|
|
129
|
+
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=mVWedJGrSroF-CD2kjGoh8pZ7SoHK69-1EFYuzYQplQ,206224
|
|
130
130
|
acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
|
|
131
131
|
acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=JZduQByRmIdzxrLy5_JxHVOoIiULN54mAVUA49oyQdA,2840
|
|
132
|
-
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=
|
|
132
|
+
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=HCxlza4yND8EV-OXq5gl3HW0Wm_ieLBt0nDB0UUESkM,130692
|
|
133
133
|
acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=j3fJgSlz7YqprtMwZTQaujePRmmMeQEEJATa__eO_SI,790
|
|
134
|
-
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=
|
|
134
|
+
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=KXg4_seydINUdEFyCSjw6xbYrNZkZYwlbPxmnIqePyg,207205
|
|
135
135
|
acryl_datahub_cloud/metadata/schemas/AssertionSummary.avsc,sha256=wuSb0f7OFPV3IIQahnjycm21ZVqWnDatvV3Vt6fvKdo,1207
|
|
136
136
|
acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=7gzgianKh5MnTG9J4O9dfQs0lrRUj4r50dvMHHCigZY,5258
|
|
137
137
|
acryl_datahub_cloud/metadata/schemas/BatchTestRunEvent.avsc,sha256=EPzwsRVMzBYCVRxug_LynjxRGkzv7QwFjw_zkJFBZAg,10083
|
|
@@ -281,7 +281,7 @@ acryl_datahub_cloud/metadata/schemas/IncidentSource.avsc,sha256=qWX6JsryXnchvFCi
|
|
|
281
281
|
acryl_datahub_cloud/metadata/schemas/IncidentsSummary.avsc,sha256=NTYp-6Oe92ALApbM3759TJ5pLXRArsSriIPq-f7w9vI,4514
|
|
282
282
|
acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc,sha256=mjADssbEW8KOjmjD_hHv6gV1i1MyXQygXOR40Kt5CK8,16498
|
|
283
283
|
acryl_datahub_cloud/metadata/schemas/InferredNeighbors.avsc,sha256=AfJZpLYC3AL_FEgJ3BYtSZR30PNg67UqIz6XgnjHjbI,4358
|
|
284
|
-
acryl_datahub_cloud/metadata/schemas/InputFields.avsc,sha256=
|
|
284
|
+
acryl_datahub_cloud/metadata/schemas/InputFields.avsc,sha256=NFyIaRZFGH0p_R9g86lAJLbjrLsUt_WzgS-MAZw5-iw,33754
|
|
285
285
|
acryl_datahub_cloud/metadata/schemas/InstitutionalMemory.avsc,sha256=vNeAoFSIH1jEDa2rEyTStUjWDvf53W9AvL7F8oh7isY,3785
|
|
286
286
|
acryl_datahub_cloud/metadata/schemas/IntendedUse.avsc,sha256=IKZSWdvc0uAyyT-FtdQOGbMC-P7RS9cO0vOVKWT6fbw,1361
|
|
287
287
|
acryl_datahub_cloud/metadata/schemas/InviteToken.avsc,sha256=8k_9MxHu9GVf7gvS0SlnQu7tJfpbXsRFdz6lQrFKPNc,737
|
|
@@ -304,11 +304,11 @@ acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc,sha256=oY1pLXiKzk1ugE7dxO0S
|
|
|
304
304
|
acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc,sha256=wGCQ-yMLnss-rRl-NigFPMLEesvSeK0t1iOblyG_m0U,8411
|
|
305
305
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc,sha256=8D4Cpyg2YhNpAn65d9C0b2tD4GfmXX3pI2J9EmAslok,1167
|
|
306
306
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc,sha256=PHVzHrp7TS6ZILaf9wB4dhkx17W9of859a5sd2Wxu9M,4575
|
|
307
|
-
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=
|
|
307
|
+
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=YVxllocfr7wjN9JhcP5puhLAXgXAiL1JuGxxWvx0FAI,400489
|
|
308
308
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=mpdodpx25E6M1Gq_7slEcPAm-1Es5xPsoqV60HgO7zg,12167
|
|
309
309
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=EMfQrYsuHf1p6UvBjoLtfdTHGe-vGNJaCFEHz8hdKU0,9698
|
|
310
310
|
acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
|
|
311
|
-
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=
|
|
311
|
+
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=H6yCJBxaSyJKvKTnn-WlMednDUm2pZFm2RiNzC4HupY,275078
|
|
312
312
|
acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=N2iGkhpTgv61j-U8tKOGm9GRPJVuK5bqLMhXSaY8mIQ,869
|
|
313
313
|
acryl_datahub_cloud/metadata/schemas/MonitorTimeseriesState.avsc,sha256=1jXL_tvgZq4-4Y__7YUpdfzSbI4TiQgThSd1f23UwXc,4550
|
|
314
314
|
acryl_datahub_cloud/metadata/schemas/NativeGroupMembership.avsc,sha256=9mh9tzyj3ErmTIhX7ERRUm78j1QtGwXUl9UuIXPndBg,588
|
|
@@ -345,7 +345,7 @@ acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc,sha256=zETgZc8hurAZxhD1
|
|
|
345
345
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldProfile.avsc,sha256=OxYPLRDCv318n1k7d2aaFYlO3jOD0YtmGzenB1LfBuI,17532
|
|
346
346
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldsInferredMetadata.avsc,sha256=LOGg4tLnUzOJ0NqKmYCZqf5-TvoeFrmZtaz8eBrLhjc,9269
|
|
347
347
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldsInferredNeighbors.avsc,sha256=WVWdteaKsDuSypzv5_WXedMmCj9r29HIqFQQULWnWRY,5962
|
|
348
|
-
acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc,sha256=
|
|
348
|
+
acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc,sha256=RxZOLXf0rPggDl5yZZjQRjvN6G-aq4qojIQopRQzx7Q,40932
|
|
349
349
|
acryl_datahub_cloud/metadata/schemas/SchemaProposals.avsc,sha256=wkbuPGCsvHy7DFuN98dyhBz-AzTuDP9khsRJ7XNTOjQ,2274
|
|
350
350
|
acryl_datahub_cloud/metadata/schemas/Share.avsc,sha256=RDzw5GdAIQnlA9sb6jiPJLZH5cx1LN2JpN2bTwk-aBQ,8300
|
|
351
351
|
acryl_datahub_cloud/metadata/schemas/Siblings.avsc,sha256=NTktntlHuA1InH3TgrspWlFBntYlqmp3erUd-JFMsps,842
|
|
@@ -373,8 +373,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
|
|
|
373
373
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
374
374
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
375
375
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
376
|
-
acryl_datahub_cloud-0.3.7.
|
|
377
|
-
acryl_datahub_cloud-0.3.7.
|
|
378
|
-
acryl_datahub_cloud-0.3.7.
|
|
379
|
-
acryl_datahub_cloud-0.3.7.
|
|
380
|
-
acryl_datahub_cloud-0.3.7.
|
|
376
|
+
acryl_datahub_cloud-0.3.7.7rc1.dist-info/METADATA,sha256=kC9GqtHdMwU75QlFXuyQFR8rUnd9B6ZFAP_dqUzuxJk,4067
|
|
377
|
+
acryl_datahub_cloud-0.3.7.7rc1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
378
|
+
acryl_datahub_cloud-0.3.7.7rc1.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
|
|
379
|
+
acryl_datahub_cloud-0.3.7.7rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
380
|
+
acryl_datahub_cloud-0.3.7.7rc1.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.7.6.dist-info → acryl_datahub_cloud-0.3.7.7rc1.dist-info}/top_level.txt
RENAMED
|
File without changes
|