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

org.apache.flink.runtime.rest.messages.JobAccumulatorsInfo Maven / Gradle / Ivy

There is a newer version: 1.13.6
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;

import org.apache.flink.runtime.rest.handler.job.JobAccumulatorsHandler;
import org.apache.flink.runtime.rest.messages.json.SerializedValueDeserializer;
import org.apache.flink.runtime.rest.messages.json.SerializedValueSerializer;
import org.apache.flink.util.OptionalFailure;
import org.apache.flink.util.Preconditions;
import org.apache.flink.util.SerializedValue;

import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonCreator;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonIgnore;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.databind.annotation.JsonSerialize;

import java.util.List;
import java.util.Map;
import java.util.Objects;

/**
 * Response type of the {@link JobAccumulatorsHandler}.
 */
public class JobAccumulatorsInfo implements ResponseBody {
	public static final String FIELD_NAME_JOB_ACCUMULATORS = "job-accumulators";
	public static final String FIELD_NAME_USER_TASK_ACCUMULATORS = "user-task-accumulators";
	public static final String FIELD_NAME_SERIALIZED_USER_TASK_ACCUMULATORS = "serialized-user-task-accumulators";

	@JsonProperty(FIELD_NAME_JOB_ACCUMULATORS)
	private List jobAccumulators;

	@JsonProperty(FIELD_NAME_USER_TASK_ACCUMULATORS)
	private List userAccumulators;

	@JsonProperty(FIELD_NAME_SERIALIZED_USER_TASK_ACCUMULATORS)
	@JsonSerialize(contentUsing = SerializedValueSerializer.class)
	private Map>> serializedUserAccumulators;

	@JsonCreator
	public JobAccumulatorsInfo(
			@JsonProperty(FIELD_NAME_JOB_ACCUMULATORS) List jobAccumulators,
			@JsonProperty(FIELD_NAME_USER_TASK_ACCUMULATORS) List userAccumulators,
			@JsonDeserialize(contentUsing = SerializedValueDeserializer.class) @JsonProperty(FIELD_NAME_SERIALIZED_USER_TASK_ACCUMULATORS) Map>> serializedUserAccumulators) {
		this.jobAccumulators = Preconditions.checkNotNull(jobAccumulators);
		this.userAccumulators = Preconditions.checkNotNull(userAccumulators);
		this.serializedUserAccumulators = Preconditions.checkNotNull(serializedUserAccumulators);
	}

	@JsonIgnore
	public List getJobAccumulators() {
		return jobAccumulators;
	}

	@JsonIgnore
	public List getUserAccumulators() {
		return userAccumulators;
	}

	@JsonIgnore
	public Map>> getSerializedUserAccumulators() {
		return serializedUserAccumulators;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		JobAccumulatorsInfo that = (JobAccumulatorsInfo) o;
		return Objects.equals(userAccumulators, that.userAccumulators);
	}

	@Override
	public int hashCode() {
		return Objects.hash(userAccumulators);
	}

	//---------------------------------------------------------------------------------
	// Static helper classes
	//---------------------------------------------------------------------------------

	/**
	 * Json serializer for the {@link JobAccumulatorsInfo}.
	 */
	public static final class JobAccumulator {
		// empty for now
	}

	/**
	 * Json serializer for the {@link JobAccumulatorsInfo}.
	 */
	public static final class UserTaskAccumulator {

		public static final String FIELD_NAME_ACC_NAME = "name";
		public static final String FIELD_NAME_ACC_TYPE = "type";
		public static final String FIELD_NAME_ACC_VALUE = "value";

		@JsonProperty(FIELD_NAME_ACC_NAME)
		private String name;

		@JsonProperty(FIELD_NAME_ACC_TYPE)
		private String type;

		@JsonProperty(FIELD_NAME_ACC_VALUE)
		private String value;

		@JsonCreator
		public UserTaskAccumulator(
			@JsonProperty(FIELD_NAME_ACC_NAME) String name,
			@JsonProperty(FIELD_NAME_ACC_TYPE) String type,
			@JsonProperty(FIELD_NAME_ACC_VALUE) String value) {
			this.name = Preconditions.checkNotNull(name);
			this.type = Preconditions.checkNotNull(type);
			this.value = Preconditions.checkNotNull(value);
		}

		@JsonIgnore
		public String getName() {
			return name;
		}

		@JsonIgnore
		public String getType() {
			return type;
		}

		@JsonIgnore
		public String getValue() {
			return value;
		}

		@Override
		public boolean equals(Object o) {
			if (this == o) {
				return true;
			}
			if (o == null || getClass() != o.getClass()) {
				return false;
			}
			UserTaskAccumulator that = (UserTaskAccumulator) o;
			return Objects.equals(name, that.name) &&
				Objects.equals(type, that.type) &&
				Objects.equals(value, that.value);
		}

		@Override
		public int hashCode() {
			return Objects.hash(name, type, value);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy