acryl-datahub 0.15.0.1rc17__py3-none-any.whl → 0.15.0.2rc1__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-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/METADATA +2378 -2378
- {acryl_datahub-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/RECORD +16 -16
- datahub/__init__.py +1 -1
- datahub/cli/cli_utils.py +12 -1
- datahub/emitter/rest_emitter.py +125 -84
- datahub/ingestion/graph/client.py +14 -11
- datahub/ingestion/graph/config.py +1 -1
- datahub/ingestion/source/aws/glue.py +52 -35
- datahub/ingestion/source/bigquery_v2/bigquery.py +2 -0
- datahub/ingestion/source/bigquery_v2/bigquery_config.py +8 -0
- datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py +11 -7
- datahub/ingestion/source/snowflake/snowflake_config.py +8 -0
- datahub/ingestion/source/snowflake/snowflake_v2.py +2 -0
- {acryl_datahub-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/top_level.txt +0 -0
|
@@ -221,6 +221,14 @@ class SnowflakeV2Config(
|
|
|
221
221
|
default=False,
|
|
222
222
|
description="If enabled, uses the new queries extractor to extract queries from snowflake.",
|
|
223
223
|
)
|
|
224
|
+
include_queries: bool = Field(
|
|
225
|
+
default=True,
|
|
226
|
+
description="If enabled, generate query entities associated with lineage edges. Only applicable if `use_queries_v2` is enabled.",
|
|
227
|
+
)
|
|
228
|
+
include_query_usage_statistics: bool = Field(
|
|
229
|
+
default=True,
|
|
230
|
+
description="If enabled, generate query popularity statistics. Only applicable if `use_queries_v2` is enabled.",
|
|
231
|
+
)
|
|
224
232
|
|
|
225
233
|
lazy_schema_resolver: bool = Field(
|
|
226
234
|
default=True,
|
|
@@ -528,6 +528,8 @@ class SnowflakeV2Source(
|
|
|
528
528
|
include_lineage=self.config.include_table_lineage,
|
|
529
529
|
include_usage_statistics=self.config.include_usage_stats,
|
|
530
530
|
include_operations=self.config.include_operational_stats,
|
|
531
|
+
include_queries=self.config.include_queries,
|
|
532
|
+
include_query_usage_statistics=self.config.include_query_usage_statistics,
|
|
531
533
|
user_email_pattern=self.config.user_email_pattern,
|
|
532
534
|
),
|
|
533
535
|
structured_report=self.report,
|
|
File without changes
|
{acryl_datahub-0.15.0.1rc17.dist-info → acryl_datahub-0.15.0.2rc1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|