这是一个新手HBase问题。我在HBase(1.2.6)中有一张表:
hbase(main):042:0> create 'ship', 'cf1'
0 row(s) in 1.2200 seconds
=> Hbase::Table - ship
创建:
hbase(main):046:0> desc 'ship'
Table ship is ENABLED
ship
COLUMN FAMILIES DESCRIPTION
{NAME => 'cf1', BLOOMFILTER => 'ROW', VERSIONS => '1', IN_MEMORY => 'false',
KEEP_DELETED_CELLS => 'FALSE', DATA_BLOCK_ENCODING => 'NONE',
TTL => 'FOREVER', COMPRESSION => 'NONE', MIN_VERSIONS => '0', BLOCKCACHE => 'true', BLOCKSIZE => '65536', REPLICATION_SCOPE => '0'}
1 row(s) in 0.0110 seconds
但我无法改变它:
hbase(main):047:0> alter 'ship', NAME=>'cf1', VERSIONS=>5
Unknown argument ignored: cf1
Unknown argument ignored: VERSIONS
Updating all regions with the new schema...
1/1 regions updated.
Done.
0 row(s) in 1.8710 seconds
为什么会发生这种情况?
答案 0 :(得分:1)
经过一些实验后,我确实发现了问题。 hbase-site.xml 中 hbase.column.max.version 的默认值为1.显然,如果它保持这样,则所有尝试设置更多版本的版本失败与神秘的错误。 将此参数设置为大于1的值可解决问题。
答案 1 :(得分:0)
我遇到了同样的问题,但是找到了不同的解决方案。我实际上在hbase-site.xml中找不到配置。
我的解决方案是先禁用表,然后再对其进行更改。 一旦禁用,我就可以更改#版本。