I know that with the -P tag or @parallel tag I can run the task in parallel on multiple hosts.
I am trying to perform several long tasks in parallel on the same host:
@task def task1():
How can I run task1, task2 and task3 in parallel on the same host using a tag. I know that I can run several processes with different tasks, but I am looking for a solution that includes a structure.
python parallel-processing fabric
Christian p
source share