Airflow - Skip future task instance without making changes to dag file
问题 I have a DAG 'abc' scheduled to run every day at 7 AM CST and there is task 'xyz' in that DAG. For some reason, I do not want to run one of the tasks 'xyz' for tomorrow's instance. How can I skip that particular task instance? I do not want to make any changes to code as I do not have access to Prod code and the task is in Prod environment now. Is there any way to do that using command line ? Appreciate any help on this. 回答1: You can mark the unwanted tasks as succeeded using the run command.