Mobin Ranjbar
Mobin Ranjbar

Reputation: 1360

Nutch 2.3 has an old version of hbase jar in runtime/lib folder

Nutch 2.3 has an old version of hbase jar file(hbase-0.94.14.jar) in runtime/lib folder. I have downloaded hbase 0.94.14 but it does not start because of "Server IPC version 9 cannot communicate with client version 4". I can run Hbase 1.1.2 but jar file does not included.

How can I solve this?

Thanks

Upvotes: 1

Views: 158

Answers (1)

Diadistis
Diadistis

Reputation: 12174

You can't solve it by just replacing jars/bindings. The problem lies with Gora that uses pre-1.0 client that is incompatible with HBase 1.0+ versions. Your options right now are to either update Gora (not just the jars, coding is required), wait for an official update or downgrade your HBase server.

Related jira issue

HBase 1.0+ changes

Upvotes: 1

Related Questions