Uploaded image for project: 'HBase'
  1. HBase
  2. HBASE-12454

Setting didPerformCompaction early in HRegion#compact

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Trivial
    • Resolution: Fixed
    • 0.98.8
    • 1.0.0, 0.98.9
    • None
    • None
    • Reviewed

    Description

      It appears we are setting 'didPerformCompaction' to "true" before attempting the compaction in HRegion#compact. If Store#compact throws an exception or is interrupted, we won't call Store#cancelRequestedCompaction in the last finally block of the method as it looks like we should.

      --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
      +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
      @@ -1540,58 +1540,58 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver {
               return false;
             }
       
             status = TaskMonitor.get().createStatus("Compacting " + store + " in " + this);
             if (this.closed.get()) {
               String msg = "Skipping compaction on " + this + " because closed";
               LOG.debug(msg);
               status.abort(msg);
               return false;
             }
             boolean wasStateSet = false;
             try {
               synchronized (writestate) {
                 if (writestate.writesEnabled) {
                   wasStateSet = true;
                   ++writestate.compacting;
                 } else {
                   String msg = "NOT compacting region " + this + ". Writes disabled.";
                   LOG.info(msg);
                   status.abort(msg);
                   return false;
                 }
               }
               LOG.info("Starting compaction on " + store + " in region " + this
                   + (compaction.getRequest().isOffPeak()?" as an off-peak compaction":""));
               doRegionCompactionPrep();
               try {
                 status.setStatus("Compacting store " + store);
      -          didPerformCompaction = true;
                 store.compact(compaction);
      +          didPerformCompaction = true;
               } catch (InterruptedIOException iioe) {
                 String msg = "compaction interrupted";
                 LOG.info(msg, iioe);
                 status.abort(msg);
                 return false;
               }
             } finally {
               if (wasStateSet) {
                 synchronized (writestate) {
                   --writestate.compacting;
                   if (writestate.compacting <= 0) {
                     writestate.notifyAll();
                   }
                 }
               }
             }
             status.markComplete("Compaction complete");
             return true;
           } finally {
             try {
               if (!didPerformCompaction) store.cancelRequestedCompaction(compaction);   <-----
               if (status != null) status.cleanup();
             } finally {
               lock.readLock().unlock();
             }
           }
         }

      Attachments

        1. HBASE-12454-v2.patch
          5 kB
          Andrew Kyle Purtell
        2. HBASE-12454-0.98.patch
          3 kB
          Andrew Kyle Purtell
        3. HBASE-12454.patch
          0.8 kB
          Andrew Kyle Purtell
        4. HBASE-12454.patch
          3 kB
          Andrew Kyle Purtell
        5. HBASE-12454.patch
          3 kB
          Andrew Kyle Purtell

        Activity

          People

            apurtell Andrew Kyle Purtell
            apurtell Andrew Kyle Purtell
            Votes:
            0 Vote for this issue
            Watchers:
            8 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: