aboutsummaryrefslogtreecommitdiff
path: root/docs/security.md
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2014-08-05 23:41:34 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-08-05 23:41:34 -0700
commitee7f30856bf3f7b9a4f1d3641b6bc2cc4e842b0e (patch)
tree743376708abfde90de4932313a36fc9e5c836e7f /docs/security.md
parentc7b52010dfd0a765376464ebc43d5cdd3b80a460 (diff)
downloadspark-ee7f30856bf3f7b9a4f1d3641b6bc2cc4e842b0e.tar.gz
spark-ee7f30856bf3f7b9a4f1d3641b6bc2cc4e842b0e.tar.bz2
spark-ee7f30856bf3f7b9a4f1d3641b6bc2cc4e842b0e.zip
[SPARK-1022][Streaming][HOTFIX] Fixed zookeeper dependency of Kafka
https://github.com/apache/spark/pull/1751 caused maven builds to fail. ``` ~/Apache/spark(branch-1.1|✔) ➤ mvn -U -DskipTests clean install . . . [error] Apache/spark/external/kafka/src/test/scala/org/apache/spark/streaming/kafka/KafkaStreamSuite.scala:36: object NIOServerCnxnFactory is not a member of package org.apache.zookeeper.server [error] import org.apache.zookeeper.server.NIOServerCnxnFactory [error] ^ [error] Apache/spark/external/kafka/src/test/scala/org/apache/spark/streaming/kafka/KafkaStreamSuite.scala:199: not found: type NIOServerCnxnFactory [error] val factory = new NIOServerCnxnFactory() [error] ^ [error] two errors found [error] Compile failed at Aug 5, 2014 1:42:36 PM [0.503s] ``` The problem is how SBT and Maven resolves multiple versions of the same library, which in this case, is Zookeeper. Observing and comparing the dependency trees from Maven and SBT showed this. Spark depends on ZK 3.4.5 whereas Apache Kafka transitively depends on upon ZK 3.3.4. SBT decides to evict 3.3.4 and use the higher version 3.4.5. But Maven decides to stick to the closest (in the tree) dependent version of 3.3.4. And 3.3.4 does not have NIOServerCnxnFactory. The solution in this patch excludes zookeeper from the apache-kafka dependency in streaming-kafka module so that it just inherits zookeeper from Spark core. Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #1797 from tdas/kafka-zk-fix and squashes the following commits: 94b3931 [Tathagata Das] Fixed zookeeper dependency of Kafka
Diffstat (limited to 'docs/security.md')
0 files changed, 0 insertions, 0 deletions