org.apache.flink.runtime.checkpoint.TaskStateStats Maven / Gradle / Ivy
/*
* 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
*
* http://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.flink.runtime.checkpoint;
import org.apache.flink.runtime.jobgraph.JobVertexID;
import javax.annotation.Nullable;
import java.io.Serializable;
import static org.apache.flink.util.Preconditions.checkArgument;
import static org.apache.flink.util.Preconditions.checkNotNull;
/**
* Statistics for a single task/operator that gathers all statistics of its
* subtasks and provides summary statistics about all subtasks.
*/
public class TaskStateStats implements Serializable {
private static final long serialVersionUID = 531803101206574444L;
/** ID of the task the stats belong to. */
private final JobVertexID jobVertexId;
/** Stats for each subtask */
private final SubtaskStateStats[] subtaskStats;
/** A summary of the subtask stats. */
private final TaskStateStatsSummary summaryStats = new TaskStateStatsSummary();
/** Number of acknowledged subtasks. */
private int numAcknowledgedSubtasks;
/** The latest acknowledged subtask stats. */
@Nullable
private SubtaskStateStats latestAckedSubtaskStats;
TaskStateStats(JobVertexID jobVertexId, int numSubtasks) {
this.jobVertexId = checkNotNull(jobVertexId, "JobVertexID");
checkArgument(numSubtasks > 0, "Number of subtasks <= 0");
this.subtaskStats = new SubtaskStateStats[numSubtasks];
}
/**
* Hands in the stats for a subtask.
*
* @param subtask Stats for the sub task to hand in.
*/
boolean reportSubtaskStats(SubtaskStateStats subtask) {
checkNotNull(subtask, "Subtask stats");
int subtaskIndex = subtask.getSubtaskIndex();
if (subtaskIndex < 0 || subtaskIndex >= subtaskStats.length) {
return false;
}
if (subtaskStats[subtaskIndex] == null) {
subtaskStats[subtaskIndex] = subtask;
latestAckedSubtaskStats = subtask;
numAcknowledgedSubtasks++;
summaryStats.updateSummary(subtask);
return true;
} else {
return false;
}
}
/**
* Returns the ID of the operator the statistics belong to.
*
* @return ID of the operator the statistics belong to.
*/
public JobVertexID getJobVertexId() {
return jobVertexId;
}
/**
* Returns the number of subtasks.
*
* @return Number of subtasks.
*/
public int getNumberOfSubtasks() {
return subtaskStats.length;
}
/**
* Returns the number of acknowledged subtasks.
*
* @return Number of acknowledged subtasks.
*/
public int getNumberOfAcknowledgedSubtasks() {
return numAcknowledgedSubtasks;
}
/**
* Returns the latest acknowledged subtask stats or null
* if none was acknowledged yet.
*
* @return The latest acknowledged subtask stats.
*/
@Nullable
public SubtaskStateStats getLatestAcknowledgedSubtaskStats() {
return latestAckedSubtaskStats;
}
/**
* Returns the ack timestamp of the latest acknowledged subtask or
* -1
if none was acknowledged yet.
*
* @return Ack timestamp of the latest acknowledged subtask or -1
.
*/
public long getLatestAckTimestamp() {
SubtaskStateStats subtask = latestAckedSubtaskStats;
if (subtask != null) {
return subtask.getAckTimestamp();
} else {
return -1;
}
}
/**
* Returns the total checkpoint state size over all subtasks.
*
* @return Total checkpoint state size over all subtasks.
*/
public long getStateSize() {
return summaryStats.getStateSizeStats().getSum();
}
/**
* Returns the total buffered bytes during alignment over all subtasks.
*
* Can return -1
if the runtime did not report this.
*
* @return Total buffered bytes during alignment over all subtasks.
*/
public long getAlignmentBuffered() {
return summaryStats.getAlignmentBufferedStats().getSum();
}
/**
* Returns the duration of this checkpoint at the task/operator calculated
* as the time since triggering until the latest acknowledged subtask
* or -1
if no subtask was acknowledged yet.
*
* @return Duration of this checkpoint at the task/operator or -1
if no subtask was acknowledged yet.
*/
public long getEndToEndDuration(long triggerTimestamp) {
SubtaskStateStats subtask = getLatestAcknowledgedSubtaskStats();
if (subtask != null) {
return Math.max(0, subtask.getAckTimestamp() - triggerTimestamp);
} else {
return -1;
}
}
/**
* Returns the stats for all subtasks.
*
*
Elements of the returned array are null
if no stats are
* available yet for the respective subtask.
*
*
Note: The returned array must not be modified.
*
* @return Array of subtask stats (elements are null
if no stats available yet).
*/
public SubtaskStateStats[] getSubtaskStats() {
return subtaskStats;
}
/**
* Returns the summary of the subtask stats.
*
* @return Summary of the subtask stats.
*/
public TaskStateStatsSummary getSummaryStats() {
return summaryStats;
}
/**
* Summary of the subtask stats of a single task/operator.
*/
public static class TaskStateStatsSummary implements Serializable {
private static final long serialVersionUID = 1009476026522091909L;
private MinMaxAvgStats stateSize = new MinMaxAvgStats();
private MinMaxAvgStats ackTimestamp = new MinMaxAvgStats();
private MinMaxAvgStats syncCheckpointDuration = new MinMaxAvgStats();
private MinMaxAvgStats asyncCheckpointDuration = new MinMaxAvgStats();
private MinMaxAvgStats alignmentBuffered = new MinMaxAvgStats();
private MinMaxAvgStats alignmentDuration = new MinMaxAvgStats();
/**
* Updates the summary with the given subtask.
*
* @param subtaskStats Subtask stats to update the summary with.
*/
void updateSummary(SubtaskStateStats subtaskStats) {
stateSize.add(subtaskStats.getStateSize());
ackTimestamp.add(subtaskStats.getAckTimestamp());
syncCheckpointDuration.add(subtaskStats.getSyncCheckpointDuration());
asyncCheckpointDuration.add(subtaskStats.getAsyncCheckpointDuration());
alignmentBuffered.add(subtaskStats.getAlignmentBuffered());
alignmentDuration.add(subtaskStats.getAlignmentDuration());
}
/**
* Returns the summary stats for the state size.
*
* @return Summary stats for the state size.
*/
public MinMaxAvgStats getStateSizeStats() {
return stateSize;
}
/**
* Returns the summary stats for the ACK timestamps.
*
* @return Summary stats for the state size.
*/
public MinMaxAvgStats getAckTimestampStats() {
return ackTimestamp;
}
/**
* Returns the summary stats for the sync checkpoint duration.
*
* @return Summary stats for the sync checkpoint duration.
*/
public MinMaxAvgStats getSyncCheckpointDurationStats() {
return syncCheckpointDuration;
}
/**
* Returns the summary stats for the async checkpoint duration.
*
* @return Summary stats for the async checkpoint duration.
*/
public MinMaxAvgStats getAsyncCheckpointDurationStats() {
return asyncCheckpointDuration;
}
/**
* Returns the summary stats for the buffered bytes during alignments.
*
* @return Summary stats for the buffered state size during alignment.
*/
public MinMaxAvgStats getAlignmentBufferedStats() {
return alignmentBuffered;
}
/**
* Returns the summary stats for the alignment duration.
*
* @return Summary stats for the duration of the alignment.
*/
public MinMaxAvgStats getAlignmentDurationStats() {
return alignmentDuration;
}
}
}