何时在Airflow中将任务实例标记为State.REMOVED状态?当我使用for循环动态生成任务时,在执行一项任务后,其他任务将被删除,而不会再次恢复。
答案 0 :(得分:1)
当REMOVED
状态在数据库中找到关联的airflow.models.DagRun:verify_integrity
对象上不再存在的task_id
时,将由DAG
方法应用task_id
状态。如果您要动态构建具有不同1. the way to get value
$("option").attr("data-myid"); // 123
$("option").dataset.myid; // 123
2. the way to set value
$("option").attr("data-myid", "YOUR_VALUE"); // YOUR_VALUE
值的任务,则肯定会发生这种情况。