Page 1 of 1

Auto Partitioning

Posted: Wed Aug 20, 2008 3:19 pm
by kishorenvkb
Hello,

How can we find that what partition method was used during an execution if the "Auto" Partition is used in the stages?

Thanks

Posted: Wed Aug 20, 2008 3:21 pm
by mikegohl
Read the Job Score.

Posted: Wed Aug 20, 2008 3:49 pm
by ray.wurlod
Or know the rules. Auto gives:
  • Round Robin if the link is from sequential to parallel or from parallel to sequential.

    Same if the link is from parallel to parallel with the same degree of parallelism, or Round Robin otherwise.

    Entire if the link is a reference input link to a Lookup stage.

    Hash if the link is an input link to a stage that requires key-partitioned input.

    DB2 if the link is an input link to a DB2/UDB Enterprise stage.

Posted: Wed Aug 20, 2008 4:15 pm
by kishorenvkb
Thanks