RowCountThreshold
class RowCountThreshold(row_count: RowCountSpec)
Bases: Threshold
Categories: dq-operator
A Fail threshold expressed as an absolute number of rows.
Examples
Fail as soon as one row is selected:
Fail(AnyFailed(), RowCountThreshold(1))
Parameters
parameter
row_countRowCountSpec (StrictInt)Row count that, when reached, triggers the failure; a non-negative whole number.