Is it possible to execute multiple file transmissions to the same mainframe host in parallel? In other words can I do something like:
cozcontrol start -t user@hostname.com
todsn //DATA.SET.ONE < file.one &
todsn //DATA.SET.TWO < file.two &
<wait until the todsn commands are done >
cozcontrol stop
(note: the above is just for illustration)
Thanks,
Mark Mulconry
Parallel Processing
Re: Parallel Processing
Sure. Have you tried it and had a problem?
You can use multiple concurrent processes in all kinds of ways.
For example:
You can use multiple concurrent processes in all kinds of ways.
For example:
This is running fromdsn, grep, and todsn in three separate processes concurrently, connected by a pipe.cozcontrol start -t -ssh user@host.com
fromdsn //data.set.one | grep "something" | todsn //data.set.one.subset
Re: Parallel Processing
We're trying it, the issues we've run into were from issuing the cozcontrol stop before the forked processes were finished. We found a way to do that now so we're redoing our script and will continue testing.
Just wanted to make sure there weren't any issues from the product perspective...
Thanks for the prompt reply!
Just wanted to make sure there weren't any issues from the product perspective...
Thanks for the prompt reply!