In Docker I have 2 containers:
- HBase
- Zookeeper
I am configuring hbase-site.xml:
<property>
<name>hbase.zookeeper.quorum</name>
<value>zookeeper</value>
</property>
<property>
<name>hbase.zookeeper.property.clientPort</name>
<value>2181</value>
</property>
And:
export HBASE_MANAGES_ZK=false
Start HBase master:
/usr/local/hbase/bin/hbase --config /usr/local/hbase/conf master start
But this command is creating a mini Zookeeper instance (https://hbase.apache.org/xref/org/apache/hadoop/hbase/master/HMasterCommandLine.html#158), is it normal?
Thanks,