首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

HBase启动时正常,status也正常,但是create的时候出现以下异常

2013-10-01 
HBase启动时正常,status也正常,但是create的时候出现以下错误hbase(main):002:0 create tab,f1ERROR:

HBase启动时正常,status也正常,但是create的时候出现以下错误

hbase(main):002:0> create 'tab','f1'

ERROR: org.apache.hadoop.hbase.PleaseHoldException: org.apache.hadoop.hbase.PleaseHoldException: Master is initializing

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):003:0>?

?原因及解决方法:查看/etc/hosts文件中的127.0.0.1是不是写成了127.0.1.1啦,更改之后重启Hbase和Hadoop即可!

热点排行