本文整理汇总了Java中org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl类的典型用法代码示例。如果您正苦于以下问题:Java SerializedExceptionPBImpl类的具体用法?Java SerializedExceptionPBImpl怎么用?Java SerializedExceptionPBImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SerializedExceptionPBImpl类属于org.apache.hadoop.yarn.api.records.impl.pb包,在下文中一共展示了SerializedExceptionPBImpl类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDeserialize
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
@Test
public void testDeserialize() throws Exception {
Exception ex = new Exception("test exception");
SerializedExceptionPBImpl pb = new SerializedExceptionPBImpl();
try {
pb.deSerialize();
Assert.fail("deSerialze should throw YarnRuntimeException");
} catch (YarnRuntimeException e) {
Assert.assertEquals(ClassNotFoundException.class,
e.getCause().getClass());
}
pb.init(ex);
Assert.assertEquals(ex.toString(), pb.deSerialize().toString());
}
示例2: mergeLocalToBuilder
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private void mergeLocalToBuilder() {
if (this.resource != null &&
!((LocalResourcePBImpl)this.resource).getProto()
.equals(builder.getResource())) {
builder.setResource(convertToProtoFormat(this.resource));
}
if (this.localPath != null &&
!((URLPBImpl)this.localPath).getProto()
.equals(builder.getLocalPath())) {
builder.setLocalPath(convertToProtoFormat(this.localPath));
}
if (this.exception != null &&
!((SerializedExceptionPBImpl)this.exception).getProto()
.equals(builder.getException())) {
builder.setException(convertToProtoFormat(this.exception));
}
}
示例3: testSerializedException
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
@Test
public void testSerializedException() throws Exception {
SerializedExceptionPBImpl orig = new SerializedExceptionPBImpl();
orig.init(new Exception("test exception"));
SerializedExceptionProto proto = orig.getProto();
SerializedExceptionPBImpl deser = new SerializedExceptionPBImpl(proto);
Assert.assertEquals(orig, deser);
Assert.assertEquals(orig.getMessage(), deser.getMessage());
Assert.assertEquals(orig.getRemoteTrace(), deser.getRemoteTrace());
Assert.assertEquals(orig.getCause(), deser.getCause());
}
示例4: testBeforeInit
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
@Test
public void testBeforeInit() throws Exception {
SerializedExceptionProto defaultProto =
SerializedExceptionProto.newBuilder().build();
SerializedExceptionPBImpl pb1 = new SerializedExceptionPBImpl();
Assert.assertNull(pb1.getCause());
SerializedExceptionPBImpl pb2 = new SerializedExceptionPBImpl();
Assert.assertEquals(defaultProto, pb2.getProto());
SerializedExceptionPBImpl pb3 = new SerializedExceptionPBImpl();
Assert.assertEquals(defaultProto.getTrace(), pb3.getRemoteTrace());
}
示例5: convertFromProtoFormat
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private SerializedExceptionPBImpl convertFromProtoFormat(
SerializedExceptionProto p) {
return new SerializedExceptionPBImpl(p);
}
示例6: convertToProtoFormat
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private SerializedExceptionProto convertToProtoFormat(SerializedException t) {
return ((SerializedExceptionPBImpl) t).getProto();
}
示例7: convertFromProtoFormat
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private SerializedExceptionPBImpl convertFromProtoFormat(SerializedExceptionProto p) {
return new SerializedExceptionPBImpl(p);
}
示例8: convertToProtoFormat
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private SerializedExceptionProto convertToProtoFormat(SerializedException t) {
return ((SerializedExceptionPBImpl)t).getProto();
}
示例9: convertFromProtoFormat
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
private SerializedExceptionPBImpl convertFromProtoFormat(
SerializedExceptionProto p) {
return new SerializedExceptionPBImpl(p);
}
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:5,代码来源:IncreaseContainersResourceResponsePBImpl.java
示例10: testSerializedExceptionPBImpl
import org.apache.hadoop.yarn.api.records.impl.pb.SerializedExceptionPBImpl; //导入依赖的package包/类
@Test
public void testSerializedExceptionPBImpl() throws Exception {
validatePBImplRecord(SerializedExceptionPBImpl.class,
SerializedExceptionProto.class);
}