Not Null Check¶
Check: not-null-check
Purpose: Ensures that the specified columns contain at least one non-null value. Use this check to detect columns that are completely empty, which typically indicates a broken upstream feed or a deprecated field still present in the schema.
Typical Use Cases¶
- Detect columns that are fully empty due to upstream data issues or broken feeds.
- Identify deprecated schema fields that are no longer populated.
- Guard against silent data loss where an entire column goes missing after a pipeline change.