| |
|
| java.lang.Object org.griphyn.cPlanner.cluster.Abstract org.griphyn.cPlanner.cluster.Vertical
Vertical | public class Vertical extends Abstract (Code) | | The vertical cluster, that extends the Default clusterer and topologically
sorts the partition before clustering the jobs into aggregated jobs.
author: Karan Vahi version: $Revision: 50 $ |
Field Summary | |
final public static String | DESCRIPTION A short description about the partitioner. |
Constructor Summary | |
public | Vertical() The default constructor. |
Method Summary | |
public String | description() Returns a textual description of the transfer implementation. | public void | determineInputOutputFiles(AggregatedJob job) Determine the input and output files of the job on the basis of the
order of the constituent jobs in the AggregatedJob. | public List | order(Partition p) Returns the nodes in the partition as a List in the topologically sorted
order.
Parameters: p - the partition whose nodes have to be ordered. |
DESCRIPTION | final public static String DESCRIPTION(Code) | | A short description about the partitioner.
|
Vertical | public Vertical()(Code) | | The default constructor.
|
description | public String description()(Code) | | Returns a textual description of the transfer implementation.
a short textual description |
determineInputOutputFiles | public void determineInputOutputFiles(AggregatedJob job)(Code) | | Determine the input and output files of the job on the basis of the
order of the constituent jobs in the AggregatedJob.
The input and output files are determined on the basis of topologically
sorted order of the constituent jobs.
Parameters: job - the AggregatedJob throws: ClustererException - in case of error. |
order | public List order(Partition p) throws ClustererException(Code) | | Returns the nodes in the partition as a List in the topologically sorted
order.
Parameters: p - the partition whose nodes have to be ordered. an ordered List of String objects that are the ID'sof the nodes. throws: ClustererException - in case of error. |
|
|
|