You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "John Leach (JIRA)" <ji...@apache.org> on 2015/01/23 22:46:34 UTC

[jira] [Created] (HBASE-12912) StoreScanner calls Configuration for Boolean Check on each initialization

John Leach created HBASE-12912:
----------------------------------

             Summary: StoreScanner calls Configuration for Boolean Check on each initialization
                 Key: HBASE-12912
                 URL: https://issues.apache.org/jira/browse/HBASE-12912
             Project: HBase
          Issue Type: Bug
            Reporter: John Leach
         Attachments: StoreScannerStall.tiff

There is a clear CPU drain and iterator creation when creating store scanners under high load.  Splice was running a TPCC test of our database and we are seeing object creation and CPU waste on the boolean check....


Code Snippet...

if (store != null && ((HStore)store).getHRegion() != null
        && store.getStorefilesCount() > 1) {
      RegionServerServices rsService = ((HStore)store).getHRegion().getRegionServerServices();
      if (rsService == null || !rsService.getConfiguration().getBoolean(
            STORESCANNER_PARALLEL_SEEK_ENABLE, false)) return;
      isParallelSeekEnabled = true;
      executor = rsService.getExecutorService();
    }

Will attach profile...




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)