Anoop Sam John created HBASE-5957:
-------------------------------------

             Summary: Mismatch with config param name in xml and code
                 Key: HBASE-5957
                 URL: https://issues.apache.org/jira/browse/HBASE-5957
             Project: HBase
          Issue Type: Bug
            Reporter: Anoop Sam John


In hbase-default.xml there listed one param "io.storefile.bloom.cacheonwrite"
{code}
<property>
  <name>io.storefile.bloom.cacheonwrite</name>
  <value>false</value>
  <description>
          Enables cache-on-write for inline blocks of a compound Bloom filter.
  </description>
</property>
{code}

No place in the code this config is getting used.
Instead in CacheConfig there is a config param name 
{code}
/**
   * Configuration key to cache compound bloom filter blocks on write.
   */
  public static final String CACHE_BLOOM_BLOCKS_ON_WRITE_KEY =
      "hfile.block.bloom.cacheonwrite";
{code}

Seems issue with entry in the xml file.
We can correct the xml with the config name as hfile.block.bloom.cacheonwrite ?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to