Skip to content

Best practice for source row count anomaly detection #29

@MiConnell

Description

@MiConnell

The current implementation of source row count anomaly detection will error if the count is less than average by a defined threshold (defaulted at 5%). This currently only handles cases where source row counts are lower than average.
Averages can be skewed if 0 rows are loaded into a table that normally has millions of records, resulting in false positives.
What's the best way to check for true anomalies on source row counts?

  • outlier detection and removal in the test
  • using most recent successful run's row count
  • using something other than average, such as mode, by rounding each row count to the nearest thousand and taking the most common count, then comparing

Should we also allow for higher than average row counts via a variable that's defaulted to off?
i.e.
if {{ var('dbt_observability:error_high_row_counts', False) }} ...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions