blob: bed2e534115bd4f2dce1f5e5a21df03e27345ea6 [file] [log] [blame]
/*
* 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.manager.metrics.fate;
import java.util.List;
import java.util.Map.Entry;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
import org.apache.accumulo.core.Constants;
import org.apache.accumulo.core.fate.ReadOnlyTStore;
import org.apache.accumulo.core.fate.ZooStore;
import org.apache.accumulo.core.metrics.MetricsProducer;
import org.apache.accumulo.core.util.threads.ThreadPools;
import org.apache.accumulo.server.ServerContext;
import org.apache.zookeeper.KeeperException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Metrics;
import io.micrometer.core.instrument.Tag;
import io.micrometer.core.instrument.Tags;
public class FateMetrics implements MetricsProducer {
private static final Logger log = LoggerFactory.getLogger(FateMetrics.class);
// limit calls to update fate counters to guard against hammering zookeeper.
private static final long DEFAULT_MIN_REFRESH_DELAY = TimeUnit.SECONDS.toMillis(5);
private static final String OP_TYPE_TAG = "op.type";
private final ServerContext context;
private final ReadOnlyTStore<FateMetrics> zooStore;
private final String fateRootPath;
private final long refreshDelay;
private AtomicLong totalCurrentOpsGauge;
private AtomicLong totalOpsGauge;
private AtomicLong fateErrorsGauge;
private AtomicLong newTxGauge;
private AtomicLong submittedTxGauge;
private AtomicLong inProgressTxGauge;
private AtomicLong failedInProgressTxGauge;
private AtomicLong failedTxGauge;
private AtomicLong successfulTxGauge;
private AtomicLong unknownTxGauge;
public FateMetrics(final ServerContext context, final long minimumRefreshDelay) {
this.context = context;
this.fateRootPath = context.getZooKeeperRoot() + Constants.ZFATE;
this.refreshDelay = Math.max(DEFAULT_MIN_REFRESH_DELAY, minimumRefreshDelay);
try {
this.zooStore = new ZooStore<>(fateRootPath, context.getZooReaderWriter());
} catch (KeeperException ex) {
throw new IllegalStateException(
"FATE Metrics - Failed to create zoo store - metrics unavailable", ex);
} catch (InterruptedException ex) {
Thread.currentThread().interrupt();
throw new IllegalStateException(
"FATE Metrics - Interrupt received while initializing zoo store");
}
}
private void update() {
FateMetricValues metricValues =
FateMetricValues.getFromZooKeeper(context, fateRootPath, zooStore);
totalCurrentOpsGauge.set(metricValues.getCurrentFateOps());
totalOpsGauge.set(metricValues.getZkFateChildOpsTotal());
fateErrorsGauge.set(metricValues.getZkConnectionErrors());
for (Entry<String,Long> vals : metricValues.getTxStateCounters().entrySet()) {
switch (ReadOnlyTStore.TStatus.valueOf(vals.getKey())) {
case NEW:
newTxGauge.set(vals.getValue());
break;
case SUBMITTED:
submittedTxGauge.set(vals.getValue());
break;
case IN_PROGRESS:
inProgressTxGauge.set(vals.getValue());
break;
case FAILED_IN_PROGRESS:
failedInProgressTxGauge.set(vals.getValue());
break;
case FAILED:
failedTxGauge.set(vals.getValue());
break;
case SUCCESSFUL:
successfulTxGauge.set(vals.getValue());
break;
case UNKNOWN:
unknownTxGauge.set(vals.getValue());
break;
default:
log.warn("Unhandled status type: {}", vals.getKey());
}
}
metricValues.getOpTypeCounters().forEach((name, count) -> {
Metrics.gauge(METRICS_FATE_TYPE_IN_PROGRESS, Tags.of(OP_TYPE_TAG, name), count);
});
}
@Override
public void registerMetrics(final MeterRegistry registry) {
totalCurrentOpsGauge = registry.gauge(METRICS_FATE_TOTAL_IN_PROGRESS, new AtomicLong(0));
totalOpsGauge = registry.gauge(METRICS_FATE_OPS_ACTIVITY, new AtomicLong(0));
fateErrorsGauge = registry.gauge(METRICS_FATE_ERRORS, List.of(Tag.of("type", "zk.connection")),
new AtomicLong(0));
newTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.NEW.name().toLowerCase())),
new AtomicLong(0));
submittedTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.SUBMITTED.name().toLowerCase())),
new AtomicLong(0));
inProgressTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.IN_PROGRESS.name().toLowerCase())),
new AtomicLong(0));
failedInProgressTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.FAILED_IN_PROGRESS.name().toLowerCase())),
new AtomicLong(0));
failedTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.FAILED.name().toLowerCase())),
new AtomicLong(0));
successfulTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.SUCCESSFUL.name().toLowerCase())),
new AtomicLong(0));
unknownTxGauge = registry.gauge(METRICS_FATE_TX,
List.of(Tag.of("state", ReadOnlyTStore.TStatus.UNKNOWN.name().toLowerCase())),
new AtomicLong(0));
update();
// get fate status is read only operation - no reason to be nice on shutdown.
ScheduledExecutorService scheduler =
ThreadPools.getServerThreadPools().createScheduledExecutorService(1, "fateMetricsPoller");
Runtime.getRuntime().addShutdownHook(new Thread(scheduler::shutdownNow));
ScheduledFuture<?> future = scheduler.scheduleAtFixedRate(() -> {
try {
update();
} catch (Exception ex) {
log.info("Failed to update fate metrics due to exception", ex);
}
}, refreshDelay, refreshDelay, TimeUnit.MILLISECONDS);
ThreadPools.watchNonCriticalScheduledTask(future);
}
}