You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Zlatin Balevsky (JIRA)" <ji...@apache.org> on 2010/01/27 01:01:34 UTC

[jira] Created: (HDFS-928) Ability to provide custom DatanodeProtocol implementation

Ability to provide custom DatanodeProtocol implementation
---------------------------------------------------------

                 Key: HDFS-928
                 URL: https://issues.apache.org/jira/browse/HDFS-928
             Project: Hadoop HDFS
          Issue Type: Wish
          Components: data-node
            Reporter: Zlatin Balevsky
            Priority: Trivial


This should make testing easier as well as allow users to provide their own RPC/namenode implementations.  It's pretty straightforward:

1. add 
interface DatanodeProtocolProvider {
  DatanodeProtocol getNameNode(Configuration conf);
}

2. add a config setting like "dfs.datanode.protocol.impl"

3. create a default implementation and copy/paste the RPC initialization code there

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