Ejemplo n.º 1
0
 /**
  * Flushes all dirty CFs, waiting for them to free and recycle any segments they were retaining
  */
 public void forceRecycleAllSegments() {
   allocator.forceRecycleAll(Collections.<UUID>emptyList());
 }
Ejemplo n.º 2
0
 /**
  * Flushes all dirty CFs, waiting for them to free and recycle any segments they were retaining
  */
 public void forceRecycleAllSegments(Iterable<UUID> droppedCfs) {
   allocator.forceRecycleAll(droppedCfs);
 }