Hi, is it possible to manipulate the status of op ...
# ask-community
i
Hi, is it possible to manipulate the status of op in a running job? Something like Airflow "mark as". E.g. mark a specific task as failed so that it will not be executed in that particular run
y
the statuses of ops are immutable. but you can
raise Failure
in an op. here’s an example: https://docs.dagster.io/concepts/ops-jobs-graphs/op-events#failures
if you just want to conditionally skip the op or its downstream, you can model the graph as conditional branching: https://docs.dagster.io/concepts/ops-jobs-graphs/graphs#with-conditional-branching