gpt4 book ai didi

卡皮斯特拉诺 3 : Run task only on a single server from a pool of servers assigned a role

转载 作者:行者123 更新时间:2023-12-04 19:06:38 24 4
gpt4 key购买 nike

我有 20 台处于“网络”角色的服务器。我有一项任务只需要在其中一个上执行,因为更改会影响共享存储。我目前的解决方案是解决这个问题(如下)。寻找更好的方法,我没有大量的 ruby​​ 或 cap 经验。

task :checkout_project_properties do
num_runs = 0
on roles(:web), in: :sequence do
if num_runs > 0
abort('Only running on one server. Exiting')
end
execute("checkout-project-properties #{uc_stage} #{repo} #{branch}")
num_runs += 1
end
end

最佳答案

我假设您指的是您的生产配置,有这么多 Web 服务器。在这种情况下,您的 config/deploy/production.rb可能包含很多这样的行:

server 'web_1', roles: %w(web)
server 'web_2', roles: %w(web)
server 'web_3', roles: %w(web)
...

只需将其中一台服务器设为主服务器,它看起来像:

server 'web_1', roles: %w(web), primary: true
server 'web_2', roles: %w(web)
server 'web_3', roles: %w(web)
...

然后更改您的任务,使其看起来像这样:

task :checkout_project_properties do
on primary(:web) do
execute("checkout-project-properties #{uc_stage} #{repo} #{branch}")
end
end

关于卡皮斯特拉诺 3 : Run task only on a single server from a pool of servers assigned a role,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23095865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com