-1

I am getting the below error, while I am trying to install Spring XD on YARN.

Error executing a spring application; nested exception is org.springframework.yarn.YarnSystemException: 
Call From c01dfobi43.vcac.dc1.dsghost.net/100.98.226.45 to c01dfobi41.vcac.dc1.dsghost.net:8032 failed on connection exception: 
java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused; 
nested exception is java.net.ConnectException: 
Call From c01dfobi43.vcac.dc1.dsghost.net/100.98.226.45 to c01dfobi41.vcac.dc1.dsghost.net:8032 failed on connection exception: 
java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused

Not sure where I am committing a mistake. Also do we need to install Spring XD Yarn on all nodes? It would be great if you can share any documentation mentioned explicitly for YARN.

Manjunath Ballur
  • 6,287
  • 3
  • 37
  • 48
  • Did you follow the instructions here - http://docs.spring.io/spring-xd/docs/1.1.1.RELEASE/reference/html/#running-on-YARN – Thomas Risberg Mar 30 '15 at 13:50
  • Hi Tom, Thanks for responding. I am seeing my applications getting run on YARN however when i am asking for admininfo its not returning admin details. Appreciate your help! – Bhanu-Bigdata Developer Apr 01 '15 at 09:44

1 Answers1

1

I am going to assume that c01dfobi41.vcac.dc1.dsghost.net:8032 is a ResourceManager host, I am also going to assume that based on your comment stating that yarn applications do run, you have more then one. In that case what may be happening (and I see this all the time) is that your yarn client attempts to contact the resource manager by looking it up in yarn-site.xml, it picks the first one and gets ConnectionRefused as the standby resource manager does not listen on its RPC port, it moves on to the next one and succeeds. If this is the case this is not a fatal error and can be ignored.

pu239ppy
  • 129
  • 1
  • 9