acryl-datahub 1.1.0.5rc4__py3-none-any.whl → 1.1.0.5rc5__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 might be problematic. Click here for more details.
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/METADATA +2512 -2512
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/RECORD +20 -20
- datahub/_version.py +1 -1
- datahub/cli/check_cli.py +21 -4
- datahub/ingestion/api/decorators.py +14 -3
- datahub/ingestion/graph/client.py +71 -28
- datahub/ingestion/source/aws/glue.py +1 -1
- datahub/ingestion/source/common/subtypes.py +41 -0
- datahub/ingestion/source/dbt/dbt_common.py +1 -1
- datahub/ingestion/source/salesforce.py +6 -3
- datahub/ingestion/source/sql/athena.py +15 -3
- datahub/ingestion/source/sql/mssql/source.py +9 -0
- datahub/ingestion/source/sql/sql_common.py +3 -0
- datahub/ingestion/source/sql/teradata.py +4 -1
- datahub/ingestion/source/sql/vertica.py +8 -1
- datahub/ingestion/source/tableau/tableau.py +6 -1
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.0.5rc4.dist-info → acryl_datahub-1.1.0.5rc5.dist-info}/top_level.txt +0 -0
|
@@ -80,6 +80,7 @@ from datahub.ingestion.api.workunit import MetadataWorkUnit
|
|
|
80
80
|
from datahub.ingestion.source.common.subtypes import (
|
|
81
81
|
BIContainerSubTypes,
|
|
82
82
|
DatasetSubTypes,
|
|
83
|
+
SourceCapabilityModifier,
|
|
83
84
|
)
|
|
84
85
|
from datahub.ingestion.source.state.stale_entity_removal_handler import (
|
|
85
86
|
StaleEntityRemovalHandler,
|
|
@@ -867,10 +868,14 @@ def report_user_role(report: TableauSourceReport, server: Server) -> None:
|
|
|
867
868
|
@capability(
|
|
868
869
|
SourceCapability.USAGE_STATS,
|
|
869
870
|
"Dashboard/Chart view counts, enabled using extract_usage_stats config",
|
|
871
|
+
subtype_modifier=[
|
|
872
|
+
SourceCapabilityModifier.DASHBOARD,
|
|
873
|
+
SourceCapabilityModifier.CHART,
|
|
874
|
+
],
|
|
870
875
|
)
|
|
871
876
|
@capability(
|
|
872
877
|
SourceCapability.DELETION_DETECTION,
|
|
873
|
-
"Enabled by default
|
|
878
|
+
"Enabled by default via stateful ingestion.",
|
|
874
879
|
)
|
|
875
880
|
@capability(SourceCapability.OWNERSHIP, "Requires recipe configuration")
|
|
876
881
|
@capability(SourceCapability.TAGS, "Requires recipe configuration")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|