blob: 5d99cc4d250b82a99c91d3a1de7a8ca7018d2b2e [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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.hadoop.ozone.container.replication;
import java.time.Instant;
import org.apache.hadoop.metrics2.annotation.Metric;
import org.apache.hadoop.metrics2.annotation.Metrics;
import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
import org.apache.hadoop.metrics2.lib.MutableCounterLong;
import org.apache.hadoop.metrics2.lib.MutableGaugeLong;
import org.apache.hadoop.ozone.container.replication.ReplicationTask.Status;
import com.google.common.annotations.VisibleForTesting;
/**
* ContainerReplicator wrapper with additional metrics.
*/
@Metrics(about = "Closed container replication metrics", context = "dfs")
public class MeasuredReplicator implements ContainerReplicator, AutoCloseable {
private static final String NAME = ContainerReplicator.class.toString();
private final ContainerReplicator delegate;
@Metric
private MutableCounterLong success;
@Metric
private MutableGaugeLong successTime;
@Metric
private MutableCounterLong failure;
@Metric
private MutableGaugeLong queueTime;
@Metric
private MutableGaugeLong transferredBytes;
public MeasuredReplicator(ContainerReplicator delegate) {
this.delegate = delegate;
DefaultMetricsSystem.instance()
.register(NAME, "Closed container replication", this);
}
@Override
public void replicate(ReplicationTask task) {
long start = System.currentTimeMillis();
long msInQueue =
(Instant.now().getNano() - task.getQueued().getNano()) / 1_000_000;
queueTime.incr(msInQueue);
delegate.replicate(task);
if (task.getStatus() == Status.FAILED) {
failure.incr();
} else if (task.getStatus() == Status.DONE) {
transferredBytes.incr(task.getTransferredBytes());
success.incr();
successTime.incr(System.currentTimeMillis() - start);
}
}
@Override
public void close() throws Exception {
DefaultMetricsSystem.instance().unregisterSource(NAME);
}
@VisibleForTesting
public MutableCounterLong getSuccess() {
return success;
}
@VisibleForTesting
public MutableGaugeLong getSuccessTime() {
return successTime;
}
@VisibleForTesting
public MutableCounterLong getFailure() {
return failure;
}
@VisibleForTesting
public MutableGaugeLong getQueueTime() {
return queueTime;
}
@VisibleForTesting
public MutableGaugeLong getTransferredBytes() {
return transferredBytes;
}
}