Hi there, I have a question around cancelling Conn...
# ask-community-for-troubleshooting
j
Hi there, I have a question around cancelling Connection runs: I have tried, unsuccessfully, with both Airflow as well as Dagster to cancel running connection job. Terminating a job in Dagster or a task in Airflow has no effect whatsoever in Airbyte. The only thing which seems to be working as intended but is not implemented by either
dagster-airbyte
nor the
apache-airflow-providers-airbyte
is to cancel a job via the Cancel job API endpoint via
/v1/jobs/cancel
, which works as intended. How do I cancel Airbyte jobs without falling back on the API?
It seems there is a
BaseOperator
method
on_kill
(tbf here) which was just not implemented at all in the Operator.
m
Both Operators in Airflow and Dagster are basic implementations, you can open a Github issue in Airflow and Dagster requesting to add this feature to the Operator
👍 1