airflow.models.taskinstancekey

模块内容

TaskInstanceKey

用于标识任务实例的键。

class airflow.models.taskinstancekey.TaskInstanceKey[源代码]

基类:NamedTuple

用于标识任务实例的键。

property primary: tuple[str, str, str, int][源代码]

返回键的任务实例主键部分。

property reduced: TaskInstanceKey[源代码]

通过将尝试次数减 1 来重新生成键,以匹配内存中的信息。

property key: TaskInstanceKey[源代码]

为了与 TaskInstance 兼容 API。

返回 self

dag_id: str[源代码]
task_id: str[源代码]
run_id: str[源代码]
try_number: int = 1[源代码]
map_index: int[源代码]
with_try_number(try_number)[源代码]

返回具有提供的 try_number 的 TaskInstanceKey。

classmethod from_dict(dictionary)[源代码]

从字典创建 TaskInstanceKey。

此条目是否有帮助?