Github user krisgeus commented on the pull request: https://github.com/apache/incubator-zeppelin/pull/868#issuecomment-219762689 @felixcheung I've made some progress in the testing area. It appears that spark-core-1.6.0-cdh5.7.0 brings in older akka version 2.2.3 instead of the 2.3.11 mentioned as akka.version property in the spark-1.6 profile. I've temporarily fixed this by adding a exclusion to this profile. Not the way it should end up but a temp solution for me to be able to run more tests successfully. The diff: diff --git a/spark-dependencies/pom.xml b/spark-dependencies/pom.xml index 8e23f22..58af3f0 100644 --- a/spark-dependencies/pom.xml +++ b/spark-dependencies/pom.xml @@ -518,6 +518,23 @@ </properties> <dependencies> + <dependency> + <groupId>org.apache.spark</groupId> + <artifactId>spark-core_2.10</artifactId> + <version>${spark.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + </exclusion> + <exclusion> + <groupId>org.spark-project.akka</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + + </dependencies> </profile> Still a few tests failing but getting closer. Thought you wanted to know before you start running tests on your end.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---