acryl-datahub-cloud 0.3.11rc0__py3-none-any.whl → 0.3.16.1rc0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
- acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
- acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
- acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
- acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
- acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
- acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +37 -13
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +55 -24
- acryl_datahub_cloud/datahub_reporting/extract_graph.py +4 -3
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +242 -51
- acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
- acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
- acryl_datahub_cloud/datahub_restore/source.py +3 -2
- acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +518 -77
- acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
- acryl_datahub_cloud/graphql_utils.py +64 -0
- acryl_datahub_cloud/lineage_features/source.py +555 -49
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2296 -1900
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +4 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +12 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
- acryl_datahub_cloud/metadata/schema.avsc +25091 -20557
- acryl_datahub_cloud/metadata/schema_classes.py +29269 -23863
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +353 -215
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +166 -21
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
- acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
- acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
- acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
- acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
- acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
- acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
- acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
- acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
- acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
- acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
- acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
- acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
- acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
- acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +418 -97
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +54 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +163 -23
- acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
- acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
- acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
- acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
- acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
- acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +69 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
- acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
- acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
- acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
- acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
- acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
- acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
- acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
- acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
- acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
- acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
- acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
- acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
- acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
- acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
- acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
- acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
- acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
- acryl_datahub_cloud/sdk/errors.py +34 -0
- acryl_datahub_cloud/sdk/resolver_client.py +42 -0
- acryl_datahub_cloud/sdk/subscription_client.py +737 -0
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +55 -49
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +235 -142
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
- acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
|
@@ -28,6 +28,32 @@
|
|
|
28
28
|
"default": null,
|
|
29
29
|
"doc": "The role that this invite token may be associated with",
|
|
30
30
|
"Urn": "Urn"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"Searchable": {
|
|
34
|
+
"fieldName": "tokenType",
|
|
35
|
+
"fieldType": "KEYWORD"
|
|
36
|
+
},
|
|
37
|
+
"type": [
|
|
38
|
+
{
|
|
39
|
+
"type": "enum",
|
|
40
|
+
"symbolDocs": {
|
|
41
|
+
"INDIVIDUAL": "Individual token generated for bulk invitations. Single-use, consumed on signup.",
|
|
42
|
+
"SHARED": "Shared token that admin can copy and share manually. Reusable until admin regenerates."
|
|
43
|
+
},
|
|
44
|
+
"name": "TokenType",
|
|
45
|
+
"namespace": "com.linkedin.pegasus2avro.identity",
|
|
46
|
+
"symbols": [
|
|
47
|
+
"SHARED",
|
|
48
|
+
"INDIVIDUAL"
|
|
49
|
+
],
|
|
50
|
+
"doc": "Token types for different invitation workflows"
|
|
51
|
+
},
|
|
52
|
+
"null"
|
|
53
|
+
],
|
|
54
|
+
"name": "tokenType",
|
|
55
|
+
"default": "SHARED",
|
|
56
|
+
"doc": "The type of invite token - shared (admin managed) or individual (single-use)"
|
|
31
57
|
}
|
|
32
58
|
],
|
|
33
59
|
"doc": "Aspect used to store invite tokens."
|
|
@@ -25,51 +25,76 @@
|
|
|
25
25
|
"doc": "Cached number of entities related by lineage, downstream."
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
28
|
+
"Searchable": {
|
|
29
|
+
"addToFilters": true,
|
|
30
|
+
"fieldName": "hasAssetLevelLineageFeature",
|
|
31
|
+
"fieldType": "BOOLEAN",
|
|
32
|
+
"filterNameOverride": "Has Asset-Level Lineage"
|
|
33
|
+
},
|
|
34
|
+
"type": [
|
|
35
|
+
"null",
|
|
36
|
+
"boolean"
|
|
37
|
+
],
|
|
38
|
+
"name": "hasAssetLevelLineage",
|
|
39
|
+
"default": null,
|
|
40
|
+
"doc": "Whether upstreamCount > 0 OR downstreamCount > 0\nstored to make filtering easier"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"Searchable": {
|
|
44
|
+
"/time": {
|
|
45
|
+
"fieldName": "lineageFeaturesComputedAt",
|
|
46
|
+
"fieldType": "DATETIME"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"type": [
|
|
50
|
+
"null",
|
|
51
|
+
{
|
|
52
|
+
"type": "record",
|
|
53
|
+
"name": "AuditStamp",
|
|
54
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
55
|
+
"fields": [
|
|
56
|
+
{
|
|
57
|
+
"type": "long",
|
|
58
|
+
"name": "time",
|
|
59
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
41
60
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
61
|
+
{
|
|
62
|
+
"java": {
|
|
63
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
64
|
+
},
|
|
65
|
+
"type": "string",
|
|
66
|
+
"name": "actor",
|
|
67
|
+
"doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
|
|
68
|
+
"Urn": "Urn"
|
|
50
69
|
},
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
{
|
|
71
|
+
"java": {
|
|
72
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
73
|
+
},
|
|
74
|
+
"type": [
|
|
75
|
+
"null",
|
|
76
|
+
"string"
|
|
77
|
+
],
|
|
78
|
+
"name": "impersonator",
|
|
79
|
+
"default": null,
|
|
80
|
+
"doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
|
|
81
|
+
"Urn": "Urn"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": [
|
|
85
|
+
"null",
|
|
86
|
+
"string"
|
|
87
|
+
],
|
|
88
|
+
"name": "message",
|
|
89
|
+
"default": null,
|
|
90
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
|
|
94
|
+
}
|
|
95
|
+
],
|
|
72
96
|
"name": "computedAt",
|
|
97
|
+
"default": null,
|
|
73
98
|
"doc": "Record of when and how lineage features were computed."
|
|
74
99
|
}
|
|
75
100
|
]
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "logicalParent"
|
|
5
|
+
},
|
|
6
|
+
"name": "LogicalParent",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.logical",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Relationship": {
|
|
11
|
+
"/destinationUrn": {
|
|
12
|
+
"createdActor": "parent/created/actor",
|
|
13
|
+
"createdOn": "parent/created/time",
|
|
14
|
+
"entityTypes": [
|
|
15
|
+
"dataset",
|
|
16
|
+
"schemaField"
|
|
17
|
+
],
|
|
18
|
+
"name": "PhysicalInstanceOf",
|
|
19
|
+
"properties": "parent/properties",
|
|
20
|
+
"updatedActor": "parent/lastModified/actor",
|
|
21
|
+
"updatedOn": "parent/lastModified/time"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"Searchable": {
|
|
25
|
+
"/destinationUrn": {
|
|
26
|
+
"addToFilters": true,
|
|
27
|
+
"fieldName": "logicalParent",
|
|
28
|
+
"fieldType": "URN",
|
|
29
|
+
"filterNameOverride": "Physical Instance Of",
|
|
30
|
+
"hasValuesFieldName": "hasLogicalParent",
|
|
31
|
+
"queryByDefault": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"type": [
|
|
35
|
+
"null",
|
|
36
|
+
{
|
|
37
|
+
"type": "record",
|
|
38
|
+
"name": "Edge",
|
|
39
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
40
|
+
"fields": [
|
|
41
|
+
{
|
|
42
|
+
"java": {
|
|
43
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
44
|
+
},
|
|
45
|
+
"type": [
|
|
46
|
+
"null",
|
|
47
|
+
"string"
|
|
48
|
+
],
|
|
49
|
+
"name": "sourceUrn",
|
|
50
|
+
"default": null,
|
|
51
|
+
"doc": "Urn of the source of this relationship edge.\nIf not specified, assumed to be the entity that this aspect belongs to.",
|
|
52
|
+
"Urn": "Urn"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"java": {
|
|
56
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
57
|
+
},
|
|
58
|
+
"type": "string",
|
|
59
|
+
"name": "destinationUrn",
|
|
60
|
+
"doc": "Urn of the destination of this relationship edge.",
|
|
61
|
+
"Urn": "Urn"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": [
|
|
65
|
+
"null",
|
|
66
|
+
{
|
|
67
|
+
"type": "record",
|
|
68
|
+
"name": "AuditStamp",
|
|
69
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
70
|
+
"fields": [
|
|
71
|
+
{
|
|
72
|
+
"type": "long",
|
|
73
|
+
"name": "time",
|
|
74
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"java": {
|
|
78
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
79
|
+
},
|
|
80
|
+
"type": "string",
|
|
81
|
+
"name": "actor",
|
|
82
|
+
"doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
|
|
83
|
+
"Urn": "Urn"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"java": {
|
|
87
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
88
|
+
},
|
|
89
|
+
"type": [
|
|
90
|
+
"null",
|
|
91
|
+
"string"
|
|
92
|
+
],
|
|
93
|
+
"name": "impersonator",
|
|
94
|
+
"default": null,
|
|
95
|
+
"doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
|
|
96
|
+
"Urn": "Urn"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"type": [
|
|
100
|
+
"null",
|
|
101
|
+
"string"
|
|
102
|
+
],
|
|
103
|
+
"name": "message",
|
|
104
|
+
"default": null,
|
|
105
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"name": "created",
|
|
112
|
+
"default": null,
|
|
113
|
+
"doc": "Audit stamp containing who created this relationship edge and when"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": [
|
|
117
|
+
"null",
|
|
118
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
119
|
+
],
|
|
120
|
+
"name": "lastModified",
|
|
121
|
+
"default": null,
|
|
122
|
+
"doc": "Audit stamp containing who last modified this relationship edge and when"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"type": [
|
|
126
|
+
"null",
|
|
127
|
+
{
|
|
128
|
+
"type": "map",
|
|
129
|
+
"values": "string"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"name": "properties",
|
|
133
|
+
"default": null,
|
|
134
|
+
"doc": "A generic properties bag that allows us to store specific information on this graph edge."
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"doc": "A common structure to represent all edges to entities when used inside aspects as collections\nThis ensures that all edges have common structure around audit-stamps and will support PATCH, time-travel automatically."
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"name": "parent",
|
|
141
|
+
"default": null
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"doc": "Relates a physical asset to a logical model."
|
|
145
|
+
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"glossaryTerms",
|
|
9
9
|
"editableMlFeatureProperties",
|
|
10
10
|
"domains",
|
|
11
|
+
"applications",
|
|
11
12
|
"mlFeatureProperties",
|
|
12
13
|
"ownership",
|
|
13
14
|
"institutionalMemory",
|
|
@@ -47,7 +48,9 @@
|
|
|
47
48
|
"fieldNameAliases": [
|
|
48
49
|
"_entityName"
|
|
49
50
|
],
|
|
50
|
-
"fieldType": "WORD_GRAM"
|
|
51
|
+
"fieldType": "WORD_GRAM",
|
|
52
|
+
"searchLabel": "entityName",
|
|
53
|
+
"searchTier": 1
|
|
51
54
|
},
|
|
52
55
|
"type": "string",
|
|
53
56
|
"name": "name",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"glossaryTerms",
|
|
9
9
|
"editableMlFeatureTableProperties",
|
|
10
10
|
"domains",
|
|
11
|
+
"applications",
|
|
11
12
|
"mlFeatureTableProperties",
|
|
12
13
|
"ownership",
|
|
13
14
|
"institutionalMemory",
|
|
@@ -56,7 +57,9 @@
|
|
|
56
57
|
"fieldNameAliases": [
|
|
57
58
|
"_entityName"
|
|
58
59
|
],
|
|
59
|
-
"fieldType": "WORD_GRAM"
|
|
60
|
+
"fieldType": "WORD_GRAM",
|
|
61
|
+
"searchLabel": "entityName",
|
|
62
|
+
"searchTier": 1
|
|
60
63
|
},
|
|
61
64
|
"type": "string",
|
|
62
65
|
"name": "name",
|
|
@@ -34,7 +34,9 @@
|
|
|
34
34
|
"fieldNameAliases": [
|
|
35
35
|
"_entityName"
|
|
36
36
|
],
|
|
37
|
-
"fieldType": "WORD_GRAM"
|
|
37
|
+
"fieldType": "WORD_GRAM",
|
|
38
|
+
"searchLabel": "entityName",
|
|
39
|
+
"searchTier": 1
|
|
38
40
|
},
|
|
39
41
|
"type": "string",
|
|
40
42
|
"name": "name",
|
|
@@ -60,6 +62,8 @@
|
|
|
60
62
|
"QA": "Designates quality assurance fabrics",
|
|
61
63
|
"RVW": "Designates review fabrics",
|
|
62
64
|
"SANDBOX": "Designates sandbox fabrics",
|
|
65
|
+
"SBX": "Alternative spelling for sandbox",
|
|
66
|
+
"SIT": "System Integration Testing",
|
|
63
67
|
"STG": "Designates staging fabrics",
|
|
64
68
|
"TEST": "Designates testing fabrics",
|
|
65
69
|
"TST": "Alternative Test spelling",
|
|
@@ -81,6 +85,8 @@
|
|
|
81
85
|
"RVW",
|
|
82
86
|
"PRD",
|
|
83
87
|
"TST",
|
|
88
|
+
"SIT",
|
|
89
|
+
"SBX",
|
|
84
90
|
"SANDBOX"
|
|
85
91
|
],
|
|
86
92
|
"doc": "Fabric group type"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"glossaryTerms",
|
|
9
9
|
"editableMlModelGroupProperties",
|
|
10
10
|
"domains",
|
|
11
|
+
"applications",
|
|
11
12
|
"mlModelGroupProperties",
|
|
12
13
|
"ownership",
|
|
13
14
|
"status",
|
|
@@ -45,10 +46,13 @@
|
|
|
45
46
|
"Searchable": {
|
|
46
47
|
"boostScore": 10.0,
|
|
47
48
|
"enableAutocomplete": true,
|
|
49
|
+
"fieldName": "id",
|
|
48
50
|
"fieldNameAliases": [
|
|
49
51
|
"_entityName"
|
|
50
52
|
],
|
|
51
|
-
"fieldType": "WORD_GRAM"
|
|
53
|
+
"fieldType": "WORD_GRAM",
|
|
54
|
+
"searchLabel": "entityName",
|
|
55
|
+
"searchTier": 1
|
|
52
56
|
},
|
|
53
57
|
"type": "string",
|
|
54
58
|
"name": "name",
|
|
@@ -72,6 +76,8 @@
|
|
|
72
76
|
"QA": "Designates quality assurance fabrics",
|
|
73
77
|
"RVW": "Designates review fabrics",
|
|
74
78
|
"SANDBOX": "Designates sandbox fabrics",
|
|
79
|
+
"SBX": "Alternative spelling for sandbox",
|
|
80
|
+
"SIT": "System Integration Testing",
|
|
75
81
|
"STG": "Designates staging fabrics",
|
|
76
82
|
"TEST": "Designates testing fabrics",
|
|
77
83
|
"TST": "Alternative Test spelling",
|
|
@@ -93,6 +99,8 @@
|
|
|
93
99
|
"RVW",
|
|
94
100
|
"PRD",
|
|
95
101
|
"TST",
|
|
102
|
+
"SIT",
|
|
103
|
+
"SBX",
|
|
96
104
|
"SANDBOX"
|
|
97
105
|
],
|
|
98
106
|
"doc": "Fabric group type"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"glossaryTerms",
|
|
9
9
|
"editableMlModelProperties",
|
|
10
10
|
"domains",
|
|
11
|
+
"applications",
|
|
11
12
|
"ownership",
|
|
12
13
|
"mlModelProperties",
|
|
13
14
|
"intendedUse",
|
|
@@ -57,10 +58,13 @@
|
|
|
57
58
|
"Searchable": {
|
|
58
59
|
"boostScore": 10.0,
|
|
59
60
|
"enableAutocomplete": true,
|
|
61
|
+
"fieldName": "id",
|
|
60
62
|
"fieldNameAliases": [
|
|
61
63
|
"_entityName"
|
|
62
64
|
],
|
|
63
|
-
"fieldType": "WORD_GRAM"
|
|
65
|
+
"fieldType": "WORD_GRAM",
|
|
66
|
+
"searchLabel": "entityName",
|
|
67
|
+
"searchTier": 1
|
|
64
68
|
},
|
|
65
69
|
"type": "string",
|
|
66
70
|
"name": "name",
|
|
@@ -86,6 +90,8 @@
|
|
|
86
90
|
"QA": "Designates quality assurance fabrics",
|
|
87
91
|
"RVW": "Designates review fabrics",
|
|
88
92
|
"SANDBOX": "Designates sandbox fabrics",
|
|
93
|
+
"SBX": "Alternative spelling for sandbox",
|
|
94
|
+
"SIT": "System Integration Testing",
|
|
89
95
|
"STG": "Designates staging fabrics",
|
|
90
96
|
"TEST": "Designates testing fabrics",
|
|
91
97
|
"TST": "Alternative Test spelling",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"RVW",
|
|
108
114
|
"PRD",
|
|
109
115
|
"TST",
|
|
116
|
+
"SIT",
|
|
117
|
+
"SBX",
|
|
110
118
|
"SANDBOX"
|
|
111
119
|
],
|
|
112
120
|
"doc": "Fabric group type"
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"boostScore": 10.0,
|
|
88
88
|
"enableAutocomplete": true,
|
|
89
89
|
"fieldType": "WORD_GRAM",
|
|
90
|
-
"queryByDefault": true
|
|
90
|
+
"queryByDefault": true,
|
|
91
|
+
"searchTier": 1
|
|
91
92
|
},
|
|
92
93
|
"type": [
|
|
93
94
|
"null",
|
|
@@ -100,7 +101,8 @@
|
|
|
100
101
|
{
|
|
101
102
|
"Searchable": {
|
|
102
103
|
"fieldType": "TEXT",
|
|
103
|
-
"hasValuesFieldName": "hasDescription"
|
|
104
|
+
"hasValuesFieldName": "hasDescription",
|
|
105
|
+
"searchTier": 2
|
|
104
106
|
},
|
|
105
107
|
"type": [
|
|
106
108
|
"null",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"glossaryTerms",
|
|
9
9
|
"editableMlPrimaryKeyProperties",
|
|
10
10
|
"domains",
|
|
11
|
+
"applications",
|
|
11
12
|
"mlPrimaryKeyProperties",
|
|
12
13
|
"ownership",
|
|
13
14
|
"institutionalMemory",
|
|
@@ -43,7 +44,9 @@
|
|
|
43
44
|
"fieldNameAliases": [
|
|
44
45
|
"_entityName"
|
|
45
46
|
],
|
|
46
|
-
"fieldType": "WORD_GRAM"
|
|
47
|
+
"fieldType": "WORD_GRAM",
|
|
48
|
+
"searchLabel": "entityName",
|
|
49
|
+
"searchTier": 1
|
|
47
50
|
},
|
|
48
51
|
"type": "string",
|
|
49
52
|
"name": "name",
|