Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove(ingest/snowflake): Remove legacy snowflake lineage #8653

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,8 @@ class SnowflakeV2Config(
description="Whether `schema_pattern` is matched against fully qualified schema name `<catalog>.<schema>`.",
)

use_legacy_lineage_method: bool = Field(
default=False,
description=(
"Whether to use the legacy lineage computation method. "
"By default, uses new optimised lineage extraction method that requires less ingestion process memory. "
"Table-to-view and view-to-view column-level lineage are not supported with the legacy method."
),
_use_legacy_lineage_method_removed = pydantic_removed_field(
"use_legacy_lineage_method"
)

validate_upstreams_against_patterns: bool = Field(
Expand All @@ -113,7 +108,7 @@ class SnowflakeV2Config(
# This is required since access_history table does not capture whether the table was temporary table.
temporary_tables_pattern: List[str] = Field(
default=DEFAULT_TABLES_DENY_LIST,
description="[Advanced] Regex patterns for temporary tables to filter in lineage ingestion. Specify regex to match the entire table name in database.schema.table format. Defaults are to set in such a way to ignore the temporary staging tables created by known ETL tools. Not used if `use_legacy_lineage_method=True`",
description="[Advanced] Regex patterns for temporary tables to filter in lineage ingestion. Specify regex to match the entire table name in database.schema.table format. Defaults are to set in such a way to ignore the temporary staging tables created by known ETL tools.",
)

rename_upstreams_deny_pattern_to_temporary_table_pattern = pydantic_renamed_field(
Expand Down
Loading
Loading