Kafka Quickstart: What Dependencies do I need?

后端 未结 3 1788
不知归路
不知归路 2021-02-03 13:27

I am working through the kafka quickstart:

http://kafka.apache.org/07/quickstart.html

and the basic Consumer Group example:

https://cwiki.apache.org/conf

3条回答
  •  难免孤独
    2021-02-03 14:12

    I found this configuration of dependencies to be functional:

    
        
            org.springframework
            spring-core
            3.2.4.RELEASE
        
        
            org.springframework
            spring-context
            3.2.4.RELEASE
        
        
            org.apache.kafka
            kafka_2.9.2
            0.8.0-beta1
        
        
            javax.inject
            javax.inject
            1
        
        
            org.scala-lang
            scala-library
            2.9.2
        
        
            log4j
            log4j
            1.2.17
        
        
            com.101tec
            zkclient
            0.3
        
        
            com.yammer.metrics
            metrics-core
            2.2.0
        
    
    

提交回复
热议问题