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.

@@ -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,