Page 1 of 1

Node configuration

Posted: Mon May 21, 2007 11:49 pm
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

Posted: Tue May 22, 2007 1:26 am
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.

Posted: Tue May 22, 2007 11:36 am
by kommven
Think about rsh access Also called as login/rlogin.

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