You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "chenxu (Jira)" <ji...@apache.org> on 2019/10/21 03:52:00 UTC

[jira] [Created] (HBASE-23196) The IndexChunkPool’s percentage is hard code to 0.1

chenxu created HBASE-23196:
------------------------------

             Summary: The IndexChunkPool’s percentage is hard code to 0.1
                 Key: HBASE-23196
                 URL: https://issues.apache.org/jira/browse/HBASE-23196
             Project: HBase
          Issue Type: Bug
            Reporter: chenxu


Code in ChunkCreator#initialize
{code:java}
public static ChunkCreator initialize(...) {
    if (instance != null) {
      return instance;
    }
    instance = new ChunkCreator(chunkSize, offheap, globalMemStoreSize, poolSizePercentage,
            initialCountPercentage, heapMemoryManager,
            MemStoreLABImpl.INDEX_CHUNK_PERCENTAGE_DEFAULT);
    return instance;
  }
{code}
When mslab is enabled, the IndexChunkPool’s percentage is hard code to INDEX_CHUNK_PERCENTAGE_DEFAULT, When we use IndexType#ARRAY_MAP other than IndexType#CHUNK_MAP, we should set IndexChunkPool’s size to 0, or there will be a waste of memory space.



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