Table is neither enables nor disabled in HBase

后端 未结 4 2099
萌比男神i
萌比男神i 2021-02-20 16:43

I am facing a weird problem. I was accessing my HBase tables through an API. Midway during execution I got a RegionNotServing for my table \'x\'. But My HRegionServers were work

4条回答
  •  忘了有多久
    2021-02-20 17:22

    the follow steps was useful to me:

    1. enter into hbase shell
    2. get 'hbase:meta', '', 'table:state'
    3. Notice the above "value". The value should either be \x08\x00 (Enabled) or \x08\x01 (Disabled)
    4. put 'hbase:meta','','table:state',"\b\0" to make the table enable

提交回复
热议问题