Page 1 of 1

Parallel jobs

Posted: Fri Jul 12, 2013 10:07 am
by Rajendra_89
Hi all,
I have successfully installed DataStage Server Edition version 8.1 on my Windows 2003 machine
But I am not able create Parallel jobs, only Server and Sequence jobs are available

Can anybody please tell me If I can make Parallel jobs in Server Edition?

If yes then how?

Thanks in Advance!

Posted: Fri Jul 12, 2013 10:28 am
by chulett
Nope.

Posted: Sat Jul 13, 2013 2:18 am
by Rajendra_89
Hi Chulett ,

Thanks for the answer... I guess I will have to dig the ways to resolve my project issues

Posted: Sat Jul 13, 2013 3:33 pm
by ray.wurlod
You can simulate parallel jobs using multi-instance server jobs, and/or using Link Partitioner stages within a server jobs.

Posted: Mon Jul 15, 2013 8:36 am
by Rajendra_89
Hi Ray,

Thanks for the suggestion
Would like to guide me more on this ?

Posted: Mon Jul 15, 2013 4:52 pm
by ray.wurlod
Read about these techniques in the Server Job Developer's Guide.

With multi-instance jobs you will need to implement a technique for splitting your data over the available instances. For example, where the source is a database table, use a parameterized WHERE clause to specify separate subsets of rows for separate instances.

The Link Partitioner stage does the same kind of thing within a job; input rows are split using a partitioning algorithm that you specify, onto separate output links.