Examples of compactStores()


Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

                oldDesc,
                null);
        region.initialize();
        //Run major compaction to archive old stores
        //to keep any snapshots to _acl_ unbroken
        region.compactStores(true);
        region.waitForFlushesAndCompactions();
        region.close();

        //Create new region dir
        Path newRegionDir = new Path(newTablePath, newRegionInfo.getEncodedName());
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    for (int i = 0; i < 3; i++) {
      addContent(region, fam3);
      region.flushcache();
    }
   
    region.compactStores();

    byte [] splitRow = region.checkSplit();
   
    assertNotNull(splitRow);
    HRegion [] regions = split(region, splitRow);
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    assertEquals(expectedBlockMiss, cache.getStats().getMissCount());
    // compact, net minus on block, two hits, no misses
    System.out.println("Compacting");
    assertEquals(2, store.getNumberOfstorefiles());
    store.triggerMajorCompaction();
    region.compactStores();
    waitForStoreFileCount(store, 1, 10000); // wait 10 seconds max
    assertEquals(1, store.getNumberOfstorefiles());
    assertEquals(--expectedBlockCount, cache.getBlockCount());
    expectedBlockHits += 2;
    assertEquals(expectedBlockMiss, cache.getStats().getMissCount());
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

  }

  private HRegion openMetaRegion(HRegionInfo metaInfo) throws IOException {
    HRegion meta = HRegion.openHRegion(metaInfo, HTableDescriptor.META_TABLEDESC,
      getLog(), this.conf);
    meta.compactStores();
    return meta;
  }

  /**
   * Set a single region on/offline.
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    assertEquals(expectedBlockMiss, cache.getStats().getMissCount());
    // compact, net minus two blocks, two hits, no misses
    System.out.println("Compacting");
    assertEquals(2, store.getStorefilesCount());
    store.triggerMajorCompaction();
    region.compactStores();
    waitForStoreFileCount(store, 1, 10000); // wait 10 seconds max
    assertEquals(1, store.getStorefilesCount());
    expectedBlockCount -= 2; // evicted two blocks, cached none
    assertEquals(expectedBlockCount, cache.getBlockCount());
    expectedBlockHits += 2;
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    // Exercise both compaction codepaths.
    if (explicitCompaction) {
      HStore store = (HStore)region.getStore(FAMILY_BYTES);
      store.compactRecentForTestingAssumingDefaultPolicy(totalNumFiles);
    } else {
      region.compactStores();
    }

    region.close();
  }
}
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    }
    LruBlockCache blockCache =
        (LruBlockCache) new CacheConfig(conf).getBlockCache();
    blockCache.clearCache();
    assertEquals(0, blockCache.getBlockTypeCountsForTest().size());
    region.compactStores();
    LOG.debug("compactStores() returned");

    Map<BlockType, Integer> blockTypesInCache =
        blockCache.getBlockTypeCountsForTest();
    LOG.debug("Block types in cache: " + blockTypesInCache);
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    for (int i = 0; i < 3; i++) {
      addContent(region, fam3);
      region.flushcache();
    }

    region.compactStores();

    byte [] splitRow = region.checkSplit();

    assertNotNull(splitRow);
    HRegion [] regions = split(region, splitRow);
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    for (int i = 0; i < 3; i++) {
      addContent(region, fam3);
      region.flushcache();
    }

    region.compactStores();

    byte [] splitRow = region.checkSplit();

    assertNotNull(splitRow);
    HRegion [] regions = split(region, splitRow);
View Full Code Here

Examples of org.apache.hadoop.hbase.regionserver.HRegion.compactStores()

    //verify correctness when memstore contains data
    doGets(region);

    //verify correctness again after compacting
    region.compactStores();
    doGets(region);


    Map<DataBlockEncoding, Integer> encodingCounts = cache.getEncodingCountsForTest();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.