hbase(main):001:0> create 't1','t2'
ERROR: org.apache.hadoop.hbase.client.RetriesExhaustedException: Failed after attempts=7, exceptions:
Mon Mar 12 16:31:33 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:31:45 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:31:58 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:32:10 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:32:23 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:32:36 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
Mon Mar 12 16:32:52 CST 2012, org.apache.hadoop.hbase.client.ScannerCallable@4f33c1, java.io.IOException: HRegionInfo was null or empty in -ROOT-, row=keyvalues={.META.,,1/info:server/1331540990769/Put/vlen=15, .META.,,1/info:serverstartcode/1331540990769/Put/vlen=8}
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(main):002:0>
|
|