Commit 66eb017e authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

feat(dag): 为所有DAG配置添加超时设置

parent 39a9f352
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -41,10 +41,13 @@ submission:
      value: "trilegal_093"
    extra_kwargs:
      value: "{}"

dag_timeout_hours: 15
# 容器任务定义(按 dependencies 串联)
tasks:
  - name: QC0
    image: csst-cpic-l1-qc0
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1
+3 −0
Original line number Diff line number Diff line
@@ -42,10 +42,13 @@ submission:
      value: "trilegal_093"
    extra_kwargs:
      value: "{}"

dag_timeout_hours: 15
# 容器任务定义(按 dependencies 串联)
tasks:
  - name: CPIC
    image: csst-cpic-l1
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1
+3 −0
Original line number Diff line number Diff line
@@ -41,9 +41,12 @@ submission:
      value: "trilegal_093"
    extra_kwargs:
      value: "{}"

dag_timeout_hours: 15
# 容器任务定义
tasks:
  - name: ECHO
    image: csst-echo
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1
+4 −0
Original line number Diff line number Diff line
@@ -42,16 +42,20 @@ submission:
      value: "trilegal_093"
    extra_kwargs:
      value: "{}"

dag_timeout_hours: 15
# 容器任务定义(按 dependencies 串联)
tasks:
  - name: L1
    image: csst-hstdm-l1
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1


  - name: L2
    image: csst-hstdm-l2
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1
    dependencies: [L1]
+3 −0
Original line number Diff line number Diff line
@@ -42,10 +42,13 @@ submission:
      value: "trilegal_093"
    extra_kwargs:
      value: "{}"

dag_timeout_hours: 15
# 容器任务定义(按 dependencies 串联)
tasks:
  - name: L1
    image: csst-ifs-l1
    command: ["run", "{{ params.input }}"]
    execution_timeout_hours: 5
    pool_slots: 1
Loading