You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Kyle Ellrott (JIRA)" <ji...@apache.org> on 2010/04/07 01:24:33 UTC

[jira] Created: (MAPREDUCE-1678) Change org.apache.hadoop.mapreduce.Cluster methods to allow for extending

Change org.apache.hadoop.mapreduce.Cluster methods to allow for extending
-------------------------------------------------------------------------

                 Key: MAPREDUCE-1678
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-1678
             Project: Hadoop Map/Reduce
          Issue Type: New Feature
          Components: job submission
            Reporter: Kyle Ellrott
            Priority: Trivial


Change methods in org.apache.hadoop.mapreduce.Cluster from private to protected to allow extension of cluster.
If the method createRPCProxy is changed from private to protected, then alternate cluster implementations could be written that return other ClientProtocol's. 
For example, changing the protocol some custom implementation called SimpleClient
 
ie:
public class SimpleCluster extends Cluster {
  @Override
  protected ClientProtocol createRPCProxy(InetSocketAddress addr, Configuration conf) throws IOException {
    return new SimpleClient(conf);
  } 
}




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.