Replies: 1 comment 3 replies
-
Something like this ? @run_failure_sensor(request_job=my_job)
def my_failure_sensor(context: RunFailureSensorContext):
context.log.debug("Run failed ") You can get partition information from context. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I frequently have the need to perform large single-run backfills that take significant amounts of time. Is there a way to report an error for an individual partition without causing the entire backfill run to fail? I would like to be able to continue processing the remaining partitions, even if a single one has an issue.
Beta Was this translation helpful? Give feedback.
All reactions