Hi,
I've been using my cluster last week for some tests. After that I've
formatted the namenode with "hdfs namenode -format" and remove data from
datanodes. However I can't recreate an old table :
hbase(main):001:0> drop 'ise'
ERROR: Table ise does not exist.'
Here is some help for this command:
Drop the named table. Table must first be disabled. If table has
more than one region, run a major compaction on .META.:
hbase> major_compact ".META."
hbase(main):002:0> create 'ise','f1'
ERROR: Table already exists: ise!
If I try to create another table it works !!!
hbase(main):003:0> create 't1', 'f1', 'f2', 'f3'
0 row(s) in 1.0520 seconds
hbase(main):005:0> disable 't1'
0 row(s) in 1.1030 seconds
hbase(main):006:0> drop 't1'
0 row(s) in 1.2290 seconds
Any explanation ?
thanks
--
Cyril SCETBON