Not a host:port pair when running balancer

2009-03-11 Thread Stuart White
I've been running hadoop-0.19.0 for several weeks successfully. Today, for the first time, I tried to run the balancer, and I'm receiving: java.lang.RuntimeException: Not a host:port pair: hvcwydev0601 In my hadoop-site.xml, I have this: fs.default.name hdfs://hvcwydev0601/ What do I nee

Re: Not a host:port pair when running balancer

2009-03-11 Thread Hairong Kuang
Please try using the port number 8020. Hairong On 3/11/09 9:42 AM, "Stuart White" wrote: > I've been running hadoop-0.19.0 for several weeks successfully. > > Today, for the first time, I tried to run the balancer, and I'm receiving: > > java.lang.RuntimeException: Not a host:port pair: hvcwy

Re: Not a host:port pair when running balancer

2009-03-11 Thread Konstantin Shvachko
Clarifying: port # is missing in your configuration, should be fs.default.name hdfs://hvcwydev0601:8020 where 8020 is your port number. --Konstantin Hairong Kuang wrote: Please try using the port number 8020. Hairong On 3/11/09 9:42 AM, "Stuart White" wrote: I've been running hado

Re: Not a host:port pair when running balancer

2009-03-11 Thread Doug Cutting
Konstantin Shvachko wrote: Clarifying: port # is missing in your configuration, should be fs.default.name hdfs://hvcwydev0601:8020 where 8020 is your port number. That's the work-around, but it's a bug. One should not need to specify the default port number (8020). Please file an issu

Re: Not a host:port pair when running balancer

2009-03-11 Thread Raghu Angadi
Doug Cutting wrote: Konstantin Shvachko wrote: Clarifying: port # is missing in your configuration, should be fs.default.name hdfs://hvcwydev0601:8020 where 8020 is your port number. That's the work-around, but it's a bug. One should not need to specify the default port number (8020).

Re: Not a host:port pair when running balancer

2009-03-11 Thread Konstantin Shvachko
This is not about the default port. The port was not specified at all in the original configuration. --Konstantin Doug Cutting wrote: Konstantin Shvachko wrote: Clarifying: port # is missing in your configuration, should be fs.default.name hdfs://hvcwydev0601:8020 where 8020 is your por

Re: Not a host:port pair when running balancer

2009-03-11 Thread Doug Cutting
Konstantin Shvachko wrote: The port was not specified at all in the original configuration. Since 0.18, the port is optional. If no port is specified, then 8020 is used. 8020 is the default port for namenodes. https://issues.apache.org/jira/browse/HADOOP-3317 Doug