Allow info server to be turned off/on by conf file
--------------------------------------------------
Key: HADOOP-349
URL: http://issues.apache.org/jira/browse/HADOOP-349
Project: Hadoop
Type: Improvement
Components: conf
Reporter: Barry Kaplan
Since I am using hadoop within my own servlet which is not Jetty, it would be nice to not
have to need Jetty to run my servlet. As such I propose adding an if statement/donf setting
at FSNamesystem:171 as such
if(conf.getBoolean("dfs.info.active",true)){
this.infoPort = conf.getInt("dfs.info.port", 50070);
this.infoServer = new StatusHttpServer("dfs", infoPort, false);
this.infoServer.start();
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|