带Spark的proto2无法运行

时间:2017-05-22 23:35:44

标签: java hadoop apache-spark gradle protocol-buffers

我有一个语法proto2

的原型文件

另外,我需要使用Spark(2.0.2)和HBase。我的项目是使用Gradle构建的。

现在,当我运行我的Java代码时,我收到了这个错误:

Exception in thread "main" org.apache.spark.SparkException: Job aborted due to stage failure: Task 0 in stage 3.0 failed 1 times, most recent failure: Lost task 0.0 in stage 3.0 (TID 3, localhost): java.lang.NoSuchMethodError: com.google.protobuf.Descriptors$Descriptor.getOneofs()Ljava/util/List;
    at com.google.protobuf.GeneratedMessageV3$FieldAccessorTable.<init>(GeneratedMessageV3.java:1707)
    at com.google.protobuf.AnyProto.<clinit>(AnyProto.java:52)
    at com.google.protobuf.Any.getDescriptor(Any.java:129)
    at com.google.protobuf.util.JsonFormat$ParserImpl.buildWellKnownTypeParsers(JsonFormat.java:1100)
    at com.google.protobuf.util.JsonFormat$ParserImpl.<clinit>(JsonFormat.java:1094)
    at com.google.protobuf.util.JsonFormat$Parser.merge(JsonFormat.java:277)

此堆栈跟踪与发布的问题here非常相似,但其中发布的解决方案不适用于我。

我尝试了什么:

我改变了

compile group: 'com.google.protobuf', name: 'protobuf-java', version: '2.5.0'

compile group: 'org.spark-project.protobuf', name: 'protobuf-java', version: '2.4.1-shaded'正如该链接所示,但仍然存在相同的错误。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

好的,这是解决方案:

relocate是拯救的方式。

在我的主程序中,我有一个像这样的build.gradle:

dependencies {
    compile project(path: ':utils:hbasewrapper', configuration: 'shadow')
}
apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
    baseName = 'awesome-jar'
    zip64 true
    // This is to avoid the conflict between proto3 we are using and the proto2 hbase is using.
    relocate ('com.google.protobuf', 'importer.com.google.protobuf')
}

然后,我创建了另一个gradle包,它包含以下build.gradle

group 'com.abc.hbasewrapper'
version '1.0-SNAPSHOT'

dependencies {
    compile group: 'org.apache.hbase', name: 'hbase-client', version: '1.3.0'
    compile group: 'org.apache.hbase', name: 'hbase-server', version: '1.2.2'
}

apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
    baseName = 'hbasewrapper'
    version = null
    zip64 true
    relocate ('com.google.protobuf', 'hbasewrapper.com.google.protobuf')
    relocate ('io.netty', 'hbasewrapper.io.netty')
}

根本原因是由于HBase正在引用proto2而我的程序正在使用proto3,从而导致此NoSuchMethodError错误。 解决方案是使用relocatecom.google.protobuf重新定位到另一个gradle项目,该项目的唯一目的是构建具有proto2的hbase jar文件。

希望它能帮助其他程序员! ^ ^