Honza - You got to dig into those weird messages to understand the issue :)
This might be the one that could be causing the issue - *2013-09-21 17:40:04,138 INFO org.apache.zookeeper.server.* *NIOServerCnxn: Established session 0x141412cd9bc0006 with negotiated timeout 40000 for client /127.0.0.1:42451 <http://127.0.0.1:42451> 2013-09-21 17:40:05,229 WARN org.apache.zookeeper.server.* *NIOServerCnxn: EndOfStreamException: Unable to read additional data from client sessionid 0x141412cd9bc0004, likely client has closed socket* I guess you might have to increase the zookeeper timeout. If my assumption is correct, then you can try adding below property to your hbase-site.xml. <property> <name>zookeeper.session.timeout</name> <value>1200000</value> </property> Good luck! On Wed, Nov 13, 2013 at 10:14 AM, zhyl <[email protected]> wrote: > Hello, > > I have the same problem, and unfortunately it's not listed in the [1], did > you solve it ? > > Thank you. > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/hBase-Nutch-timeout-or-session-expiration-while-injecting-tp4091375p4100693.html > Sent from the Nutch - User mailing list archive at Nabble.com. >

