goreman
goreman copied to clipboard
remote execution
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)
Do you mean sequencial processes with j1 to j2 ?
it has been 5 years :)
i wrote this - https://github.com/korovkin/parallel