如何更改 hbase table 描述使其只读=>'false'

How to alter hbase table description as to make it readonly=>'false'

如标题所述,我需要将 table 的描述设置为只读=>false。我怎样才能做到这一点?如文档所述,我可以通过“alter 'mytable', READONLY='true'|'false'”这一行使我的 table 只读,但是当我说描述 'mytable' 时,它没有说只读=>'false'。我怎样才能做到这一点?

只读设置:

alter 'test',{METHOD=>'table_att', READONLY=>true}

取消只读设置:

alter 'test',{METHOD=>'table_att_unset', NAME=>READONLY}