Node configuration

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
hamzaqk
Participant
Posts: 249
Joined: Tue Apr 17, 2007 5:50 am
Location: islamabad

Node configuration

Post by hamzaqk »

Hi all,

Is it possible to write a config file which has two nodes and each node pertains to two different servers.. that is

if i have two servers S1 and S2 .. can i write a config file ABC with nodes N1 and N2 .. where N1 has procesing power of and uses disk storage of S1 and N2 and processing power and uses disk strorage of S2

hope its made sence ..


cheerz
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Absolutely. What you are describing is an MPP configuration (read about this in the Manager Guide - the chapter on Configurations).

Code: Select all

/* Two nodes, two machines */
{
    node "N1"
    {
         fastname "S1"
         ...
    }
    node "N2"
    {
        fastname "S2"
        ...
    }
}
You will need to make sure that certain executables/libararies are available on all nodes.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
kommven
Charter Member
Charter Member
Posts: 125
Joined: Mon Jul 12, 2004 12:37 pm

Post by kommven »

Think about rsh access Also called as login/rlogin.

This will enable DataStage to invoke jobs from Primary System to secondary.
Post Reply