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

org.apache.flink.runtime.rest.messages.checkpoints.TaskCheckpointStatistics Maven / Gradle / Ivy

There is a newer version: 1.5.1
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
 *
 *     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.rest.messages.checkpoints;

import org.apache.flink.runtime.checkpoint.CheckpointStatsStatus;
import org.apache.flink.runtime.rest.messages.ResponseBody;
import org.apache.flink.util.Preconditions;

import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonCreator;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonProperty;

import java.util.Objects;

/**
 * Checkpoint statistics for a single task.
 */
public class TaskCheckpointStatistics implements ResponseBody {

	public static final String FIELD_NAME_ID = "id";

	public static final String FIELD_NAME_CHECKPOINT_STATUS = "status";

	public static final String FIELD_NAME_LATEST_ACK_TIMESTAMP = "latest_ack_timestamp";

	public static final String FIELD_NAME_STATE_SIZE = "state_size";

	public static final String FIELD_NAME_FULL_STATE_SIZE = "full_state_size";

	public static final String FIELD_NAME_DURATION = "end_to_end_duration";

	public static final String FIELD_NAME_ALIGNMENT_BUFFERED = "alignment_buffered";

	public static final String FIELD_NAME_NUM_SUBTASKS = "num_subtasks";

	public static final String FIELD_NAME_NUM_ACK_SUBTASKS = "num_acknowledged_subtasks";

	@JsonProperty(FIELD_NAME_ID)
	private final long checkpointId;

	@JsonProperty(FIELD_NAME_CHECKPOINT_STATUS)
	private final CheckpointStatsStatus checkpointStatus;

	@JsonProperty(FIELD_NAME_LATEST_ACK_TIMESTAMP)
	private final long latestAckTimestamp;

	@JsonProperty(FIELD_NAME_STATE_SIZE)
	private final long stateSize;

	@JsonProperty(FIELD_NAME_FULL_STATE_SIZE)
	private final long fullStateSize;

	@JsonProperty(FIELD_NAME_DURATION)
	private final long duration;

	@JsonProperty(FIELD_NAME_ALIGNMENT_BUFFERED)
	private final long alignmentBuffered;

	@JsonProperty(FIELD_NAME_NUM_SUBTASKS)
	private final int numSubtasks;

	@JsonProperty(FIELD_NAME_NUM_ACK_SUBTASKS)
	private final int numAckSubtasks;

	@JsonCreator
	public TaskCheckpointStatistics(
			@JsonProperty(FIELD_NAME_ID) long checkpointId,
			@JsonProperty(FIELD_NAME_CHECKPOINT_STATUS) CheckpointStatsStatus checkpointStatus,
			@JsonProperty(FIELD_NAME_LATEST_ACK_TIMESTAMP) long latestAckTimestamp,
			@JsonProperty(FIELD_NAME_STATE_SIZE) long stateSize,
			@JsonProperty(FIELD_NAME_FULL_STATE_SIZE) long fullStateSize,
			@JsonProperty(FIELD_NAME_DURATION) long duration,
			@JsonProperty(FIELD_NAME_ALIGNMENT_BUFFERED) long alignmentBuffered,
			@JsonProperty(FIELD_NAME_NUM_SUBTASKS) int numSubtasks,
			@JsonProperty(FIELD_NAME_NUM_ACK_SUBTASKS) int numAckSubtasks) {

		this.checkpointId = checkpointId;
		this.checkpointStatus = Preconditions.checkNotNull(checkpointStatus);
		this.latestAckTimestamp = latestAckTimestamp;
		this.stateSize = stateSize;
		this.fullStateSize = fullStateSize;
		this.duration = duration;
		this.alignmentBuffered = alignmentBuffered;
		this.numSubtasks = numSubtasks;
		this.numAckSubtasks = numAckSubtasks;
	}

	public long getLatestAckTimestamp() {
		return latestAckTimestamp;
	}

	public long getStateSize() {
		return stateSize;
	}

	public long getFullStateSize() {
		return fullStateSize;
	}

	public long getDuration() {
		return duration;
	}

	public long getAlignmentBuffered() {
		return alignmentBuffered;
	}

	public int getNumSubtasks() {
		return numSubtasks;
	}

	public int getNumAckSubtasks() {
		return numAckSubtasks;
	}

	public long getCheckpointId() {
		return checkpointId;
	}

	public CheckpointStatsStatus getCheckpointStatus() {
		return checkpointStatus;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		TaskCheckpointStatistics that = (TaskCheckpointStatistics) o;
		return checkpointId == that.checkpointId &&
			latestAckTimestamp == that.latestAckTimestamp &&
			stateSize == that.stateSize &&
			fullStateSize == that.fullStateSize &&
			duration == that.duration &&
			alignmentBuffered == that.alignmentBuffered &&
			numSubtasks == that.numSubtasks &&
			numAckSubtasks == that.numAckSubtasks &&
			checkpointStatus == that.checkpointStatus;
	}

	@Override
	public int hashCode() {
		return Objects.hash(checkpointId, checkpointStatus, latestAckTimestamp, stateSize, fullStateSize, duration, alignmentBuffered, numSubtasks, numAckSubtasks);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy