Я очень новичок в Hadoop и Hbase.Теперь я сталкиваюсь с «ОШИБКА: org.apache.hadoop.hbase.MasterNotRunningException: повторная попытка 7 раз», когда я проверяю статус
Я прикреплю свой код hbase-site.xml ниже:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hbase.rootdir</name>
<value>hdfs://localhost:54310/hbase</value>
</property>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>hbase.master</name>
<value>localhost:60000</value>
</property>
<property>
<name>hbase.cluster.distributed</name>
<value>true</value>
</property>
<property>
<name>hbase.zookeeper.quorum</name>
<value>localhost</value>
</property>
</configuration>