goreman icon indicating copy to clipboard operation
goreman copied to clipboard

remote execution

Open korovkin opened this issue 8 years ago • 4 comments

i am thinking about using goreman as a controller for job executions.

for example this one would run two jobs locally -

j1: curl "www.google.com" | process
j2: curl "www.yahoo.com" | process

and this one would run the job on a remote machine:

j1: curl "www.google.com" | process
j2: ssh w1 'curl "www.yahoo.com" | process'

what's the best way to achieve that? also, is it possible to add handler for "on proc done" ? (so i can use that event in order to clean up / copy out the result of the proc)

korovkin avatar Apr 16 '17 21:04 korovkin

Do you mean sequencial processes with j1 to j2 ?

mattn avatar Jul 16 '23 15:07 mattn

it has been 5 years :)

i wrote this - https://github.com/korovkin/parallel

korovkin avatar Jul 17 '23 04:07 korovkin