Questions about Configuration File

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
atul9806
Participant
Posts: 96
Joined: Tue Mar 06, 2012 6:12 am
Location: Pune
Contact:

Questions about Configuration File

Post by atul9806 »

Hi Techies
I have some question abt POOLS

Code: Select all

{
        node "node1"
        {
                fastname "s1054"
                pools "" "node1" "tutorial12" "compute_1"
                resource disk "/is/isdata/partn/01" {pools "" "sort"}
                resource disk "/is/isdata/partn/02" {pools ""}
                resource scratchdisk "/is/isdata/scrtch/01" {pools "" "sort"}
        }
        node "node2"
        {
                fastname "s1054"
                pools "" "node2" "sort"
                resource disk "/is/isdata/partn/03" {pools ""}
                resource scratchdisk "/is/isdata/scrtch/02" {pools ""}
        }
}
1) What is the diff b/w these
pools "" "node1" "tutorial12" "compute_1"
resource disk "/is/isdata/partn/01" {pools "" "sort"}
2) what is the diff b/w these
resource disk "/is/isdata/partn/03" {}
resource disk "/is/isdata/partn/03" {pools "sort"}
3)
pools "" "node1" "tutorial12" "compute_1"
As I know, last 2 are the job name, what does it means ?
~Atul Singh
<a href=http://www.datagenx.net>DataGenX</a> | <a href=https://www.linkedin.com/in/atulsinghds>LinkedIn</a>
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

1) The first is a node pool list, the second is a disk pool list.
2) The first disk pool list is empty, the second disk pool list is not empty.
3) This is a list containing four node pool names (the first is "", which is the default node pool). The other three names have no particular meaning.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
qt_ky
Premium Member
Premium Member
Posts: 2895
Joined: Wed Aug 03, 2011 6:16 am
Location: USA

Post by qt_ky »

Pool names are whatever you choose them to be; they are not tied or linked to job names.
Choose a job you love, and you will never have to work a day in your life. - Confucius
atul9806
Participant
Posts: 96
Joined: Tue Mar 06, 2012 6:12 am
Location: Pune
Contact:

Post by atul9806 »

Thanks
Guys, Can anyone other explain these coz I am not able to see the premium content as I am a standard user of this forum.
~Atul Singh
<a href=http://www.datagenx.net>DataGenX</a> | <a href=https://www.linkedin.com/in/atulsinghds>LinkedIn</a>
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Which part is still unclear?
-craig

"You can never have too many knives" -- Logan Nine Fingers
ntr
Participant
Posts: 110
Joined: Fri Dec 18, 2009 10:30 am
Location: pune

Post by ntr »

resource disk "/is/isdata/partn/03" {}
resource disk "/is/isdata/partn/03" {pools "sort"}


in the above both paths are same but one is empty and another one is

alocated for sort whats the use of giving of both paths


Thanks,
Post Reply