acryl-datahub-cloud 0.3.8rc17__py3-none-any.whl → 0.3.8.1rc1__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 +45 -0
- 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 +46 -3
- acryl_datahub_cloud/metadata/schema_classes.py +76 -9
- 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-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/METADATA +44 -44
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/RECORD +17 -14
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/top_level.txt +0 -0
|
@@ -104,9 +104,8 @@ class DataHubMetadataSharingSource(Source):
|
|
|
104
104
|
self._process_single_entity(result)
|
|
105
105
|
|
|
106
106
|
self.report.batches_processed = current_batch_number
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
context=f"{current_batch_number} of size {self.config.batch_size}!",
|
|
107
|
+
logger.info(
|
|
108
|
+
f"Completed sharing batch of entities {current_batch_number} of size {self.config.batch_size}!"
|
|
110
109
|
)
|
|
111
110
|
current_batch_number += 1
|
|
112
111
|
|
|
@@ -126,10 +125,8 @@ class DataHubMetadataSharingSource(Source):
|
|
|
126
125
|
)
|
|
127
126
|
return
|
|
128
127
|
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
context=f"Successfully shared {self.report.entities_shared} entities, "
|
|
132
|
-
f"failed to share {self.report.entities_failed} entities.",
|
|
128
|
+
logger.info(
|
|
129
|
+
f"Successfully shared {self.report.entities_shared} entities, failed to share {self.report.entities_failed} entities.",
|
|
133
130
|
)
|
|
134
131
|
|
|
135
132
|
# Rest of the methods remain the same...
|
|
@@ -168,9 +165,9 @@ class DataHubMetadataSharingSource(Source):
|
|
|
168
165
|
continue
|
|
169
166
|
|
|
170
167
|
if previous_status != "SUCCESS":
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
168
|
+
logger.info(
|
|
169
|
+
"Attempting to share a previously unsuccessful shared entity! "
|
|
170
|
+
+ f"entity urn: {entity_urn}, destination urn: {destination_urn}"
|
|
174
171
|
)
|
|
175
172
|
|
|
176
173
|
lineage_direction = self._determine_lineage_direction(share_config)
|
|
@@ -93,7 +93,7 @@ class DataHubReportingFormsSource(Source):
|
|
|
93
93
|
form_analytics_config = self.get_reporting_config()
|
|
94
94
|
|
|
95
95
|
if form_analytics_config and not form_analytics_config.enabled:
|
|
96
|
-
logger.
|
|
96
|
+
logger.info("Form analytics is not enabled. Skipping reporting.")
|
|
97
97
|
self.report.feature_enabled = False
|
|
98
98
|
return
|
|
99
99
|
|
|
@@ -1377,7 +1377,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
1377
1377
|
|
|
1378
1378
|
top_users = self.generate_top_users(lf)
|
|
1379
1379
|
|
|
1380
|
-
usage_with_top_users =
|
|
1380
|
+
usage_with_top_users = total_queries.join(top_users, on="urn", how="left")
|
|
1381
1381
|
|
|
1382
1382
|
usage_with_top_users_with_ranks = self.gen_rank_and_percentile(
|
|
1383
1383
|
usage_with_top_users, "totalSqlQueries", "urn", "platform", "queries_"
|
|
@@ -842,6 +842,51 @@ class IncidentUrn(_SpecificUrn):
|
|
|
842
842
|
def id(self) -> str:
|
|
843
843
|
return self.entity_ids[0]
|
|
844
844
|
|
|
845
|
+
if TYPE_CHECKING:
|
|
846
|
+
from datahub.metadata.schema_classes import RemoteExecutorPoolKeyClass
|
|
847
|
+
|
|
848
|
+
class DataHubRemoteExecutorPoolUrn(_SpecificUrn):
|
|
849
|
+
ENTITY_TYPE: ClassVar[str] = "dataHubRemoteExecutorPool"
|
|
850
|
+
URN_PARTS: ClassVar[int] = 1
|
|
851
|
+
|
|
852
|
+
def __init__(self, name: str, *, _allow_coercion: bool = True) -> None:
|
|
853
|
+
if _allow_coercion:
|
|
854
|
+
# Field coercion logic (if any is required).
|
|
855
|
+
name = UrnEncoder.encode_string(name)
|
|
856
|
+
|
|
857
|
+
# Validation logic.
|
|
858
|
+
if not name:
|
|
859
|
+
raise InvalidUrnError("DataHubRemoteExecutorPoolUrn name cannot be empty")
|
|
860
|
+
if UrnEncoder.contains_reserved_char(name):
|
|
861
|
+
raise InvalidUrnError(f'DataHubRemoteExecutorPoolUrn name contains reserved characters')
|
|
862
|
+
|
|
863
|
+
super().__init__(self.ENTITY_TYPE, [name])
|
|
864
|
+
|
|
865
|
+
@classmethod
|
|
866
|
+
def _parse_ids(cls, entity_ids: List[str]) -> "DataHubRemoteExecutorPoolUrn":
|
|
867
|
+
if len(entity_ids) != cls.URN_PARTS:
|
|
868
|
+
raise InvalidUrnError(f"DataHubRemoteExecutorPoolUrn should have {cls.URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
869
|
+
return cls(name=entity_ids[0], _allow_coercion=False)
|
|
870
|
+
|
|
871
|
+
@classmethod
|
|
872
|
+
def underlying_key_aspect_type(cls) -> Type["RemoteExecutorPoolKeyClass"]:
|
|
873
|
+
from datahub.metadata.schema_classes import RemoteExecutorPoolKeyClass
|
|
874
|
+
|
|
875
|
+
return RemoteExecutorPoolKeyClass
|
|
876
|
+
|
|
877
|
+
def to_key_aspect(self) -> "RemoteExecutorPoolKeyClass":
|
|
878
|
+
from datahub.metadata.schema_classes import RemoteExecutorPoolKeyClass
|
|
879
|
+
|
|
880
|
+
return RemoteExecutorPoolKeyClass(name=self.name)
|
|
881
|
+
|
|
882
|
+
@classmethod
|
|
883
|
+
def from_key_aspect(cls, key_aspect: "RemoteExecutorPoolKeyClass") -> "DataHubRemoteExecutorPoolUrn":
|
|
884
|
+
return cls(name=key_aspect.name)
|
|
885
|
+
|
|
886
|
+
@property
|
|
887
|
+
def name(self) -> str:
|
|
888
|
+
return self.entity_ids[0]
|
|
889
|
+
|
|
845
890
|
if TYPE_CHECKING:
|
|
846
891
|
from datahub.metadata.schema_classes import TelemetryKeyClass
|
|
847
892
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import RemoteExecutorPoolInfoClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
RemoteExecutorPoolInfo = RemoteExecutorPoolInfoClass
|
|
14
|
+
|
|
15
|
+
# fmt: on
|
|
@@ -60,6 +60,7 @@ from ......schema_classes import PostKeyClass
|
|
|
60
60
|
from ......schema_classes import QueryKeyClass
|
|
61
61
|
from ......schema_classes import RecommendationModuleKeyClass
|
|
62
62
|
from ......schema_classes import RemoteExecutorKeyClass
|
|
63
|
+
from ......schema_classes import RemoteExecutorPoolKeyClass
|
|
63
64
|
from ......schema_classes import RoleKeyClass
|
|
64
65
|
from ......schema_classes import SchemaFieldKeyClass
|
|
65
66
|
from ......schema_classes import SubscriptionKeyClass
|
|
@@ -122,6 +123,7 @@ PostKey = PostKeyClass
|
|
|
122
123
|
QueryKey = QueryKeyClass
|
|
123
124
|
RecommendationModuleKey = RecommendationModuleKeyClass
|
|
124
125
|
RemoteExecutorKey = RemoteExecutorKeyClass
|
|
126
|
+
RemoteExecutorPoolKey = RemoteExecutorPoolKeyClass
|
|
125
127
|
RoleKey = RoleKeyClass
|
|
126
128
|
SchemaFieldKey = SchemaFieldKeyClass
|
|
127
129
|
SubscriptionKey = SubscriptionKeyClass
|
|
@@ -9218,8 +9218,8 @@
|
|
|
9218
9218
|
"fieldType": "KEYWORD"
|
|
9219
9219
|
},
|
|
9220
9220
|
"type": "string",
|
|
9221
|
-
"name": "
|
|
9222
|
-
"doc": "
|
|
9221
|
+
"name": "poolName",
|
|
9222
|
+
"doc": "References the 'name' defined in RemoteExecutorPoolKey"
|
|
9223
9223
|
},
|
|
9224
9224
|
{
|
|
9225
9225
|
"type": "string",
|
|
@@ -9279,7 +9279,7 @@
|
|
|
9279
9279
|
"fieldType": "COUNT",
|
|
9280
9280
|
"queryByDefault": false
|
|
9281
9281
|
},
|
|
9282
|
-
"type": "
|
|
9282
|
+
"type": "long",
|
|
9283
9283
|
"name": "reportedAt",
|
|
9284
9284
|
"doc": "UTC-based timestamp of the last reported status"
|
|
9285
9285
|
}
|
|
@@ -15779,6 +15779,30 @@
|
|
|
15779
15779
|
],
|
|
15780
15780
|
"doc": "Key for an asset Incident"
|
|
15781
15781
|
},
|
|
15782
|
+
{
|
|
15783
|
+
"type": "record",
|
|
15784
|
+
"Aspect": {
|
|
15785
|
+
"name": "dataHubRemoteExecutorPoolKey",
|
|
15786
|
+
"keyForEntity": "dataHubRemoteExecutorPool",
|
|
15787
|
+
"entityCategory": "internal",
|
|
15788
|
+
"entityAspects": [
|
|
15789
|
+
"dataHubRemoteExecutorPoolInfo"
|
|
15790
|
+
]
|
|
15791
|
+
},
|
|
15792
|
+
"name": "RemoteExecutorPoolKey",
|
|
15793
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
15794
|
+
"fields": [
|
|
15795
|
+
{
|
|
15796
|
+
"Searchable": {
|
|
15797
|
+
"fieldType": "KEYWORD"
|
|
15798
|
+
},
|
|
15799
|
+
"type": "string",
|
|
15800
|
+
"name": "name",
|
|
15801
|
+
"doc": "The unique identifier for the remote executor pool"
|
|
15802
|
+
}
|
|
15803
|
+
],
|
|
15804
|
+
"doc": "Key for an DataHub Remote Executor Pool"
|
|
15805
|
+
},
|
|
15782
15806
|
{
|
|
15783
15807
|
"type": "record",
|
|
15784
15808
|
"Aspect": {
|
|
@@ -22029,6 +22053,25 @@
|
|
|
22029
22053
|
],
|
|
22030
22054
|
"doc": "Information about a connection to an external platform."
|
|
22031
22055
|
},
|
|
22056
|
+
{
|
|
22057
|
+
"type": "record",
|
|
22058
|
+
"Aspect": {
|
|
22059
|
+
"name": "dataHubRemoteExecutorPoolInfo"
|
|
22060
|
+
},
|
|
22061
|
+
"name": "RemoteExecutorPoolInfo",
|
|
22062
|
+
"namespace": "com.linkedin.pegasus2avro.executorpool",
|
|
22063
|
+
"fields": [
|
|
22064
|
+
{
|
|
22065
|
+
"Searchable": {
|
|
22066
|
+
"fieldType": "COUNT",
|
|
22067
|
+
"queryByDefault": false
|
|
22068
|
+
},
|
|
22069
|
+
"type": "long",
|
|
22070
|
+
"name": "createdAt",
|
|
22071
|
+
"doc": "UTC-based timestamp of when this pool was created"
|
|
22072
|
+
}
|
|
22073
|
+
]
|
|
22074
|
+
},
|
|
22032
22075
|
{
|
|
22033
22076
|
"type": "record",
|
|
22034
22077
|
"Aspect": {
|
|
@@ -17279,7 +17279,7 @@ class RemoteExecutorStatusClass(_Aspect):
|
|
|
17279
17279
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.executor.RemoteExecutorStatus")
|
|
17280
17280
|
|
|
17281
17281
|
def __init__(self,
|
|
17282
|
-
|
|
17282
|
+
poolName: str,
|
|
17283
17283
|
executorReleaseVersion: str,
|
|
17284
17284
|
executorAddress: str,
|
|
17285
17285
|
executorHostname: str,
|
|
@@ -17293,7 +17293,7 @@ class RemoteExecutorStatusClass(_Aspect):
|
|
|
17293
17293
|
):
|
|
17294
17294
|
super().__init__()
|
|
17295
17295
|
|
|
17296
|
-
self.
|
|
17296
|
+
self.poolName = poolName
|
|
17297
17297
|
self.executorReleaseVersion = executorReleaseVersion
|
|
17298
17298
|
self.executorAddress = executorAddress
|
|
17299
17299
|
self.executorHostname = executorHostname
|
|
@@ -17326,7 +17326,7 @@ class RemoteExecutorStatusClass(_Aspect):
|
|
|
17326
17326
|
self.reportedAt = reportedAt
|
|
17327
17327
|
|
|
17328
17328
|
def _restore_defaults(self) -> None:
|
|
17329
|
-
self.
|
|
17329
|
+
self.poolName = str()
|
|
17330
17330
|
self.executorReleaseVersion = str()
|
|
17331
17331
|
self.executorAddress = str()
|
|
17332
17332
|
self.executorHostname = str()
|
|
@@ -17340,13 +17340,13 @@ class RemoteExecutorStatusClass(_Aspect):
|
|
|
17340
17340
|
|
|
17341
17341
|
|
|
17342
17342
|
@property
|
|
17343
|
-
def
|
|
17344
|
-
"""
|
|
17345
|
-
return self._inner_dict.get('
|
|
17343
|
+
def poolName(self) -> str:
|
|
17344
|
+
"""References the 'name' defined in RemoteExecutorPoolKey"""
|
|
17345
|
+
return self._inner_dict.get('poolName') # type: ignore
|
|
17346
17346
|
|
|
17347
|
-
@
|
|
17348
|
-
def
|
|
17349
|
-
self._inner_dict['
|
|
17347
|
+
@poolName.setter
|
|
17348
|
+
def poolName(self, value: str) -> None:
|
|
17349
|
+
self._inner_dict['poolName'] = value
|
|
17350
17350
|
|
|
17351
17351
|
|
|
17352
17352
|
@property
|
|
@@ -17450,6 +17450,35 @@ class RemoteExecutorStatusClass(_Aspect):
|
|
|
17450
17450
|
self._inner_dict['reportedAt'] = value
|
|
17451
17451
|
|
|
17452
17452
|
|
|
17453
|
+
class RemoteExecutorPoolInfoClass(_Aspect):
|
|
17454
|
+
# No docs available.
|
|
17455
|
+
|
|
17456
|
+
|
|
17457
|
+
ASPECT_NAME = 'dataHubRemoteExecutorPoolInfo'
|
|
17458
|
+
ASPECT_INFO = {}
|
|
17459
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolInfo")
|
|
17460
|
+
|
|
17461
|
+
def __init__(self,
|
|
17462
|
+
createdAt: int,
|
|
17463
|
+
):
|
|
17464
|
+
super().__init__()
|
|
17465
|
+
|
|
17466
|
+
self.createdAt = createdAt
|
|
17467
|
+
|
|
17468
|
+
def _restore_defaults(self) -> None:
|
|
17469
|
+
self.createdAt = int()
|
|
17470
|
+
|
|
17471
|
+
|
|
17472
|
+
@property
|
|
17473
|
+
def createdAt(self) -> int:
|
|
17474
|
+
"""UTC-based timestamp of when this pool was created"""
|
|
17475
|
+
return self._inner_dict.get('createdAt') # type: ignore
|
|
17476
|
+
|
|
17477
|
+
@createdAt.setter
|
|
17478
|
+
def createdAt(self, value: int) -> None:
|
|
17479
|
+
self._inner_dict['createdAt'] = value
|
|
17480
|
+
|
|
17481
|
+
|
|
17453
17482
|
class DomainParamsClass(DictWrapper):
|
|
17454
17483
|
"""Information specific to glossary terms prompts."""
|
|
17455
17484
|
|
|
@@ -22718,6 +22747,35 @@ class RemoteExecutorKeyClass(_Aspect):
|
|
|
22718
22747
|
self._inner_dict['id'] = value
|
|
22719
22748
|
|
|
22720
22749
|
|
|
22750
|
+
class RemoteExecutorPoolKeyClass(_Aspect):
|
|
22751
|
+
"""Key for an DataHub Remote Executor Pool"""
|
|
22752
|
+
|
|
22753
|
+
|
|
22754
|
+
ASPECT_NAME = 'dataHubRemoteExecutorPoolKey'
|
|
22755
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubRemoteExecutorPool', 'entityCategory': 'internal', 'entityAspects': ['dataHubRemoteExecutorPoolInfo']}
|
|
22756
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.RemoteExecutorPoolKey")
|
|
22757
|
+
|
|
22758
|
+
def __init__(self,
|
|
22759
|
+
name: str,
|
|
22760
|
+
):
|
|
22761
|
+
super().__init__()
|
|
22762
|
+
|
|
22763
|
+
self.name = name
|
|
22764
|
+
|
|
22765
|
+
def _restore_defaults(self) -> None:
|
|
22766
|
+
self.name = str()
|
|
22767
|
+
|
|
22768
|
+
|
|
22769
|
+
@property
|
|
22770
|
+
def name(self) -> str:
|
|
22771
|
+
"""The unique identifier for the remote executor pool"""
|
|
22772
|
+
return self._inner_dict.get('name') # type: ignore
|
|
22773
|
+
|
|
22774
|
+
@name.setter
|
|
22775
|
+
def name(self, value: str) -> None:
|
|
22776
|
+
self._inner_dict['name'] = value
|
|
22777
|
+
|
|
22778
|
+
|
|
22721
22779
|
class RoleKeyClass(_Aspect):
|
|
22722
22780
|
"""Key for a External AccessManagement"""
|
|
22723
22781
|
|
|
@@ -35402,6 +35460,7 @@ __SCHEMA_TYPES = {
|
|
|
35402
35460
|
'com.linkedin.pegasus2avro.execution.ExecutionRequestSource': ExecutionRequestSourceClass,
|
|
35403
35461
|
'com.linkedin.pegasus2avro.execution.StructuredExecutionReport': StructuredExecutionReportClass,
|
|
35404
35462
|
'com.linkedin.pegasus2avro.executor.RemoteExecutorStatus': RemoteExecutorStatusClass,
|
|
35463
|
+
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
35405
35464
|
'com.linkedin.pegasus2avro.form.DomainParams': DomainParamsClass,
|
|
35406
35465
|
'com.linkedin.pegasus2avro.form.DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
35407
35466
|
'com.linkedin.pegasus2avro.form.FormActorAssignment': FormActorAssignmentClass,
|
|
@@ -35519,6 +35578,7 @@ __SCHEMA_TYPES = {
|
|
|
35519
35578
|
'com.linkedin.pegasus2avro.metadata.key.QueryKey': QueryKeyClass,
|
|
35520
35579
|
'com.linkedin.pegasus2avro.metadata.key.RecommendationModuleKey': RecommendationModuleKeyClass,
|
|
35521
35580
|
'com.linkedin.pegasus2avro.metadata.key.RemoteExecutorKey': RemoteExecutorKeyClass,
|
|
35581
|
+
'com.linkedin.pegasus2avro.metadata.key.RemoteExecutorPoolKey': RemoteExecutorPoolKeyClass,
|
|
35522
35582
|
'com.linkedin.pegasus2avro.metadata.key.RoleKey': RoleKeyClass,
|
|
35523
35583
|
'com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey': SchemaFieldKeyClass,
|
|
35524
35584
|
'com.linkedin.pegasus2avro.metadata.key.SubscriptionKey': SubscriptionKeyClass,
|
|
@@ -36071,6 +36131,7 @@ __SCHEMA_TYPES = {
|
|
|
36071
36131
|
'ExecutionRequestSource': ExecutionRequestSourceClass,
|
|
36072
36132
|
'StructuredExecutionReport': StructuredExecutionReportClass,
|
|
36073
36133
|
'RemoteExecutorStatus': RemoteExecutorStatusClass,
|
|
36134
|
+
'RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
36074
36135
|
'DomainParams': DomainParamsClass,
|
|
36075
36136
|
'DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
36076
36137
|
'FormActorAssignment': FormActorAssignmentClass,
|
|
@@ -36188,6 +36249,7 @@ __SCHEMA_TYPES = {
|
|
|
36188
36249
|
'QueryKey': QueryKeyClass,
|
|
36189
36250
|
'RecommendationModuleKey': RecommendationModuleKeyClass,
|
|
36190
36251
|
'RemoteExecutorKey': RemoteExecutorKeyClass,
|
|
36252
|
+
'RemoteExecutorPoolKey': RemoteExecutorPoolKeyClass,
|
|
36191
36253
|
'RoleKey': RoleKeyClass,
|
|
36192
36254
|
'SchemaFieldKey': SchemaFieldKeyClass,
|
|
36193
36255
|
'SubscriptionKey': SubscriptionKeyClass,
|
|
@@ -36574,6 +36636,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
|
36574
36636
|
MLModelGroupKeyClass,
|
|
36575
36637
|
ERModelRelationshipKeyClass,
|
|
36576
36638
|
IncidentKeyClass,
|
|
36639
|
+
RemoteExecutorPoolKeyClass,
|
|
36577
36640
|
TelemetryKeyClass,
|
|
36578
36641
|
SchemaFieldKeyClass,
|
|
36579
36642
|
LinkPreviewKeyClass,
|
|
@@ -36665,6 +36728,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
|
36665
36728
|
GroupMembershipClass,
|
|
36666
36729
|
DataHubRetentionConfigClass,
|
|
36667
36730
|
DataHubConnectionDetailsClass,
|
|
36731
|
+
RemoteExecutorPoolInfoClass,
|
|
36668
36732
|
AiInferenceMetadataClass,
|
|
36669
36733
|
EntityInferenceMetadataClass,
|
|
36670
36734
|
BusinessAttributesClass,
|
|
@@ -36841,6 +36905,7 @@ class AspectBag(TypedDict, total=False):
|
|
|
36841
36905
|
mlModelGroupKey: MLModelGroupKeyClass
|
|
36842
36906
|
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
36843
36907
|
incidentKey: IncidentKeyClass
|
|
36908
|
+
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
36844
36909
|
telemetryKey: TelemetryKeyClass
|
|
36845
36910
|
schemaFieldKey: SchemaFieldKeyClass
|
|
36846
36911
|
linkPreviewKey: LinkPreviewKeyClass
|
|
@@ -36932,6 +36997,7 @@ class AspectBag(TypedDict, total=False):
|
|
|
36932
36997
|
groupMembership: GroupMembershipClass
|
|
36933
36998
|
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
36934
36999
|
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
37000
|
+
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
36935
37001
|
aiInferenceMetadata: AiInferenceMetadataClass
|
|
36936
37002
|
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
36937
37003
|
businessAttributes: BusinessAttributesClass
|
|
@@ -36990,6 +37056,7 @@ KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
|
36990
37056
|
'mlModelGroup': MLModelGroupKeyClass,
|
|
36991
37057
|
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
36992
37058
|
'incident': IncidentKeyClass,
|
|
37059
|
+
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
36993
37060
|
'telemetry': TelemetryKeyClass,
|
|
36994
37061
|
'schemaField': SchemaFieldKeyClass,
|
|
36995
37062
|
'linkPreview': LinkPreviewKeyClass,
|
|
@@ -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
|
}
|
{acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/METADATA
RENAMED
|
@@ -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.1rc1
|
|
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
|
-
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
9
|
-
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
10
|
-
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
11
7
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
8
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
9
|
+
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
10
|
+
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
11
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
14
13
|
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
15
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
18
14
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
16
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
18
|
+
Requires-Dist: termcolor==2.5.0; 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
20
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
22
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
23
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
25
21
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
22
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
23
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
25
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
26
26
|
Provides-Extra: datahub-reporting-extract-sql
|
|
27
27
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
28
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
29
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
30
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
31
28
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
29
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
31
|
+
Requires-Dist: pydantic<2; 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
33
|
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
34
|
+
Requires-Dist: polars==1.19.0; extra == "datahub-usage-reporting"
|
|
35
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
36
36
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
37
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
37
38
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
38
40
|
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
39
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
40
41
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
41
|
-
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
42
|
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
43
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: termcolor==2.5.0; 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"
|
|
49
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
50
50
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
51
51
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
52
52
|
Provides-Extra: all
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
53
|
+
Requires-Dist: polars==1.19.0; extra == "all"
|
|
54
|
+
Requires-Dist: tenacity; extra == "all"
|
|
55
55
|
Requires-Dist: pandas; extra == "all"
|
|
56
|
-
Requires-Dist:
|
|
56
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
57
|
+
Requires-Dist: duckdb; extra == "all"
|
|
57
58
|
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
58
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
59
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
60
|
Requires-Dist: zenpy; extra == "all"
|
|
64
61
|
Requires-Dist: numpy<2; extra == "all"
|
|
65
62
|
Requires-Dist: pydantic<2; extra == "all"
|
|
66
|
-
Requires-Dist:
|
|
67
|
-
Requires-Dist:
|
|
63
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
64
|
+
Requires-Dist: jinja2; extra == "all"
|
|
68
65
|
Requires-Dist: slack-sdk; extra == "all"
|
|
66
|
+
Requires-Dist: boto3; extra == "all"
|
|
67
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
69
68
|
Requires-Dist: pyarrow; extra == "all"
|
|
69
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
70
70
|
Provides-Extra: dev
|
|
71
|
-
Requires-Dist:
|
|
72
|
-
Requires-Dist: boto3; extra == "dev"
|
|
73
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
71
|
+
Requires-Dist: openai; extra == "dev"
|
|
74
72
|
Requires-Dist: numpy<2; extra == "dev"
|
|
73
|
+
Requires-Dist: polars==1.19.0; extra == "dev"
|
|
74
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
75
75
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
76
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
77
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
78
|
-
Requires-Dist: pandas; extra == "dev"
|
|
79
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
80
76
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
81
|
-
Requires-Dist:
|
|
82
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
83
|
-
Requires-Dist: openai; extra == "dev"
|
|
84
|
-
Requires-Dist: polars==1.19.0; extra == "dev"
|
|
77
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
85
78
|
Requires-Dist: tenacity; extra == "dev"
|
|
79
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
86
80
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
87
|
-
Requires-Dist:
|
|
81
|
+
Requires-Dist: boto3; extra == "dev"
|
|
82
|
+
Requires-Dist: pandas; extra == "dev"
|
|
83
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
88
84
|
Requires-Dist: pyarrow; extra == "dev"
|
|
85
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
86
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
87
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
88
|
+
Requires-Dist: acryl-datahub[dev]; 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=Fin_OqFpAV0hqviP60YKeRQZeCHySfkSoHY95IhEPZk,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
|
|
@@ -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=OhaGpHcgez-sd9Wv5-mAT2mwYXCk5jtDFGRmwU2URc8,936048
|
|
37
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=-vbKtGvPxm0uoh2W1kMvsuize8DS0a1iOQizIF9yQFg,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=1RE97dgwD2-Ac7rjrJHj1h2HDD8nMzaZ8fn3rtDuWZc,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
|
|
@@ -392,8 +395,8 @@ acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc,sha256=psjGNNcFua3Zs9Xlh
|
|
|
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
397
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
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.
|
|
398
|
+
acryl_datahub_cloud-0.3.8.1rc1.dist-info/METADATA,sha256=H8D2wmGfzOSUqnmMTNLHTL5vI4anhMwtejYgCGqlgvY,4432
|
|
399
|
+
acryl_datahub_cloud-0.3.8.1rc1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
400
|
+
acryl_datahub_cloud-0.3.8.1rc1.dist-info/entry_points.txt,sha256=U25NAI0Z2w_pMQjWWZ6zXvy2lf1m53mjF3ilV_uq6HQ,1004
|
|
401
|
+
acryl_datahub_cloud-0.3.8.1rc1.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
402
|
+
acryl_datahub_cloud-0.3.8.1rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.8rc17.dist-info → acryl_datahub_cloud-0.3.8.1rc1.dist-info}/top_level.txt
RENAMED
|
File without changes
|