Page 1 of 1

Server jobs to include Parallelism Conept

Posted: Thu Jul 10, 2008 6:37 am
by siva7143
Is their any possible way to convert an Datastage Server Job to parallel extender, (ie., to implement the parallelism concept in server jobs).
:wink:

Posted: Thu Jul 10, 2008 7:15 am
by ray.wurlod
Pipeline parallelism is implemented using inter-process row buffering.
Partition parallelism is implemented using either Transformer or Link Partitioner stage to partition the data and Link Collector stage should you need to collect the parallel streams back to a single stream.

In short, in parallel jobs parallelism is automatic and scales without re-design or re-compilation. In server jobs parallelism must be designed in, and therefore can not be scaled differently without re-design.