Nutch 2.3 and HBase 1.0.0

2019-08-11 02:35发布

I try to implement nutch for a projet that will crawl millions urls and actually it seems to work with HBase 0.94 locally.

But the cluster in place is installed with HBase 1.0.0 and we didn't manage to make it works.

Is it actually possible to use nutch 2.3 with HBase 1.0.0 ?

Thanks for the answers.

标签: hbase nutch
1条回答
劳资没心,怎么记你
2楼-- · 2019-08-11 03:13

HBase0.94 and HBase1.0.0 are not backward compatible. So, if you have code compiled with HBase0.94 then it wont work out of box with HBase1.0.0 cluster. Just recompile your code with HBase1.0.0 and then it should work. You might need to do minor code changes in HBaseClient.

Also, HBase0.94 is not supported by HBase now.

查看更多
登录 后发表回答