[
https://issues.apache.org/jira/browse/CRUNCH-619?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15851333#comment-15851333
]
Attila Sasvari commented on CRUNCH-619:
---------------------------------------
HBase 2 uses netty {{4.1.1.Final}}, and it was not addressed in crunch-spark.
In fact, the dependency {{org.apache.spark:spark-core_2.11:jar:2.0.0}} pulled
in {{io.netty:netty-all:jar:4.0.29.Final:provided}}. That caused the runtime
{{org.apache.hadoop.hbase.ipc.CallTimeoutException}}.
So I had to add the following dependency to {{crunch-spark}} / {{pom.xml}}
{code}
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.1.Final</version>
<type>jar</type>
</dependency>
{code}
After this, all integration tests passed.
I will upload a new patch soon.
> Run on HBase 2
> --------------
>
> Key: CRUNCH-619
> URL: https://issues.apache.org/jira/browse/CRUNCH-619
> Project: Crunch
> Issue Type: Improvement
> Affects Versions: 0.14.0
> Reporter: Tom White
> Assignee: Tom White
> Attachments: CRUNCH-619.patch
>
>
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)