modellerUpdated 2026-05-04

Impact Analysis

What this covers

Live Impact drawer opened from Model Builder.

Impact analysis shows which downstream assets — dashboards, reports, ML pipelines, APIs, scheduled jobs — depend on your model's tables and columns. Before making a breaking change (renaming a column, dropping a table, changing a measure expression), impact analysis tells you what will break and who to notify. This article explains how to register downstream assets, how the source audit scanner works, and how to read the Impact panel.

Why impact analysis matters

Renaming a column in a semantic model is a safe operation inside Tessallite — the platform resolves it. But downstream consumers outside Tessallite (dashboards that hard-code column names, scripts that query via JDBC, ML pipelines that SELECT specific columns) will break silently. Impact analysis makes these invisible dependencies visible before you commit the change.

Two sources of dependency information

Manual tagging

You register downstream assets by hand. This is the primary method and gives the most control over what's tracked.

  1. Open the Impact panel in Model Builder (Toolbelt sidebar).
  2. Click Add Asset.
  3. Enter the asset details:
  1. Under Column Dependencies, select which specific columns this asset depends on.
  2. Click Save.

Source audit scanning

Tessallite can read query logs from the source database to discover which tables and columns are being queried. The scan finds references to your model's physical tables in the source's query history.

To run a scan:

  1. Open the Impact panel.
  2. Switch to the Source Audit tab.
  3. Click Scan. Tessallite queries the source's query log (e.g. pg_stat_statements for PostgreSQL, INFORMATION_SCHEMA.JOBS for BigQuery).
  4. Review the discovered references. Each entry shows the query pattern, frequency, and which columns were referenced.

Source audit scanning is supplementary — it can find consumers you forgot to tag manually, but it only works for sources that expose query logs.

Reading the Impact panel

Summary bar

Shows at a glance:

Downstream assets list

Each asset shows:

Click an asset to see its full column dependency list and edit it.

Source audit tab

Shows:

When to use impact analysis

Best practices

Related