xushiyan commented on issue #5496: URL: https://github.com/apache/hudi/issues/5496#issuecomment-1146742466
@m2java thank you for the info! the root cause is the shading for `org.apache.hadoop.hbase.` in 0.11.0 ```shell # in 0.10.1 the dep is not shaded ➜ pwd && ls | sort hudi-spark3.1.2-bundle_2.12-0.10.1/org/apache/hadoop/hbase/protobuf ProtobufUtil$1.class ProtobufUtil.class ReplicationProtbufUtil$1.class ReplicationProtbufUtil.class RequestConverter.class ResponseConverter.class generated # in 0.11.0 the dep is shaded but `generated/` is not included ➜ pwd && ls | sort hudi-spark3.1-bundle_2.12-0.11.0/org/apache/hudi/org/apache/hadoop/hbase/protobuf ProtobufMagic.class ProtobufMessageConverter.class ProtobufUtil$1.class ProtobufUtil$ClassLoaderHolder.class ProtobufUtil$ConsumerWithException.class ProtobufUtil.class ReplicationProtbufUtil$1.class ReplicationProtbufUtil.class ``` will look further into how to fix the shading pattern in `packaging/hudi-spark-bundle/pom.xml` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
