如何在Fabric中同时在不同主机上执行不同的长时间运行任务?

时间:2016-01-28 20:35:32

标签: python python-2.7 fabric

我对结构很新,我正在尝试创建一个启动三个不同服务器和一个客户端的脚本,但似乎它在第一个任务时停止了。这是我的代码:

env.user='userX'
env.roledefs = {
'client':['HostC'],
'id 0':['Host0'],
'id 1':['Host1'],
'id 2':['Host2']
}

def go():
execute(serve0)
execute(serve1)
execute(serve2)
execute(req)

@roles('id 0')
def serve0():
run('./go/bin/kvsd -id 0 -config-file ~/go/src/github.com/userX/kvs/kvsd/conf/config.ini')

@roles('id 1')
def serve1():
run('./go/bin/kvsd -id 1 -config-file ~/go/src/github.com/userX/kvs/kvsd/conf/config.ini')

@roles('id 2')
def serve2():
run('./go/bin/kvsd -id 2 -config-file ~/go/src/github.com/userX/kvs/kvsd/conf/config.ini')

@roles('client')
def req():
run('./go/bin/kvsc -config-file ~/go/src/github.com/userX/kvs/kvsc/config.ini')

我用“fab go”运行它,但这只会导致它执行serve0,它不会在没有中断的情况下停止,因此会阻止任何其他任务执行。有没有办法让它们并行运行?另外,有没有更好的方法将特定任务与特定主机绑定?

1 个答案:

答案 0 :(得分:0)

@parallel装饰器添加到您的函数中,它们将自动并行运行。更多详情:http://docs.fabfile.org/en/1.10/usage/parallel.html

从cli调用fabric时使用-H来标识要使用的主机。在任务中,您可以检查env字典,也可以使用@hosts装饰器指定在哪里运行。更多信息:http://docs.fabfile.org/en/1.10/usage/execution.html