2014-03-15 3 views
0

Я пытаюсь установить Hbase (hbase-0.94.8). Я последовал шаги, приведенные на этой странице http://archanaschangale.wordpress.com/2013/08/31/installing-pseudo-distributed-hbase-on-ubuntu/HBase - Ошибка при создании таблицы

Я могу начать Hbase и войти в оболочку, но когда я типа создания «t1», «c1» из оболочки выкинули следующие ОШИБКИ

hbase(main):001:0> create 't1','c1' 
14/03/15 10:23:16 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:18 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:19 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:21 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:23 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:27 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 
14/03/15 10:23:31 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master. 

ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times 

Here is some help for this command: 
Create table; pass table name, a dictionary of specifications per 
column family, and optionally a dictionary of table configuration. 
Dictionaries are described below in the GENERAL NOTES section. 
Examples: 

    hbase> create 't1', {NAME => 'f1', VERSIONS => 5} 
    hbase> create 't1', {NAME => 'f1'}, {NAME => 'f2'}, {NAME => 'f3'} 
    hbase> # The above in shorthand would be the following: 
    hbase> create 't1', 'f1', 'f2', 'f3' 
    hbase> create 't1', {NAME => 'f1', VERSIONS => 1, TTL => 2592000, BLOCKCACHE => true} 
    hbase> create 't1', 'f1', {SPLITS => ['10', '20', '30', '40']} 
    hbase> create 't1', 'f1', {SPLITS_FILE => 'splits.txt'} 
    hbase> # Optionally pre-split the table into NUMREGIONS, using 
    hbase> # SPLITALGO ("HexStringSplit", "UniformSplit" or classname) 
    hbase> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'} 


hbase(main):002:0> 

ответ

0

ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times

Это означает, что мастер HBase не работает. Убедитесь, что он запущен, а затем попробуйте создать таблицу снова.

+0

В чем причина ошибки, показанной выше? Любая идея, я столкнулся с той же проблемой. – Sarang

Смежные вопросы