acryl-datahub-cloud 0.3.13.1__py3-none-any.whl → 0.3.13.2rc0__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/metadata/_urns/urn_defs.py +2118 -2118
- acryl_datahub_cloud/metadata/schema.avsc +26848 -26856
- acryl_datahub_cloud/metadata/schema_classes.py +662 -662
- acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +0 -8
- acryl_datahub_cloud/sdk/assertions_client.py +7 -21
- acryl_datahub_cloud/sdk/resolver_client.py +1 -4
- acryl_datahub_cloud/sdk/subscription_client.py +3 -8
- {acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/METADATA +41 -41
- {acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/RECORD +13 -13
- {acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/top_level.txt +0 -0
|
@@ -130,10 +130,6 @@
|
|
|
130
130
|
"doc": "The optional messageId, if provided serves as a custom user-defined unique identifier for an aspect value."
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
|
-
"Searchable": {
|
|
134
|
-
"fieldType": "COUNT",
|
|
135
|
-
"hasValuesFieldName": "hasUniqueUserCount"
|
|
136
|
-
},
|
|
137
133
|
"TimeseriesField": {},
|
|
138
134
|
"type": [
|
|
139
135
|
"null",
|
|
@@ -144,10 +140,6 @@
|
|
|
144
140
|
"doc": "Unique user count"
|
|
145
141
|
},
|
|
146
142
|
{
|
|
147
|
-
"Searchable": {
|
|
148
|
-
"fieldType": "COUNT",
|
|
149
|
-
"hasValuesFieldName": "hasTotalSqlQueriesCount"
|
|
150
|
-
},
|
|
151
143
|
"TimeseriesField": {},
|
|
152
144
|
"type": [
|
|
153
145
|
"null",
|
|
@@ -312,7 +312,6 @@ class AssertionsClient:
|
|
|
312
312
|
)
|
|
313
313
|
return self._create_smart_freshness_assertion(
|
|
314
314
|
dataset_urn=dataset_urn,
|
|
315
|
-
urn=urn,
|
|
316
315
|
display_name=display_name,
|
|
317
316
|
detection_mechanism=detection_mechanism,
|
|
318
317
|
sensitivity=sensitivity,
|
|
@@ -397,7 +396,6 @@ class AssertionsClient:
|
|
|
397
396
|
)
|
|
398
397
|
return self._create_smart_volume_assertion(
|
|
399
398
|
dataset_urn=dataset_urn,
|
|
400
|
-
urn=urn,
|
|
401
399
|
display_name=display_name,
|
|
402
400
|
detection_mechanism=detection_mechanism,
|
|
403
401
|
sensitivity=sensitivity,
|
|
@@ -485,7 +483,6 @@ class AssertionsClient:
|
|
|
485
483
|
)
|
|
486
484
|
return self._create_freshness_assertion(
|
|
487
485
|
dataset_urn=dataset_urn,
|
|
488
|
-
urn=urn,
|
|
489
486
|
display_name=display_name,
|
|
490
487
|
detection_mechanism=detection_mechanism,
|
|
491
488
|
incident_behavior=incident_behavior,
|
|
@@ -574,7 +571,6 @@ class AssertionsClient:
|
|
|
574
571
|
# Extract criteria from definition to call the new signature
|
|
575
572
|
parsed_criteria = VolumeAssertionCriteria.parse(criteria)
|
|
576
573
|
return self._create_volume_assertion(
|
|
577
|
-
urn=urn,
|
|
578
574
|
dataset_urn=dataset_urn,
|
|
579
575
|
display_name=display_name,
|
|
580
576
|
detection_mechanism=detection_mechanism,
|
|
@@ -677,7 +673,6 @@ class AssertionsClient:
|
|
|
677
673
|
)
|
|
678
674
|
return self._create_sql_assertion(
|
|
679
675
|
dataset_urn=dataset_urn,
|
|
680
|
-
urn=urn,
|
|
681
676
|
display_name=display_name,
|
|
682
677
|
criteria_condition=criteria.condition,
|
|
683
678
|
criteria_parameters=criteria.parameters,
|
|
@@ -1367,7 +1362,6 @@ class AssertionsClient:
|
|
|
1367
1362
|
self,
|
|
1368
1363
|
*,
|
|
1369
1364
|
dataset_urn: Union[str, DatasetUrn],
|
|
1370
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
1371
1365
|
display_name: Optional[str] = None,
|
|
1372
1366
|
enabled: bool = True,
|
|
1373
1367
|
detection_mechanism: DetectionMechanismInputTypes = None,
|
|
@@ -1445,7 +1439,7 @@ class AssertionsClient:
|
|
|
1445
1439
|
)
|
|
1446
1440
|
created_by = DEFAULT_CREATED_BY
|
|
1447
1441
|
assertion_input = _SmartFreshnessAssertionInput(
|
|
1448
|
-
urn=
|
|
1442
|
+
urn=None,
|
|
1449
1443
|
entity_client=self.client.entities,
|
|
1450
1444
|
dataset_urn=dataset_urn,
|
|
1451
1445
|
display_name=display_name,
|
|
@@ -1480,7 +1474,6 @@ class AssertionsClient:
|
|
|
1480
1474
|
*,
|
|
1481
1475
|
dataset_urn: Union[str, DatasetUrn],
|
|
1482
1476
|
display_name: Optional[str] = None,
|
|
1483
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
1484
1477
|
enabled: bool = True,
|
|
1485
1478
|
detection_mechanism: DetectionMechanismInputTypes = None,
|
|
1486
1479
|
sensitivity: Optional[Union[str, InferenceSensitivity]] = None,
|
|
@@ -1567,7 +1560,7 @@ class AssertionsClient:
|
|
|
1567
1560
|
)
|
|
1568
1561
|
created_by = DEFAULT_CREATED_BY
|
|
1569
1562
|
assertion_input = _SmartVolumeAssertionInput(
|
|
1570
|
-
urn=
|
|
1563
|
+
urn=None,
|
|
1571
1564
|
entity_client=self.client.entities,
|
|
1572
1565
|
dataset_urn=dataset_urn,
|
|
1573
1566
|
display_name=display_name,
|
|
@@ -1602,7 +1595,6 @@ class AssertionsClient:
|
|
|
1602
1595
|
self,
|
|
1603
1596
|
*,
|
|
1604
1597
|
dataset_urn: Union[str, DatasetUrn],
|
|
1605
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
1606
1598
|
display_name: Optional[str] = None,
|
|
1607
1599
|
enabled: bool = True,
|
|
1608
1600
|
freshness_schedule_check_type: Optional[
|
|
@@ -1675,7 +1667,7 @@ class AssertionsClient:
|
|
|
1675
1667
|
)
|
|
1676
1668
|
created_by = DEFAULT_CREATED_BY
|
|
1677
1669
|
assertion_input = _FreshnessAssertionInput(
|
|
1678
|
-
urn=
|
|
1670
|
+
urn=None,
|
|
1679
1671
|
entity_client=self.client.entities,
|
|
1680
1672
|
dataset_urn=dataset_urn,
|
|
1681
1673
|
display_name=display_name,
|
|
@@ -1709,7 +1701,6 @@ class AssertionsClient:
|
|
|
1709
1701
|
self,
|
|
1710
1702
|
*,
|
|
1711
1703
|
dataset_urn: Union[str, DatasetUrn],
|
|
1712
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
1713
1704
|
display_name: Optional[str] = None,
|
|
1714
1705
|
enabled: bool = True,
|
|
1715
1706
|
detection_mechanism: DetectionMechanismInputTypes = None,
|
|
@@ -1793,7 +1784,7 @@ class AssertionsClient:
|
|
|
1793
1784
|
}
|
|
1794
1785
|
|
|
1795
1786
|
assertion_input = _VolumeAssertionInput(
|
|
1796
|
-
urn=
|
|
1787
|
+
urn=None,
|
|
1797
1788
|
entity_client=self.client.entities,
|
|
1798
1789
|
dataset_urn=dataset_urn,
|
|
1799
1790
|
display_name=display_name,
|
|
@@ -1826,7 +1817,6 @@ class AssertionsClient:
|
|
|
1826
1817
|
self,
|
|
1827
1818
|
*,
|
|
1828
1819
|
dataset_urn: Union[str, DatasetUrn],
|
|
1829
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
1830
1820
|
display_name: Optional[str] = None,
|
|
1831
1821
|
enabled: bool = True,
|
|
1832
1822
|
criteria_condition: Union[SqlAssertionCondition, str],
|
|
@@ -1894,7 +1884,7 @@ class AssertionsClient:
|
|
|
1894
1884
|
parameters=criteria_parameters,
|
|
1895
1885
|
)
|
|
1896
1886
|
assertion_input = _SqlAssertionInput(
|
|
1897
|
-
urn=
|
|
1887
|
+
urn=None,
|
|
1898
1888
|
entity_client=self.client.entities,
|
|
1899
1889
|
dataset_urn=dataset_urn,
|
|
1900
1890
|
display_name=display_name,
|
|
@@ -2565,7 +2555,6 @@ class AssertionsClient:
|
|
|
2565
2555
|
self,
|
|
2566
2556
|
*,
|
|
2567
2557
|
dataset_urn: Union[str, DatasetUrn],
|
|
2568
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
2569
2558
|
column_name: str,
|
|
2570
2559
|
metric_type: MetricInputType,
|
|
2571
2560
|
display_name: Optional[str] = None,
|
|
@@ -2657,7 +2646,7 @@ class AssertionsClient:
|
|
|
2657
2646
|
)
|
|
2658
2647
|
created_by = DEFAULT_CREATED_BY
|
|
2659
2648
|
assertion_input = _SmartColumnMetricAssertionInput(
|
|
2660
|
-
urn=
|
|
2649
|
+
urn=None,
|
|
2661
2650
|
entity_client=self.client.entities,
|
|
2662
2651
|
dataset_urn=dataset_urn,
|
|
2663
2652
|
column_name=column_name,
|
|
@@ -2737,7 +2726,6 @@ class AssertionsClient:
|
|
|
2737
2726
|
)
|
|
2738
2727
|
return self._create_smart_column_metric_assertion(
|
|
2739
2728
|
dataset_urn=dataset_urn,
|
|
2740
|
-
urn=urn,
|
|
2741
2729
|
column_name=column_name,
|
|
2742
2730
|
metric_type=metric_type,
|
|
2743
2731
|
schedule=schedule,
|
|
@@ -3565,7 +3553,6 @@ class AssertionsClient:
|
|
|
3565
3553
|
self,
|
|
3566
3554
|
*,
|
|
3567
3555
|
dataset_urn: Union[str, DatasetUrn],
|
|
3568
|
-
urn: Optional[Union[str, AssertionUrn]] = None,
|
|
3569
3556
|
column_name: str,
|
|
3570
3557
|
metric_type: MetricInputType,
|
|
3571
3558
|
operator: OperatorInputType,
|
|
@@ -3607,7 +3594,7 @@ class AssertionsClient:
|
|
|
3607
3594
|
)
|
|
3608
3595
|
created_by = DEFAULT_CREATED_BY
|
|
3609
3596
|
assertion_input = _ColumnMetricAssertionInput(
|
|
3610
|
-
urn=
|
|
3597
|
+
urn=None,
|
|
3611
3598
|
entity_client=self.client.entities,
|
|
3612
3599
|
dataset_urn=dataset_urn,
|
|
3613
3600
|
column_name=column_name,
|
|
@@ -3693,7 +3680,6 @@ class AssertionsClient:
|
|
|
3693
3680
|
)
|
|
3694
3681
|
return self._create_column_metric_assertion(
|
|
3695
3682
|
dataset_urn=dataset_urn,
|
|
3696
|
-
urn=urn,
|
|
3697
3683
|
column_name=column_name,
|
|
3698
3684
|
metric_type=metric_type,
|
|
3699
3685
|
operator=operator,
|
|
@@ -17,7 +17,6 @@ class ResolverClient(OSSResolverClient):
|
|
|
17
17
|
*,
|
|
18
18
|
entity_urn: Optional[str] = None,
|
|
19
19
|
actor_urn: Optional[str] = None,
|
|
20
|
-
skip_cache: bool = False,
|
|
21
20
|
) -> List[SubscriptionUrn]:
|
|
22
21
|
"""Retrieve subscriptions for a given entity or actor, or both if both are given.
|
|
23
22
|
Args:
|
|
@@ -36,7 +35,5 @@ class ResolverClient(OSSResolverClient):
|
|
|
36
35
|
filters.append(F.custom_filter("actorUrn", "EQUAL", [actor_urn]))
|
|
37
36
|
|
|
38
37
|
filter = F.and_(*filters)
|
|
39
|
-
subscriptions = list(
|
|
40
|
-
self._client.search.get_urns(filter=filter, skip_cache=skip_cache)
|
|
41
|
-
)
|
|
38
|
+
subscriptions = list(self._client.search.get_urns(filter=filter))
|
|
42
39
|
return [SubscriptionUrn.from_string(urn) for urn in subscriptions]
|
|
@@ -9,7 +9,6 @@ from acryl_datahub_cloud.sdk.entities.assertion import Assertion
|
|
|
9
9
|
from acryl_datahub_cloud.sdk.entities.subscription import Subscription
|
|
10
10
|
from datahub.emitter.enum_helpers import get_enum_options
|
|
11
11
|
from datahub.emitter.mce_builder import make_ts_millis
|
|
12
|
-
from datahub.emitter.rest_emitter import EmitMode
|
|
13
12
|
from datahub.errors import SdkUsageError
|
|
14
13
|
from datahub.metadata.urns import AssertionUrn, CorpGroupUrn, CorpUserUrn, DatasetUrn
|
|
15
14
|
from datahub.sdk._utils import DEFAULT_ACTOR_URN
|
|
@@ -117,7 +116,6 @@ class SubscriptionClient:
|
|
|
117
116
|
existing_subscriptions = self.client.resolve.subscription( # type: ignore[attr-defined]
|
|
118
117
|
entity_urn=dataset_urn.urn(),
|
|
119
118
|
actor_urn=parsed_subscriber_urn.urn(),
|
|
120
|
-
skip_cache=True,
|
|
121
119
|
)
|
|
122
120
|
if not existing_subscriptions:
|
|
123
121
|
# new subscription
|
|
@@ -140,7 +138,7 @@ class SubscriptionClient:
|
|
|
140
138
|
updatedOn=self._create_audit_stamp(),
|
|
141
139
|
),
|
|
142
140
|
)
|
|
143
|
-
self.client.entities.upsert(subscription
|
|
141
|
+
self.client.entities.upsert(subscription)
|
|
144
142
|
logger.info(f"Subscription created: {subscription.urn}")
|
|
145
143
|
return
|
|
146
144
|
elif len(existing_subscriptions) == 1:
|
|
@@ -159,9 +157,7 @@ class SubscriptionClient:
|
|
|
159
157
|
new_assertion_urn=assertion_urn,
|
|
160
158
|
)
|
|
161
159
|
existing_subscription_entity.info.updatedOn = self._create_audit_stamp()
|
|
162
|
-
self.client.entities.upsert(
|
|
163
|
-
existing_subscription_entity, emit_mode=EmitMode.SYNC_WAIT
|
|
164
|
-
)
|
|
160
|
+
self.client.entities.upsert(existing_subscription_entity)
|
|
165
161
|
logger.info(f"Subscription updated: {existing_subscription_entity.urn}")
|
|
166
162
|
return
|
|
167
163
|
else:
|
|
@@ -277,7 +273,6 @@ class SubscriptionClient:
|
|
|
277
273
|
existing_subscription_urns = self.client.resolve.subscription( # type: ignore[attr-defined]
|
|
278
274
|
entity_urn=dataset_urn.urn(),
|
|
279
275
|
actor_urn=parsed_subscriber_urn.urn(),
|
|
280
|
-
skip_cache=True,
|
|
281
276
|
)
|
|
282
277
|
|
|
283
278
|
if not existing_subscription_urns:
|
|
@@ -331,7 +326,7 @@ class SubscriptionClient:
|
|
|
331
326
|
# Update the subscription with remaining change types
|
|
332
327
|
subscription_entity.info.entityChangeTypes = updated_change_types
|
|
333
328
|
subscription_entity.info.updatedOn = self._create_audit_stamp()
|
|
334
|
-
self.client.entities.upsert(subscription_entity
|
|
329
|
+
self.client.entities.upsert(subscription_entity)
|
|
335
330
|
logger.info(f"Subscription updated: {subscription_entity.urn}")
|
|
336
331
|
|
|
337
332
|
def _get_entity_change_types(
|
{acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.13.
|
|
3
|
+
Version: 0.3.13.2rc0
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: avro-gen3==0.7.16
|
|
6
6
|
Requires-Dist: acryl-datahub
|
|
@@ -9,93 +9,93 @@ Requires-Dist: pytz
|
|
|
9
9
|
Requires-Dist: types-croniter
|
|
10
10
|
Requires-Dist: tzlocal
|
|
11
11
|
Provides-Extra: datahub-lineage-features
|
|
12
|
+
Requires-Dist: tenacity; extra == "datahub-lineage-features"
|
|
12
13
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
14
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
13
15
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
14
16
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
15
17
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
16
|
-
Requires-Dist: tenacity; extra == "datahub-lineage-features"
|
|
17
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
18
18
|
Provides-Extra: datahub-reporting-forms
|
|
19
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
20
19
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
21
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
22
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
21
23
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
22
24
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
23
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
24
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-graph
|
|
26
26
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
27
27
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
28
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
29
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
28
30
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
29
31
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
30
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
31
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
32
32
|
Provides-Extra: datahub-reporting-extract-sql
|
|
33
33
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
34
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
35
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
34
36
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
35
37
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
36
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
37
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
38
38
|
Provides-Extra: datahub-usage-reporting
|
|
39
39
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
42
41
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
43
42
|
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
45
|
-
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
46
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
47
43
|
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
48
44
|
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
45
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
46
|
+
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
49
47
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
50
|
-
Requires-Dist:
|
|
48
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
49
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
50
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
51
51
|
Provides-Extra: datahub-metadata-sharing
|
|
52
52
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
53
53
|
Provides-Extra: datahub-action-request-owner
|
|
54
54
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
55
55
|
Provides-Extra: acryl-cs-issues
|
|
56
|
-
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
57
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
58
56
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
57
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
59
58
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
59
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
60
60
|
Provides-Extra: datahub-forms-notifications
|
|
61
61
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
62
62
|
Provides-Extra: all
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
65
|
-
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
63
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
66
64
|
Requires-Dist: pydantic<2; extra == "all"
|
|
67
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
68
66
|
Requires-Dist: pandas; extra == "all"
|
|
69
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
70
|
-
Requires-Dist: polars==1.30.0; extra == "all"
|
|
71
|
-
Requires-Dist: jinja2; extra == "all"
|
|
72
67
|
Requires-Dist: openai; extra == "all"
|
|
73
|
-
Requires-Dist:
|
|
68
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
69
|
+
Requires-Dist: polars==1.30.0; extra == "all"
|
|
74
70
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
75
|
-
Requires-Dist:
|
|
76
|
-
Requires-Dist: numpy<2; extra == "all"
|
|
77
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
71
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
78
72
|
Requires-Dist: zenpy; extra == "all"
|
|
79
73
|
Requires-Dist: tenacity; extra == "all"
|
|
74
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
75
|
+
Requires-Dist: duckdb; extra == "all"
|
|
76
|
+
Requires-Dist: boto3; extra == "all"
|
|
77
|
+
Requires-Dist: jinja2; extra == "all"
|
|
78
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
79
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
80
80
|
Provides-Extra: dev
|
|
81
|
-
Requires-Dist: pyarrow; extra == "dev"
|
|
82
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
83
|
-
Requires-Dist: openai; extra == "dev"
|
|
84
81
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
85
|
-
Requires-Dist:
|
|
82
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
83
|
+
Requires-Dist: tenacity; extra == "dev"
|
|
84
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
85
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
86
86
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
87
87
|
Requires-Dist: boto3; extra == "dev"
|
|
88
|
-
Requires-Dist: tenacity; extra == "dev"
|
|
89
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
90
|
-
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
91
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
92
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
93
88
|
Requires-Dist: numpy<2; extra == "dev"
|
|
94
89
|
Requires-Dist: pandas; extra == "dev"
|
|
95
|
-
Requires-Dist:
|
|
90
|
+
Requires-Dist: openai; extra == "dev"
|
|
91
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
92
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
93
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
96
94
|
Requires-Dist: jinja2; extra == "dev"
|
|
97
|
-
Requires-Dist:
|
|
98
|
-
Requires-Dist:
|
|
95
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
96
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
97
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
98
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
99
99
|
Dynamic: provides-extra
|
|
100
100
|
Dynamic: requires-dist
|
|
101
101
|
Dynamic: requires-python
|
|
@@ -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=QDBh8XgSwci_SjEfpmxhXMzu4LOOFK6lGi8k0yL36Fs,558
|
|
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=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -44,10 +44,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
44
44
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
acryl_datahub_cloud/lineage_features/source.py,sha256=8je_BMcDAiiY-jV4ONYDW973vDC5AwD-DqAi64nGp_c,13800
|
|
46
46
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
47
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
48
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
47
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=Is8yZtMOMV3sSdbBZlu_J1-5OXK4LH3-X0odOuyDn7g,1103124
|
|
48
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=lvdowsQiaVMRi-J6q1osRyRNe20ysCjh8-kAkaEj3Ko,1570563
|
|
49
49
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
50
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
50
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=9LtPbn2OcZ-SaYwQ_TwT8aJp0qWlc-Hsg8VWuX1uAsc,170696
|
|
51
51
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
52
52
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
53
53
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -267,7 +267,7 @@ acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc,sha256=Q30ISjzcmwHdYpuLQ1oX
|
|
|
267
267
|
acryl_datahub_cloud/metadata/schemas/DatasetProfile.avsc,sha256=0NlrSBbwDdlOZclWA3RUept_Ennc9i-W7EeldyrkTlk,20778
|
|
268
268
|
acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc,sha256=DFJn75feqaoQk84zin_o_lqsFFhqkwya5LGC5LLJXbU,4209
|
|
269
269
|
acryl_datahub_cloud/metadata/schemas/DatasetUpstreamLineage.avsc,sha256=PjAWPbsqwH7FjX2kFDy0dE6ENYOwRynH9vJerWisr2A,5365
|
|
270
|
-
acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc,sha256=
|
|
270
|
+
acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc,sha256=JKNy_KlUqr3kt7o1Cu2DiQx3XUG_NQbVFVpeNr4ntCc,6999
|
|
271
271
|
acryl_datahub_cloud/metadata/schemas/Deprecation.avsc,sha256=p8SBIuKP3XVGeaBI7rROpLNACuoX8eMLRlZz8lGOYV8,1354
|
|
272
272
|
acryl_datahub_cloud/metadata/schemas/DisplayProperties.avsc,sha256=MTa_g2s0roxNFFggWU8rslUH3UFe3xe11uUXyh0Go_I,1732
|
|
273
273
|
acryl_datahub_cloud/metadata/schemas/Documentation.avsc,sha256=1gPcRrDQc-fU53t83PRtf4MeP-uqxJHazdyx_iQPKac,7011
|
|
@@ -441,10 +441,10 @@ acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=kCcak_fBn_KyuysZTJIoipAz
|
|
|
441
441
|
acryl_datahub_cloud/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
442
|
acryl_datahub_cloud/notifications/notification_recipient_builder.py,sha256=jmAh4q4OTjdYwySn-geRU23eiVWvHzABddr6yXii3E4,14573
|
|
443
443
|
acryl_datahub_cloud/sdk/__init__.py,sha256=X95kEdCFf0IKh1b0zMZHc7uGpQZ9DjFdT84YQNoI1XE,1782
|
|
444
|
-
acryl_datahub_cloud/sdk/assertions_client.py,sha256=
|
|
444
|
+
acryl_datahub_cloud/sdk/assertions_client.py,sha256=Ku2l384tFimfOHAZFAmJMvh4w_6r6lGDt_H6I_ckd3A,201289
|
|
445
445
|
acryl_datahub_cloud/sdk/errors.py,sha256=UfaA-u9rp_XhqiWAeVF-PcjgCPxUKLXe0GVkWCuX8Ds,1038
|
|
446
|
-
acryl_datahub_cloud/sdk/resolver_client.py,sha256=
|
|
447
|
-
acryl_datahub_cloud/sdk/subscription_client.py,sha256=
|
|
446
|
+
acryl_datahub_cloud/sdk/resolver_client.py,sha256=X5qy7lewDZ4QarpFrQ7goWDaMSC60sie1srnD4zwyH4,1468
|
|
447
|
+
acryl_datahub_cloud/sdk/subscription_client.py,sha256=1dEYfMUsMbQ7Gf0ap06I13AnYzJsch1aynXareK5xsQ,31432
|
|
448
448
|
acryl_datahub_cloud/sdk/assertion/__init__.py,sha256=QnGJzyJPzk_pHK0cYgpTPBMo4ws7uYvta6L4OnsYS1M,1587
|
|
449
449
|
acryl_datahub_cloud/sdk/assertion/assertion_base.py,sha256=vQ94VzNt-wDikbzDTk4AQqhKdWnlTOmVMOpq488Lwi0,28690
|
|
450
450
|
acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py,sha256=dia64PkkqblnzHQ2TxQA7ei0llK-AoYvBf3ML8q1pEE,7441
|
|
@@ -469,8 +469,8 @@ acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
469
469
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
470
470
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
471
471
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
472
|
-
acryl_datahub_cloud-0.3.13.
|
|
473
|
-
acryl_datahub_cloud-0.3.13.
|
|
474
|
-
acryl_datahub_cloud-0.3.13.
|
|
475
|
-
acryl_datahub_cloud-0.3.13.
|
|
476
|
-
acryl_datahub_cloud-0.3.13.
|
|
472
|
+
acryl_datahub_cloud-0.3.13.2rc0.dist-info/METADATA,sha256=mEYdrXLj7b5_x3WyCh7tloqQbW2QvT29fRPPFZwOXcQ,4858
|
|
473
|
+
acryl_datahub_cloud-0.3.13.2rc0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
474
|
+
acryl_datahub_cloud-0.3.13.2rc0.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
475
|
+
acryl_datahub_cloud-0.3.13.2rc0.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
476
|
+
acryl_datahub_cloud-0.3.13.2rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.13.1.dist-info → acryl_datahub_cloud-0.3.13.2rc0.dist-info}/top_level.txt
RENAMED
|
File without changes
|