merge YARN-1045. Improve toString implementation for PBImpls. Contributed by Jian He.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1514186 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Siddharth Seth 2013-08-15 07:21:55 +00:00
parent aaada1c859
commit d6049bd288
69 changed files with 202 additions and 74 deletions

View File

@ -27,6 +27,8 @@ Release 2.1.1-beta - UNRELEASED
IMPROVEMENTS IMPROVEMENTS
YARN-589. Expose a REST API for monitoring the fair scheduler (Sandy Ryza). YARN-589. Expose a REST API for monitoring the fair scheduler (Sandy Ryza).
YARN-1045. Improve toString implementation for PBImpls. (Jian He via sseth)
OPTIMIZATIONS OPTIMIZATIONS

View File

@ -38,6 +38,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class AllocateRequestPBImpl extends AllocateRequest { public class AllocateRequestPBImpl extends AllocateRequest {
@ -83,7 +85,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -49,6 +49,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.AllocateResponseProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.NMTokenProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.NMTokenProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class AllocateResponsePBImpl extends AllocateResponse { public class AllocateResponsePBImpl extends AllocateResponse {
@ -99,7 +101,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private synchronized void mergeLocalToBuilder() { private synchronized void mergeLocalToBuilder() {

View File

@ -26,6 +26,8 @@
import org.apache.hadoop.yarn.api.records.Token; import org.apache.hadoop.yarn.api.records.Token;
import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl; import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class CancelDelegationTokenRequestPBImpl extends public class CancelDelegationTokenRequestPBImpl extends
@ -90,7 +92,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -22,6 +22,8 @@
import org.apache.hadoop.security.proto.SecurityProtos.CancelDelegationTokenResponseProto; import org.apache.hadoop.security.proto.SecurityProtos.CancelDelegationTokenResponseProto;
import org.apache.hadoop.yarn.api.protocolrecords.CancelDelegationTokenResponse; import org.apache.hadoop.yarn.api.protocolrecords.CancelDelegationTokenResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class CancelDelegationTokenResponsePBImpl extends CancelDelegationTokenResponse { public class CancelDelegationTokenResponsePBImpl extends CancelDelegationTokenResponse {
@ -58,6 +60,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class FinishApplicationMasterRequestPBImpl extends FinishApplicationMasterRequest { public class FinishApplicationMasterRequestPBImpl extends FinishApplicationMasterRequest {
@ -68,7 +70,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.FinishApplicationMasterResponse; import org.apache.hadoop.yarn.api.protocolrecords.FinishApplicationMasterResponse;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.FinishApplicationMasterResponseProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class FinishApplicationMasterResponsePBImpl extends FinishApplicationMasterResponse { public class FinishApplicationMasterResponsePBImpl extends FinishApplicationMasterResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetApplicationReportRequestPBImpl extends GetApplicationReportRequest { public class GetApplicationReportRequestPBImpl extends GetApplicationReportRequest {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationReportResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetApplicationReportResponsePBImpl extends GetApplicationReportResponse { public class GetApplicationReportResponsePBImpl extends GetApplicationReportResponse {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetApplicationsRequestPBImpl extends GetApplicationsRequest { public class GetApplicationsRequestPBImpl extends GetApplicationsRequest {
@ -123,6 +125,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -31,6 +31,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetApplicationsResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetApplicationsResponsePBImpl public class GetApplicationsResponsePBImpl
@ -90,7 +92,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterMetricsRequest; import org.apache.hadoop.yarn.api.protocolrecords.GetClusterMetricsRequest;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsRequestProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetClusterMetricsRequestPBImpl extends GetClusterMetricsRequest { public class GetClusterMetricsRequestPBImpl extends GetClusterMetricsRequest {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterMetricsResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetClusterMetricsResponsePBImpl extends GetClusterMetricsResponse { public class GetClusterMetricsResponsePBImpl extends GetClusterMetricsResponse {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -18,17 +18,20 @@
package org.apache.hadoop.yarn.api.protocolrecords.impl.pb; package org.apache.hadoop.yarn.api.protocolrecords.impl.pb;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import java.util.EnumSet; import java.util.EnumSet;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Unstable;
import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesRequest; import org.apache.hadoop.yarn.api.protocolrecords.GetClusterNodesRequest;
import org.apache.hadoop.yarn.api.records.NodeState; import org.apache.hadoop.yarn.api.records.NodeState;
import org.apache.hadoop.yarn.api.records.impl.pb.ProtoUtils;
import org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto; import org.apache.hadoop.yarn.proto.YarnProtos.NodeStateProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesRequestProtoOrBuilder;
import org.apache.hadoop.yarn.api.records.impl.pb.ProtoUtils;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
@ -152,6 +155,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -31,6 +31,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetClusterNodesResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetClusterNodesResponsePBImpl extends GetClusterNodesResponse { public class GetClusterNodesResponsePBImpl extends GetClusterNodesResponse {
@ -89,7 +91,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetContainerStatusesRequestPBImpl extends public class GetContainerStatusesRequestPBImpl extends
@ -75,8 +77,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ") return TextFormat.shortDebugString(getProto());
.replaceAll("\\s+", " ");
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -39,6 +39,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetContainerStatusesResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetContainerStatusesResponsePBImpl extends public class GetContainerStatusesResponsePBImpl extends
@ -85,8 +87,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ") return TextFormat.shortDebugString(getProto());
.replaceAll("\\s+", " ");
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.security.proto.SecurityProtos.GetDelegationTokenRequestProtoOrBuilder; import org.apache.hadoop.security.proto.SecurityProtos.GetDelegationTokenRequestProtoOrBuilder;
import org.apache.hadoop.yarn.api.protocolrecords.GetDelegationTokenRequest; import org.apache.hadoop.yarn.api.protocolrecords.GetDelegationTokenRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetDelegationTokenRequestPBImpl extends GetDelegationTokenRequest { public class GetDelegationTokenRequestPBImpl extends GetDelegationTokenRequest {
@ -86,7 +88,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -27,6 +27,8 @@
import org.apache.hadoop.yarn.api.records.Token; import org.apache.hadoop.yarn.api.records.Token;
import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl; import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetDelegationTokenResponsePBImpl extends GetDelegationTokenResponse { public class GetDelegationTokenResponsePBImpl extends GetDelegationTokenResponse {
@ -94,7 +96,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.GetNewApplicationRequest; import org.apache.hadoop.yarn.api.protocolrecords.GetNewApplicationRequest;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationRequestProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetNewApplicationRequestPBImpl extends GetNewApplicationRequest { public class GetNewApplicationRequestPBImpl extends GetNewApplicationRequest {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -31,6 +31,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetNewApplicationResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetNewApplicationResponsePBImpl extends GetNewApplicationResponse { public class GetNewApplicationResponsePBImpl extends GetNewApplicationResponse {
@ -74,7 +76,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetQueueInfoRequestPBImpl extends GetQueueInfoRequest { public class GetQueueInfoRequestPBImpl extends GetQueueInfoRequest {
@ -124,6 +126,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -27,6 +27,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueInfoResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetQueueInfoResponsePBImpl extends GetQueueInfoResponse { public class GetQueueInfoResponsePBImpl extends GetQueueInfoResponse {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
@Override @Override

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.GetQueueUserAclsInfoRequest; import org.apache.hadoop.yarn.api.protocolrecords.GetQueueUserAclsInfoRequest;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoRequestProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetQueueUserAclsInfoRequestPBImpl extends GetQueueUserAclsInfoRequest { public class GetQueueUserAclsInfoRequestPBImpl extends GetQueueUserAclsInfoRequest {
@ -64,6 +66,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -31,6 +31,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.GetQueueUserAclsInfoResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class GetQueueUserAclsInfoResponsePBImpl extends GetQueueUserAclsInfoResponse { public class GetQueueUserAclsInfoResponsePBImpl extends GetQueueUserAclsInfoResponse {
@ -90,7 +92,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class KillApplicationRequestPBImpl extends KillApplicationRequest { public class KillApplicationRequestPBImpl extends KillApplicationRequest {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.KillApplicationResponse; import org.apache.hadoop.yarn.api.protocolrecords.KillApplicationResponse;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.KillApplicationResponseProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class KillApplicationResponsePBImpl extends KillApplicationResponse { public class KillApplicationResponsePBImpl extends KillApplicationResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -25,6 +25,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RegisterApplicationMasterRequestPBImpl extends RegisterApplicationMasterRequest { public class RegisterApplicationMasterRequestPBImpl extends RegisterApplicationMasterRequest {
@ -65,7 +67,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -38,6 +38,7 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.RegisterApplicationMasterResponseProtoOrBuilder;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import com.google.protobuf.TextFormat;
@Private @Private
@ -85,7 +86,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -26,6 +26,8 @@
import org.apache.hadoop.yarn.api.records.Token; import org.apache.hadoop.yarn.api.records.Token;
import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl; import org.apache.hadoop.yarn.api.records.impl.pb.TokenPBImpl;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RenewDelegationTokenRequestPBImpl extends public class RenewDelegationTokenRequestPBImpl extends
@ -89,7 +91,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.security.proto.SecurityProtos.RenewDelegationTokenResponseProtoOrBuilder; import org.apache.hadoop.security.proto.SecurityProtos.RenewDelegationTokenResponseProtoOrBuilder;
import org.apache.hadoop.yarn.api.protocolrecords.RenewDelegationTokenResponse; import org.apache.hadoop.yarn.api.protocolrecords.RenewDelegationTokenResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RenewDelegationTokenResponsePBImpl extends public class RenewDelegationTokenResponsePBImpl extends
@ -66,7 +68,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void maybeInitBuilder() { private void maybeInitBuilder() {

View File

@ -31,6 +31,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainerRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainerRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainerRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainerRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class StartContainerRequestPBImpl extends StartContainerRequest { public class StartContainerRequestPBImpl extends StartContainerRequest {
@ -75,7 +77,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -41,6 +41,7 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainersResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StartContainersResponseProtoOrBuilder;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
@ -87,8 +88,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ") return TextFormat.shortDebugString(getProto());
.replaceAll("\\s+", " ");
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class StopContainersRequestPBImpl extends StopContainersRequest { public class StopContainersRequestPBImpl extends StopContainersRequest {
@ -73,8 +75,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ") return TextFormat.shortDebugString(getProto());
.replaceAll("\\s+", " ");
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -37,6 +37,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.StopContainersResponseProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class StopContainersResponsePBImpl extends StopContainersResponse { public class StopContainersResponsePBImpl extends StopContainersResponse {
@ -80,8 +82,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ") return TextFormat.shortDebugString(getProto());
.replaceAll("\\s+", " ");
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -28,6 +28,8 @@
import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationRequestProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationRequestProto;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationRequestProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class SubmitApplicationRequestPBImpl extends SubmitApplicationRequest { public class SubmitApplicationRequestPBImpl extends SubmitApplicationRequest {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -24,6 +24,8 @@
import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationResponse; import org.apache.hadoop.yarn.api.protocolrecords.SubmitApplicationResponse;
import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationResponseProto; import org.apache.hadoop.yarn.proto.YarnServiceProtos.SubmitApplicationResponseProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class SubmitApplicationResponsePBImpl extends SubmitApplicationResponse { public class SubmitApplicationResponsePBImpl extends SubmitApplicationResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -18,3 +18,4 @@
@InterfaceAudience.Private @InterfaceAudience.Private
package org.apache.hadoop.yarn.api.protocolrecords.impl.pb; package org.apache.hadoop.yarn.api.protocolrecords.impl.pb;
import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceAudience;

View File

@ -36,6 +36,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto; import org.apache.hadoop.yarn.proto.YarnProtos.FinalApplicationStatusProto;
import org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto; import org.apache.hadoop.yarn.proto.YarnProtos.YarnApplicationStateProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class ApplicationReportPBImpl extends ApplicationReport { public class ApplicationReportPBImpl extends ApplicationReport {
@ -424,7 +426,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -26,6 +26,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.ApplicationResourceUsageReportProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto; import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class ApplicationResourceUsageReportPBImpl public class ApplicationResourceUsageReportPBImpl
@ -73,7 +75,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -32,6 +32,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto; import org.apache.hadoop.yarn.proto.YarnProtos.PriorityProto;
import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto; import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class ApplicationSubmissionContextPBImpl public class ApplicationSubmissionContextPBImpl
@ -80,7 +82,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -39,6 +39,7 @@
import org.apache.hadoop.yarn.proto.YarnProtos.StringStringMapProto; import org.apache.hadoop.yarn.proto.YarnProtos.StringStringMapProto;
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
@ -89,7 +90,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
protected final ByteBuffer convertFromProtoFormat(ByteString byteString) { protected final ByteBuffer convertFromProtoFormat(ByteString byteString) {

View File

@ -29,6 +29,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.ContainerStatusProto; import org.apache.hadoop.yarn.proto.YarnProtos.ContainerStatusProto;
import org.apache.hadoop.yarn.proto.YarnProtos.ContainerStatusProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.ContainerStatusProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class ContainerStatusPBImpl extends ContainerStatus { public class ContainerStatusPBImpl extends ContainerStatus {
@ -72,7 +74,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto; import org.apache.hadoop.yarn.proto.YarnProtos.LocalResourceVisibilityProto;
import org.apache.hadoop.yarn.proto.YarnProtos.URLProto; import org.apache.hadoop.yarn.proto.YarnProtos.URLProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class LocalResourcePBImpl extends LocalResource { public class LocalResourcePBImpl extends LocalResource {
@ -72,7 +74,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private synchronized void mergeLocalToBuilder() { private synchronized void mergeLocalToBuilder() {

View File

@ -29,6 +29,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.NodeReportProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto; import org.apache.hadoop.yarn.proto.YarnProtos.ResourceProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class NodeReportPBImpl extends NodeReport { public class NodeReportPBImpl extends NodeReport {
@ -234,7 +236,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToBuilder() { private void mergeLocalToBuilder() {

View File

@ -25,6 +25,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProto;
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContainerProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class PreemptionContainerPBImpl extends PreemptionContainer { public class PreemptionContainerPBImpl extends PreemptionContainer {
@ -69,7 +71,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -33,6 +33,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionContractProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class PreemptionContractPBImpl extends PreemptionContract { public class PreemptionContractPBImpl extends PreemptionContract {
@ -77,7 +79,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -27,6 +27,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionMessageProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto; import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class PreemptionMessagePBImpl extends PreemptionMessage { public class PreemptionMessagePBImpl extends PreemptionMessage {
@ -71,7 +73,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -25,6 +25,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.PreemptionResourceRequestProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto; import org.apache.hadoop.yarn.proto.YarnProtos.ResourceRequestProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class PreemptionResourceRequestPBImpl extends PreemptionResourceRequest { public class PreemptionResourceRequestPBImpl extends PreemptionResourceRequest {
@ -69,7 +71,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -25,6 +25,7 @@
import com.google.protobuf.ByteString; import com.google.protobuf.ByteString;
import com.google.protobuf.Message; import com.google.protobuf.Message;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
@ -51,7 +52,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
protected final ByteBuffer convertFromProtoFormat(ByteString byteString) { protected final ByteBuffer convertFromProtoFormat(ByteString byteString) {

View File

@ -32,6 +32,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProtoOrBuilder;
import org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto; import org.apache.hadoop.yarn.proto.YarnProtos.QueueStateProto;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class QueueInfoPBImpl extends QueueInfo { public class QueueInfoPBImpl extends QueueInfo {
@ -175,7 +177,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void initLocalApplicationsList() { private void initLocalApplicationsList() {

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto; import org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProto;
import org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.QueueUserACLInfoProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class QueueUserACLInfoPBImpl extends QueueUserACLInfo { public class QueueUserACLInfoPBImpl extends QueueUserACLInfo {
@ -103,7 +105,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void initLocalQueueUserAclsList() { private void initLocalQueueUserAclsList() {

View File

@ -30,6 +30,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto; import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProto;
import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.StrictPreemptionContractProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class StrictPreemptionContractPBImpl extends StrictPreemptionContract { public class StrictPreemptionContractPBImpl extends StrictPreemptionContract {
@ -74,7 +76,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {

View File

@ -25,6 +25,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.URLProto; import org.apache.hadoop.yarn.proto.YarnProtos.URLProto;
import org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.URLProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class URLPBImpl extends URL { public class URLPBImpl extends URL {
@ -64,7 +66,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void maybeInitBuilder() { private void maybeInitBuilder() {

View File

@ -25,6 +25,8 @@
import org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto; import org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProto;
import org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnProtos.YarnClusterMetricsProtoOrBuilder;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class YarnClusterMetricsPBImpl extends YarnClusterMetrics { public class YarnClusterMetricsPBImpl extends YarnClusterMetrics {
@ -64,7 +66,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void maybeInitBuilder() { private void maybeInitBuilder() {

View File

@ -18,3 +18,4 @@
@InterfaceAudience.Private @InterfaceAudience.Private
package org.apache.hadoop.yarn.api.records.impl.pb; package org.apache.hadoop.yarn.api.records.impl.pb;
import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceAudience;

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshAdminAclsRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshAdminAclsRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshAdminAclsRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshAdminAclsRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshAdminAclsRequestPBImpl public class RefreshAdminAclsRequestPBImpl
@ -64,6 +66,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshAdminAclsResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshAdminAclsResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshAdminAclsResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshAdminAclsResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshAdminAclsResponsePBImpl extends RefreshAdminAclsResponse { public class RefreshAdminAclsResponsePBImpl extends RefreshAdminAclsResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshNodesRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshNodesRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshNodesRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshNodesRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshNodesRequestPBImpl extends RefreshNodesRequest { public class RefreshNodesRequestPBImpl extends RefreshNodesRequest {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshNodesResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshNodesResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshNodesResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshNodesResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshNodesResponsePBImpl extends RefreshNodesResponse { public class RefreshNodesResponsePBImpl extends RefreshNodesResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshQueuesRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshQueuesRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshQueuesRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshQueuesRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshQueuesRequestPBImpl extends RefreshQueuesRequest { public class RefreshQueuesRequestPBImpl extends RefreshQueuesRequest {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshQueuesResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshQueuesResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshQueuesResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshQueuesResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshQueuesResponsePBImpl extends RefreshQueuesResponse { public class RefreshQueuesResponsePBImpl extends RefreshQueuesResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshServiceAclsRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshServiceAclsRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshServiceAclsRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshServiceAclsRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshServiceAclsRequestPBImpl extends RefreshServiceAclsRequest { public class RefreshServiceAclsRequestPBImpl extends RefreshServiceAclsRequest {
@ -65,6 +67,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshServiceAclsResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshServiceAclsResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshServiceAclsResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshServiceAclsResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshServiceAclsResponsePBImpl extends public class RefreshServiceAclsResponsePBImpl extends
@ -66,6 +68,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshSuperUserGroupsConfigurationRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshSuperUserGroupsConfigurationRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshSuperUserGroupsConfigurationRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshSuperUserGroupsConfigurationRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshSuperUserGroupsConfigurationRequestPBImpl public class RefreshSuperUserGroupsConfigurationRequestPBImpl
@ -64,6 +66,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshSuperUserGroupsConfigurationResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshSuperUserGroupsConfigurationResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshSuperUserGroupsConfigurationResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshSuperUserGroupsConfigurationResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshSuperUserGroupsConfigurationResponsePBImpl extends RefreshSuperUserGroupsConfigurationResponse { public class RefreshSuperUserGroupsConfigurationResponsePBImpl extends RefreshSuperUserGroupsConfigurationResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshUserToGroupsMappingsRequestProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshUserToGroupsMappingsRequestProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshUserToGroupsMappingsRequest; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshUserToGroupsMappingsRequest;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshUserToGroupsMappingsRequestPBImpl public class RefreshUserToGroupsMappingsRequestPBImpl
@ -64,6 +66,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -23,6 +23,8 @@
import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshUserToGroupsMappingsResponseProto; import org.apache.hadoop.yarn.proto.YarnServerResourceManagerServiceProtos.RefreshUserToGroupsMappingsResponseProto;
import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshUserToGroupsMappingsResponse; import org.apache.hadoop.yarn.server.api.protocolrecords.RefreshUserToGroupsMappingsResponse;
import com.google.protobuf.TextFormat;
@Private @Private
@Unstable @Unstable
public class RefreshUserToGroupsMappingsResponsePBImpl extends RefreshUserToGroupsMappingsResponse { public class RefreshUserToGroupsMappingsResponsePBImpl extends RefreshUserToGroupsMappingsResponse {
@ -63,6 +65,6 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
} }

View File

@ -22,6 +22,8 @@
import org.apache.hadoop.yarn.proto.YarnServerCommonProtos.NodeHealthStatusProtoOrBuilder; import org.apache.hadoop.yarn.proto.YarnServerCommonProtos.NodeHealthStatusProtoOrBuilder;
import org.apache.hadoop.yarn.server.api.records.NodeHealthStatus; import org.apache.hadoop.yarn.server.api.records.NodeHealthStatus;
import com.google.protobuf.TextFormat;
public class NodeHealthStatusPBImpl extends NodeHealthStatus { public class NodeHealthStatusPBImpl extends NodeHealthStatus {
private NodeHealthStatusProto.Builder builder; private NodeHealthStatusProto.Builder builder;
@ -62,7 +64,7 @@ public boolean equals(Object other) {
@Override @Override
public String toString() { public String toString() {
return getProto().toString().replaceAll("\\n", ", ").replaceAll("\\s+", " "); return TextFormat.shortDebugString(getProto());
} }
private void mergeLocalToProto() { private void mergeLocalToProto() {