本帖最后由 观小益 于 2025-12-17 16:28 编辑
1、t_ds_process_instance 作业实例表,t_ds_task_instance 任务实例表
2、t_ds_process_instance status字段状态字典
SUBMITTED_SUCCESS(0, "submit success"),
RUNNING_EXEUTION(1, "running"),
READY_PAUSE(2, "ready pause"),
PAUSE(3, "pause"),
READY_STOP(4, "ready stop"),
STOP(5, "stop"),
FAILURE(6, "failure"),
SUCCESS(7, "success"),
NEED_FAULT_TOLERANCE(8, "need fault tolerance"),
KILL(9, "kill"),
WAITTING_THREAD(10, "waiting thread"),
WAITTING_DEPEND(11, "waiting depend node complete"),
VALIDATE_FAILURE(12, "validate failure"),
SUBMITTED_FAILURE(13, "submit failure"),
READY_STOP_BY_TIMEOUT(14, "ready stop by timeout"),
STOP_BY_TIMEOUT(15, "stop by timeout"),
QUEUEING(16, "queueing"),
WAITING_RETRY(17, "waiting retry"),
|