All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.accumulo.server.compaction.CompactionWatcher Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.accumulo.server.compaction;

import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;

import org.apache.accumulo.core.conf.AccumuloConfiguration;
import org.apache.accumulo.core.conf.Property;
import org.apache.accumulo.core.util.threads.ThreadPools;
import org.apache.accumulo.server.ServerContext;
import org.slf4j.LoggerFactory;

import io.micrometer.core.instrument.LongTaskTimer;
import io.micrometer.core.instrument.LongTaskTimer.Sample;

public class CompactionWatcher implements Runnable {

  public static void setTimer(LongTaskTimer ltt) {
    timer = ltt;
  }

  private final Map,ObservedCompactionInfo> observedCompactions = new HashMap<>();
  private final AccumuloConfiguration config;
  private static boolean watching = false;
  private static LongTaskTimer timer = null;

  private static class ObservedCompactionInfo {
    final CompactionInfo compactionInfo;
    final long firstSeen;
    Sample stuckSample;
    boolean loggedWarning;

    ObservedCompactionInfo(CompactionInfo ci, long time) {
      this.compactionInfo = ci;
      this.firstSeen = time;
    }
  }

  public CompactionWatcher(AccumuloConfiguration config) {
    this.config = config;
  }

  @Override
  public void run() {
    List runningCompactions = FileCompactor.getRunningCompactions();

    Set> newKeys = new HashSet<>();

    long time = System.currentTimeMillis();

    for (CompactionInfo ci : runningCompactions) {
      List compactionKey =
          Arrays.asList(ci.getID(), ci.getEntriesRead(), ci.getEntriesWritten());
      newKeys.add(compactionKey);

      if (!observedCompactions.containsKey(compactionKey)) {
        observedCompactions.put(compactionKey, new ObservedCompactionInfo(ci, time));
      }
    }

    // look for compactions that finished or made progress and logged a warning
    HashMap,ObservedCompactionInfo> copy = new HashMap<>(observedCompactions);
    copy.keySet().removeAll(newKeys);

    for (ObservedCompactionInfo oci : copy.values()) {
      if (oci.stuckSample != null) {
        oci.stuckSample.stop();
        oci.stuckSample = null;
      }
      if (oci.loggedWarning) {
        LoggerFactory.getLogger(CompactionWatcher.class).info("Compaction of {} is no longer stuck",
            oci.compactionInfo.getExtent());
      }
    }

    // remove any compaction that completed or made progress
    observedCompactions.keySet().retainAll(newKeys);

    long warnTime = config.getTimeInMillis(Property.TSERV_COMPACTION_WARN_TIME);

    // check for stuck compactions
    for (ObservedCompactionInfo oci : observedCompactions.values()) {
      if (time - oci.firstSeen > warnTime) {
        oci.stuckSample = timer == null ? null : timer.start();
        if (!oci.loggedWarning) {
          Thread compactionThread = oci.compactionInfo.getThread();
          if (compactionThread != null) {
            StackTraceElement[] trace = compactionThread.getStackTrace();
            Exception e = new Exception(
                "Possible stack trace of compaction stuck on " + oci.compactionInfo.getExtent());
            e.setStackTrace(trace);
            LoggerFactory.getLogger(CompactionWatcher.class).warn("Compaction of "
                + oci.compactionInfo.getExtent() + " to " + oci.compactionInfo.getOutputFile()
                + " has not made progress for at least " + (time - oci.firstSeen) + "ms", e);
            oci.loggedWarning = true;
          }
        }
      }
    }
  }

  public static synchronized void startWatching(ServerContext context) {
    if (!watching) {
      ThreadPools.watchCriticalScheduledTask(context.getScheduledExecutor().scheduleWithFixedDelay(
          new CompactionWatcher(context.getConfiguration()), 10000, 10000, TimeUnit.MILLISECONDS));
      watching = true;
    }
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy