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
|
@@ -267,6 +267,67 @@
|
|
|
267
267
|
"name": "version",
|
|
268
268
|
"default": null,
|
|
269
269
|
"doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": [
|
|
273
|
+
"null",
|
|
274
|
+
{
|
|
275
|
+
"type": "record",
|
|
276
|
+
"name": "AuditStamp",
|
|
277
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
278
|
+
"fields": [
|
|
279
|
+
{
|
|
280
|
+
"type": "long",
|
|
281
|
+
"name": "time",
|
|
282
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"java": {
|
|
286
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
287
|
+
},
|
|
288
|
+
"type": "string",
|
|
289
|
+
"name": "actor",
|
|
290
|
+
"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.",
|
|
291
|
+
"Urn": "Urn"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"java": {
|
|
295
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
296
|
+
},
|
|
297
|
+
"type": [
|
|
298
|
+
"null",
|
|
299
|
+
"string"
|
|
300
|
+
],
|
|
301
|
+
"name": "impersonator",
|
|
302
|
+
"default": null,
|
|
303
|
+
"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.",
|
|
304
|
+
"Urn": "Urn"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": [
|
|
308
|
+
"null",
|
|
309
|
+
"string"
|
|
310
|
+
],
|
|
311
|
+
"name": "message",
|
|
312
|
+
"default": null,
|
|
313
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
"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."
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"name": "aspectCreated",
|
|
320
|
+
"default": null,
|
|
321
|
+
"doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"type": [
|
|
325
|
+
"null",
|
|
326
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
327
|
+
],
|
|
328
|
+
"name": "aspectModified",
|
|
329
|
+
"default": null,
|
|
330
|
+
"doc": "When the aspect was last modified and the actor that performed the modification"
|
|
270
331
|
}
|
|
271
332
|
],
|
|
272
333
|
"doc": "Metadata associated with each metadata change that is processed by the system"
|
|
@@ -309,50 +370,7 @@
|
|
|
309
370
|
{
|
|
310
371
|
"type": [
|
|
311
372
|
"null",
|
|
312
|
-
|
|
313
|
-
"type": "record",
|
|
314
|
-
"name": "AuditStamp",
|
|
315
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
316
|
-
"fields": [
|
|
317
|
-
{
|
|
318
|
-
"type": "long",
|
|
319
|
-
"name": "time",
|
|
320
|
-
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"java": {
|
|
324
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
325
|
-
},
|
|
326
|
-
"type": "string",
|
|
327
|
-
"name": "actor",
|
|
328
|
-
"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.",
|
|
329
|
-
"Urn": "Urn"
|
|
330
|
-
},
|
|
331
|
-
{
|
|
332
|
-
"java": {
|
|
333
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
334
|
-
},
|
|
335
|
-
"type": [
|
|
336
|
-
"null",
|
|
337
|
-
"string"
|
|
338
|
-
],
|
|
339
|
-
"name": "impersonator",
|
|
340
|
-
"default": null,
|
|
341
|
-
"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.",
|
|
342
|
-
"Urn": "Urn"
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
"type": [
|
|
346
|
-
"null",
|
|
347
|
-
"string"
|
|
348
|
-
],
|
|
349
|
-
"name": "message",
|
|
350
|
-
"default": null,
|
|
351
|
-
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
352
|
-
}
|
|
353
|
-
],
|
|
354
|
-
"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."
|
|
355
|
-
}
|
|
373
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
356
374
|
],
|
|
357
375
|
"name": "created",
|
|
358
376
|
"default": null,
|
|
@@ -267,6 +267,67 @@
|
|
|
267
267
|
"name": "version",
|
|
268
268
|
"default": null,
|
|
269
269
|
"doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": [
|
|
273
|
+
"null",
|
|
274
|
+
{
|
|
275
|
+
"type": "record",
|
|
276
|
+
"name": "AuditStamp",
|
|
277
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
278
|
+
"fields": [
|
|
279
|
+
{
|
|
280
|
+
"type": "long",
|
|
281
|
+
"name": "time",
|
|
282
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"java": {
|
|
286
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
287
|
+
},
|
|
288
|
+
"type": "string",
|
|
289
|
+
"name": "actor",
|
|
290
|
+
"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.",
|
|
291
|
+
"Urn": "Urn"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"java": {
|
|
295
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
296
|
+
},
|
|
297
|
+
"type": [
|
|
298
|
+
"null",
|
|
299
|
+
"string"
|
|
300
|
+
],
|
|
301
|
+
"name": "impersonator",
|
|
302
|
+
"default": null,
|
|
303
|
+
"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.",
|
|
304
|
+
"Urn": "Urn"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": [
|
|
308
|
+
"null",
|
|
309
|
+
"string"
|
|
310
|
+
],
|
|
311
|
+
"name": "message",
|
|
312
|
+
"default": null,
|
|
313
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
"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."
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"name": "aspectCreated",
|
|
320
|
+
"default": null,
|
|
321
|
+
"doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"type": [
|
|
325
|
+
"null",
|
|
326
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
327
|
+
],
|
|
328
|
+
"name": "aspectModified",
|
|
329
|
+
"default": null,
|
|
330
|
+
"doc": "When the aspect was last modified and the actor that performed the modification"
|
|
270
331
|
}
|
|
271
332
|
],
|
|
272
333
|
"doc": "Metadata associated with each metadata change that is processed by the system"
|
|
@@ -161,19 +161,28 @@
|
|
|
161
161
|
"type": {
|
|
162
162
|
"type": "enum",
|
|
163
163
|
"symbolDocs": {
|
|
164
|
-
"INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly."
|
|
164
|
+
"INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly report.",
|
|
165
|
+
"USER_FEEDBACK": "An anomaly was reported by a user."
|
|
165
166
|
},
|
|
166
167
|
"name": "AnomalySourceType",
|
|
167
168
|
"namespace": "com.linkedin.pegasus2avro.anomaly",
|
|
168
169
|
"symbols": [
|
|
169
|
-
"INFERRED_ASSERTION_FAILURE"
|
|
170
|
+
"INFERRED_ASSERTION_FAILURE",
|
|
171
|
+
"USER_FEEDBACK"
|
|
170
172
|
]
|
|
171
173
|
},
|
|
172
174
|
"name": "type",
|
|
173
|
-
"doc": "
|
|
175
|
+
"doc": "How this feedback was provided."
|
|
174
176
|
},
|
|
175
177
|
{
|
|
176
178
|
"TimeseriesField": {},
|
|
179
|
+
"UrnValidation": {
|
|
180
|
+
"entityTypes": [
|
|
181
|
+
"assertion"
|
|
182
|
+
],
|
|
183
|
+
"exist": false,
|
|
184
|
+
"strict": true
|
|
185
|
+
},
|
|
177
186
|
"java": {
|
|
178
187
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
179
188
|
},
|
|
@@ -183,9 +192,19 @@
|
|
|
183
192
|
],
|
|
184
193
|
"name": "sourceUrn",
|
|
185
194
|
"default": null,
|
|
186
|
-
"doc": "Reference to an URN related to the source of an anomaly.\
|
|
195
|
+
"doc": "Reference to an URN related to the source of an anomaly.\nFor assertion monitors, this will contain the urn of the source Assertion.",
|
|
187
196
|
"Urn": "Urn"
|
|
188
197
|
},
|
|
198
|
+
{
|
|
199
|
+
"TimeseriesField": {},
|
|
200
|
+
"type": [
|
|
201
|
+
"null",
|
|
202
|
+
"long"
|
|
203
|
+
],
|
|
204
|
+
"name": "sourceEventTimestampMillis",
|
|
205
|
+
"default": null,
|
|
206
|
+
"doc": "The timestamp of the event that triggered the anomaly.\nFor assertion monitors, this will be the timestamp of the assertion run event."
|
|
207
|
+
},
|
|
189
208
|
{
|
|
190
209
|
"type": [
|
|
191
210
|
"null",
|
|
@@ -218,6 +237,32 @@
|
|
|
218
237
|
"name": "assertionMetric",
|
|
219
238
|
"default": null,
|
|
220
239
|
"doc": "The monitor metric associated with the anomaly, if generated from an assertion monitor (the norm)."
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"type": [
|
|
243
|
+
"null",
|
|
244
|
+
{
|
|
245
|
+
"type": "record",
|
|
246
|
+
"name": "OperationRange",
|
|
247
|
+
"namespace": "com.linkedin.pegasus2avro.anomaly",
|
|
248
|
+
"fields": [
|
|
249
|
+
{
|
|
250
|
+
"type": "long",
|
|
251
|
+
"name": "startTimestampMillis",
|
|
252
|
+
"doc": "The start timestamp of the operation in milliseconds since epoch."
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"type": "long",
|
|
256
|
+
"name": "endTimestampMillis",
|
|
257
|
+
"doc": "The end timestamp of the operation in milliseconds since epoch."
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"doc": "The time range of the anomalous operation."
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"name": "operationRange",
|
|
264
|
+
"default": null,
|
|
265
|
+
"doc": "The operation range associated with the anomaly, if generated from an assertion monitor (the norm).\nThis is specific to freshness assertions."
|
|
221
266
|
}
|
|
222
267
|
],
|
|
223
268
|
"doc": "Ad-hoc properties about an anomaly source."
|
|
@@ -225,10 +270,10 @@
|
|
|
225
270
|
],
|
|
226
271
|
"name": "properties",
|
|
227
272
|
"default": null,
|
|
228
|
-
"doc": "Additional properties about the source, for example which
|
|
273
|
+
"doc": "Additional properties about the source, for example which metric\nof an assertion generated the anomaly."
|
|
229
274
|
}
|
|
230
275
|
],
|
|
231
|
-
"doc": "Information about the source of an anomaly raised on an asset."
|
|
276
|
+
"doc": "Information about the source of feedback for an anomaly raised on an asset."
|
|
232
277
|
},
|
|
233
278
|
"name": "source",
|
|
234
279
|
"doc": "The source of an anomaly, i.e. how it was generated."
|
|
@@ -262,14 +307,14 @@
|
|
|
262
307
|
"doc": "A standard event timestamp"
|
|
263
308
|
},
|
|
264
309
|
"name": "created",
|
|
265
|
-
"doc": "
|
|
310
|
+
"doc": "@Deprecated: this matches the timestampMillis field in the TimeseriesAspectBase."
|
|
266
311
|
},
|
|
267
312
|
{
|
|
268
313
|
"TimeseriesField": {},
|
|
269
314
|
"type": "com.linkedin.pegasus2avro.common.TimeStamp",
|
|
270
315
|
"name": "lastUpdated",
|
|
271
|
-
"doc": "The time at which the
|
|
316
|
+
"doc": "The time at which the anomaly was last updated\n@Deprecated: this field is not used as this is an immutable log."
|
|
272
317
|
}
|
|
273
318
|
],
|
|
274
|
-
"doc": "
|
|
319
|
+
"doc": "A feedback log of anomalies detected by a monitor\nNOTE: this is an immutable log. The most recent entry for a given run can be used to determine the state of the anomaly."
|
|
275
320
|
}
|