What is the meaning of EOF exceptions in hadoop namenode connections from hbase/filesystem?

后端 未结 2 569
北海茫月
北海茫月 2020-12-31 14:42

This is both a general question about java EOF exceptions, as well as Hadoop\'s EOF exception which is related to jar interoperability. Comments and answers on either topic

相关标签:
2条回答
  • 2020-12-31 15:19

    Regarding hadoop : I fixed the error ! You need to make sure the core-site.xml is serving to 0.0.0.0 instead of 127.0.0.1(localhost).

    If you get the EOF exception, it means that the port is not accessible externally on that ip, so there is no data to read between the hadoop client / server ipc.

    0 讨论(0)
  • 2020-12-31 15:22

    EOFException on a socket means there's no more data and the peer has closed the connection.

    0 讨论(0)
提交回复
热议问题