blob: 8424be2313245fff77c6bfc47b4a66d37550a4ce [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
*
* 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.slider.api.types;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.map.annotate.JsonSerialize;
/**
* Serialized node entry information. Must be kept in sync with the protobuf equivalent.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
public class NodeEntryInformation {
/** incrementing counter of instances that failed */
public int failed;
/** Counter of "failed recently" events. */
public int failedRecently;
/** timestamp of last use */
public long lastUsed;
/** Number of live nodes. */
public int live;
/** incrementing counter of instances that have been pre-empted. */
public int preempted;
/** Priority */
public int priority;
/** instance explicitly requested on this node */
public int requested;
/** number of containers being released off this node */
public int releasing;
/** incrementing counter of instances that failed to start */
public int startFailed;
/** number of starting instances */
public int starting;
@Override
public String toString() {
final StringBuilder sb = new StringBuilder(
"NodeEntryInformation{");
sb.append("priority=").append(priority);
sb.append(", live=").append(live);
sb.append(", requested=").append(requested);
sb.append(", releasing=").append(releasing);
sb.append(", starting=").append(starting);
sb.append(", failed=").append(failed);
sb.append(", failedRecently=").append(failedRecently);
sb.append(", startFailed=").append(startFailed);
sb.append(", preempted=").append(preempted);
sb.append(", lastUsed=").append(lastUsed);
sb.append('}');
return sb.toString();
}
}