Sultan Orazbayev
01/17/2022, 12:18 AMKevin Kho
Sultan Orazbayev
01/17/2022, 7:26 AMdask_jobqueue
(which supports SLURMCluster), but a bit unsure about the coordination for composite workflows (flow of flows).Anna Geller
Sultan Orazbayev
01/17/2022, 11:00 AMSultan Orazbayev
01/17/2022, 11:03 AMAnna Geller
with Flow(
FLOW_NAME,
storage=STORAGE,
run_config=KubernetesRun(
labels=["k8s"],
cpu_request=0.5,
memory_request="2Gi",
),
) as flow:
And for task run execution, you can use Dask. This would offload the heavy computation to Dask and only things like state changes would be executed on your flow run infrastructureAn Hoang
01/17/2022, 8:42 PMdask_flow.run()
inside the serial flow). You won't get detailed report on the dask tasks but if your flow/cluster is stable this can be an option. I usually only run the inner flow by itself only for debugging.Sultan Orazbayev
01/18/2022, 1:10 AM