Kafka

KafkaSpout API

KafkaSpout API

 

KafkaSpout is a spout implementation that integrates with Storm and can read from Kafka clusters and then emit those messages as tuples within the Storm ecosystem. Here’s a sample code to create a simple KafkaSpout -

 

// ZooKeeper connection string

BrokerHosts hosts = new ZkHosts(zkConnString);

 

//Creating SpoutConfig Object

SpoutConfig spoutConfig = new SpoutConfig(hosts, 

   topicName, "/" + topicName UUID.randomUUID().toString());

 

//convert the ByteBuffer to String.

spoutConfig.scheme = new SchemeAsMultiScheme(new StringScheme());

 

//Assign SpoutConfig to KafkaSpout.

KafkaSpout kafkaSpout = new KafkaSpout(spoutConfig);

 

Top course recommendations for you

    PyTest Basics
    2 hrs
    Beginner
    2.7K+ Learners
    4.41  (132)
    Python MySQL
    1 hrs
    Beginner
    11.5K+ Learners
    4.51  (480)
    Python Automation Project
    2 hrs
    Beginner
    6.7K+ Learners
    4.57  (209)
    Python For Android
    2 hrs
    Beginner
    5.2K+ Learners
    4.5  (109)
    Kivy Projects
    2 hrs
    Beginner
    1.8K+ Learners
    4.48  (52)
    Regex in Python
    1 hrs
    Beginner
    2.6K+ Learners
    4.35  (134)
    Heap Sort Program in C
    1 hrs
    Beginner
    1.2K+ Learners
    4.42  (38)
    Merge Sort Algorithm Using Java
    1 hrs
    Beginner
    1.1K+ Learners
    4.61  (23)