Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.0.0-alpha1
-
None
-
Incompatible change
-
Changed Apache Kafka dependency from kafka-2.10 to kafka-clients in hadoop-kafka module.
Description
The newly added Kafka module defines the Kafka dependency as:
... <groupId>org.apache.kafka</groupId> <artifactId>kafka-2.10</artifactId> <version>${kafka.version}</version> ...
This is unfavorable because its using the server dependency, which transitively has the client jars. The server dependency includes all of the server code and some larger transitive dependencies like Scala and Zookeeper.
Instead the pom file should be changed to only depend on the clients jar which is a much smaller footprint:
... <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>${kafka.version}</version> ...
Attachments
Attachments
Issue Links
- relates to
-
HADOOP-10949 metrics2 sink plugin for Apache Kafka
- Resolved
- links to