This is an automated email from the ASF dual-hosted git repository.
stack pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.4 by this push:
new a7d10e5 HBASE-25989 FanOutOneBlockAsyncDFSOutput using shaded
protobuf in hdfs 3.3+ (#3368)
a7d10e5 is described below
commit a7d10e550f5ac3b8a43e22b2c4a5706fddbe34c3
Author: Michael Stack <[email protected]>
AuthorDate: Sat Jun 12 07:27:34 2021 -0700
HBASE-25989 FanOutOneBlockAsyncDFSOutput using shaded protobuf in hdfs 3.3+
(#3368)
Signed-off-by: Wei-Chiu Chuang <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
---
.../main/java/org/apache/hadoop/hbase/io/asyncfs/ProtobufDecoder.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/ProtobufDecoder.java
b/hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/ProtobufDecoder.java
index 98b4e6f..d6e68f3 100644
---
a/hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/ProtobufDecoder.java
+++
b/hbase-asyncfs/src/main/java/org/apache/hadoop/hbase/io/asyncfs/ProtobufDecoder.java
@@ -123,7 +123,7 @@ public class ProtobufDecoder extends
MessageToMessageDecoder<ByteBuf> {
try {
protobufMessageLiteClass =
Class.forName("org.apache.hadoop.thirdparty.protobuf.MessageLite");
protobufMessageLiteBuilderClass = Class.forName(
- "org.apache.hadoop.thirdparty.protobuf.MessageLite.Builder");
+ "org.apache.hadoop.thirdparty.protobuf.MessageLite$Builder");
LOG.debug("Hadoop 3.3 and above shades protobuf.");
} catch (ClassNotFoundException e) {
LOG.debug("Hadoop 3.2 and below use unshaded protobuf.", e);