Решение для локальной машины
# pssh -P --par 2 --hosts RemoteMachines /opt/RunJobs.sh
или же:
# pssh -i --par 2 --hosts RemoteMachines /opt/RunJobs.sh
Объяснение параметров:
-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.
# ansible --forks 2 -i RemoteMachines '*' -m command -a /opt/RunJobs.sh
Объяснение параметров:
-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.
Командный модуль принимает имя команды, за которым следует список разделенных пробелами аргументов. Данная команда будет выполнена на всех выбранных узлах. Он не будет обрабатываться через оболочку, поэтому такие переменные, как $ HOME, и такие операции, как "<", ">", "|" и "&" не будут работать.
Вы можете прочитать больше в разделе Введение в специальные команды.
NB ansible не будет переключаться на следующую группу хостов, пока не будут выполнены все текущие хосты ("вилки"), поэтому его параллелизм ниже, чем у pssh (возможно, есть способ увеличить его, но я этого не знаю) ,
Файл RemoteMachines выглядит примерно так в обоих случаях:
root@maria-clone1.skynet.tld
root@maria-clone2.skynet.tld
root@maria-clone3.skynet.tld
root@maria-clone4.skynet.tld
Решение для удаленных машин
Перепишите RunJobs.sh примерно так:
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.
nitro2k01 «s решение на основе GNU Parallel является более мощным, но , как вы можете видеть, GNU xargs не так уж плохо.