YARN-4439. Clarify NMContainerStatus#toString method. Contributed by
Jian He
This commit is contained in:
parent
915cd6c3f4
commit
d8a45425eb
@ -1181,6 +1181,8 @@ Release 2.7.3 - UNRELEASED
|
||||
YARN-4422. Generic AHS sometimes doesn't show started, node, or logs on App page
|
||||
(Eric Payne via jeagles)
|
||||
|
||||
YARN-4439. Clarify NMContainerStatus#toString method. (Jian He via xgong)
|
||||
|
||||
Release 2.7.2 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -35,8 +35,6 @@
|
||||
import org.apache.hadoop.yarn.proto.YarnServerCommonServiceProtos.NMContainerStatusProtoOrBuilder;
|
||||
import org.apache.hadoop.yarn.server.api.protocolrecords.NMContainerStatus;
|
||||
|
||||
import com.google.protobuf.TextFormat;
|
||||
|
||||
public class NMContainerStatusPBImpl extends NMContainerStatus {
|
||||
|
||||
NMContainerStatusProto proto = NMContainerStatusProto
|
||||
@ -82,7 +80,17 @@ public boolean equals(Object other) {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return TextFormat.shortDebugString(getProto());
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("[").append(getContainerId()).append(", ")
|
||||
.append("CreateTime: ").append(getCreationTime()).append(", ")
|
||||
.append("State: ").append(getContainerState()).append(", ")
|
||||
.append("Capability: ").append(getAllocatedResource()).append(", ")
|
||||
.append("Diagnostics: ").append(getDiagnostics()).append(", ")
|
||||
.append("ExitStatus: ").append(getContainerExitStatus()).append(", ")
|
||||
.append("NodeLabelExpression: ").append(getNodeLabelExpression())
|
||||
.append("Priority: ").append(getPriority())
|
||||
.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user