Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Latest compatible version of hadoop and hbase

I have to install hadoop and hbase on 4 machines.
I have found latest version of hadoop-2.6.0 and hbase-0.98.9-hadoop2-bin.

1)Are they compatible?
2)How I should install hbase and hadoop on 4 machines i.e. how many masters and slaves etc.?

like image 505
Hafiz Muhammad Shafiq Avatar asked Dec 11 '22 01:12

Hafiz Muhammad Shafiq


1 Answers

Answering your questions :

  1. See the Hbase-Hadoop compatibility link . hbase-0.98.9 should support hadoop-2.6.0.

  2. You have two options

    • 1 master node and 3 slave nodes. (Since you have only 4 nodes this configuration would be suffice)

    • If you wanted to enabled HA, you can go for 2 master nodes and 2 slave nodes.

like image 158
SachinJ Avatar answered Jan 12 '23 14:01

SachinJ