Hi! Is it possible to define Dagster type for outp...
# ask-community
m
Hi! Is it possible to define Dagster type for output and not fail the op/asset on violation? I would like to get violations as a metrics rather than pipeline stop.
t
Hi! How would you like the get the violations stored and what would you expect to happen if the op/asset would fail the violation?
m
I would like them to be stored as metrics and op to succeed. I.e. data type age with constraint
<200
where data with value
1000
would violate it, the op still succeeds, but exposes number of failed violations. Maybe the data type is the wrong tool..