You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Yi Mei (Jira)" <ji...@apache.org> on 2021/09/08 10:10:00 UTC

[jira] [Created] (HBASE-26261) Store configuration loss when use update_config

Yi Mei created HBASE-26261:
------------------------------

             Summary: Store configuration loss when use update_config
                 Key: HBASE-26261
                 URL: https://issues.apache.org/jira/browse/HBASE-26261
             Project: HBase
          Issue Type: Bug
            Reporter: Yi Mei


When use update_config shell command, some store configuration is loss.

When initialize store, the conf is set by:
{code:java}
this.conf = new CompoundConfiguration()
  .add(confParam)
  .addBytesMap(region.getTableDescriptor().getValues())
  .addStringMap(family.getConfiguration())
  .addBytesMap(family.getValues());
{code}
when change configuration, the conf is set by:
{code:java}
this.conf = new CompoundConfiguration()
        .add(conf)
        .addBytesMap(getColumnFamilyDescriptor().getValues());
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)