HBASE-19387 Fix Hbase-spark Arm64 SnappyError
The spark version in hbase is 1.6.0. And the snappy version based on hbase-1.6.0 do not support the Arm64. The patch is to update the dependency for snappy-java in hbase-spark. Jira: HBASE-19387 Change-Id: I02449baf43a5b49d1de7065682863ea822e4de88 Signed-off-by: Yuqi Gu <yuqi.gu@arm.com> Signed-off-by: tedyu <yuzhihong@gmail.com>
This commit is contained in:
parent
5034411438
commit
139c3305a5
|
@ -77,8 +77,18 @@
|
|||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<!-- exclude the wrong snappy-java version in spark-1.6 -->
|
||||
<groupId>org.xerial.snappy</groupId>
|
||||
<artifactId>snappy-java</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.xerial.snappy</groupId>
|
||||
<artifactId>snappy-java</artifactId>
|
||||
<version>1.1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
|
|
Loading…
Reference in New Issue