Timestamp Max¶
Check: timestamp-max-check
Purpose: Validates that values in timestamp columns do not exceed a defined maximum. A row fails if any selected column contains a timestamp after max_value.
Use the inclusive parameter to control boundary behavior:
inclusive: false(default) —value < max_valueinclusive: true—value <= max_value
Typical Use Cases¶
- Ensure that event or log timestamps do not lie in the future.
- Enforce a processing cutoff for pipelines that only consume data up to a specific point in time.
- Detect future-dated records produced by system clock errors or incorrect timezone handling.