|
2d
|
|
awarded | bash |
|
May
16 |
|
answered | Parallelizing a while loop with arrays read from a file in bash |
|
May
16 |
|
comment |
background jobs' garbled output Are you saying that your are not allowed to run a script that has proven to be of production quality, but you are allowed to run your own scripts? So if GNU Parallel had been written by you, then it would have been OK? The only situation where I can see that makes sense is if your organisation has a strict code audit with different people auditing and testing the code. For GNU Parallel I looked at other solutions for separating output; the common problem was that the half-line issue was never dealt with correctly. |
|
May
16 |
|
comment |
How to feed a large array of commands to GNU Parallel? The delimiter is the array element. So you can put anything in each element - no need to end with a ;. The primary difference is the command line length (which you clearly are aware of). But why not just try it out: Run some 'echo' commands that are of similar length and content as your real commands. That should make you feel more confident that it will work. |
|
May
16 |
|
comment |
How to feed a large array of commands to GNU Parallel? I can run command lines of 130KB, so if your command is < 130 char, you should be safe. But personally I would simply either pipe the commands to parallel (thus avoiding both any shell limit and a temporary file) or let parallel generate the commands. |
|
May
14 |
|
awarded | Notable Question |
|
May
14 |
|
awarded | Caucus |
|
May
13 |
|
revised |
How can I limit the rate of new outgoing ssh connections when using GNU parallel? --sshdelay now exists |
|
May
13 |
|
revised |
How to feed a large array of commands to GNU Parallel? Maybe what you want is a for loop? |
|
May
13 |
|
answered | How to feed a large array of commands to GNU Parallel? |
|
May
12 |
|
comment |
background jobs' garbled output Can you elaborate why a 10 seconds install of GNU Parallel (wget -O - pi.dk/3 | sh) will not work? Is it covered by: oletange.blogspot.dk/2013/04/why-not-install-gnu-parallel.html |
|
May
12 |
|
revised |
ssh: propagate signal to remote process added 19 characters in body |
|
May
12 |
|
asked | ssh: propagate signal to remote process |
|
May
12 |
|
awarded | Necromancer |
|
May
10 |
|
comment |
Parallel sed with group capture Read the section QUOTING in 'man parallel' |
|
May
10 |
|
comment |
GNU parallel not working at all --tollef will be retired 20140222 lists.gnu.org/archive/html/parallel/2013-02/msg00018.html It will be helpful if you already now let your frustration be known to your distribution maintainer, so that the default can be changed. |
|
May
7 |
|
comment |
Using maximum remote servers Post the output of 'head -n 1000 list_of_commands | parallel -D --eta --sshloginfile list_of_100_remote_computers.txt' to parallel@gnu.org |
|
May
6 |
|
accepted | Linux mdadm --grow RAID6: Something wrong - reshape aborted |
|
May
6 |
|
answered | Linux mdadm --grow RAID6: Something wrong - reshape aborted |
|
May
3 |
|
comment |
Using maximum remote servers How many jobs are there in list_of_commands? How many cores do each remote server have? |