Solução para a máquina local
Com base em parallel-ssh
# pssh -P --par 2 --hosts RemoteMachines /opt/RunJobs.sh
ou:
# pssh -i --par 2 --hosts RemoteMachines /opt/RunJobs.sh
Explicação dos parâmetros:
-P
--print
Display output as it arrives. This option is of limited usefulness
because output from different hosts are interleaved.
-i
--inline
Display standard output and standard error as each host completes.
-p parallelism
--par parallelism
Use the given number as the maximum number of concurrent connections.
-h host_file
--hosts host_file
Read hosts from the given host_file.
Com base em ansible
# ansible --forks 2 -i RemoteMachines '*' -m command -a /opt/RunJobs.sh
Explicação dos parâmetros:
-f NUM, --forks=NUM
Level of parallelism. NUM is specified as an integer, the default is 5.
-i PATH, --inventory=PATH
The PATH to the inventory hosts file, which defaults to /etc/ansible/hosts.
-m NAME, --module-name=NAME
Execute the module called NAME.
-a 'ARGUMENTS', --args='ARGUMENTS'
The ARGUMENTS to pass to the module.
The command module takes the command name followed by a list of space-delimited arguments. The given command will be executed on all selected nodes. It will not be processed through the shell, so variables like $HOME and operations like "<", ">", "|", and "&" will not work.
Você pode ler mais na Introdução aos comandos ad-hoc .
N.B. ansible não irá mudar para o próximo grupo de hosts até que todos os hosts atuais ("forks") estejam prontos, então seu paralelismo é menor que pssh ( pode haver uma maneira de aumentá-lo, mas eu não sei).
O arquivo RemoteMachines se parece com isso nos dois casos:
[email protected]
[email protected]
[email protected]
[email protected]
Solução para as máquinas remotas
Reescreva RunJobs.sh em algo parecido com isto:
find FileDirectory -name 'Input_*' -print0 | xargs -0 -P 2 -n 1 ./Executable
-0, --null
Input items are terminated by a null character instead of by
whitespace, and the quotes and backslash are not special (every
character is taken literally). Disables the end of file string,
which is treated like any other argument. Useful when input items
might contain white space, quote marks, or backslashes. The GNU find
-print0 option produces input suitable for this mode.
-P max-procs, --max-procs=max-procs
Run up to max-procs processes at a time; the default is 1. If
max-procs is 0, xargs will run as many processes as possible at a
time. Use the -n option or the -L option with -P; otherwise chances
are that only one exec will be done.
-n max-args, --max-args=max-args
Use at most max-args arguments per command line. Fewer than
max-args arguments will be used if the size (see the -s option) is
exceeded, unless the -x option is given, in which case xargs will
exit.
do nitro2k01 A solução baseada no GNU Parallel é mais poderosa, mas como você pode ver, o GNU xargs também não é muito ruim.