DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workloads.

Related

  • Introduction to Apache Kafka With Spring
  • DGS GraphQL and Spring Boot
  • Harnessing Real-Time Insights With Streaming SQL on Kafka
  • Setting Up Local Kafka Container for Spring Boot Application

Trending

  • Vibe Coding With GitHub Copilot: Optimizing API Performance in Fintech Microservices
  • Mastering Advanced Aggregations in Spark SQL
  • Integration Isn’t a Task — It’s an Architectural Discipline
  • Metrics at a Glance for Production Clusters
  1. DZone
  2. Data Engineering
  3. Big Data
  4. Write a Kafka Producer Using Twitter Stream

Write a Kafka Producer Using Twitter Stream

With the newly open sourced Twitter HBC, a Java HTTP library for consuming Twitter’s Streaming API, we can easily create a Kafka twitter stream producer.

By 
Saurabh Chhajed user avatar
Saurabh Chhajed
·
Updated Oct. 05, 20 · Tutorial
Likes (13)
Comment
Save
Tweet
Share
38.9K Views

Join the DZone community and get the full member experience.

Join For Free

Twitter open-sourced its Hosebird client (hbc), a robust Java HTTP library for consuming Twitter’s Streaming API. In this post, I am going to present a demo of how we can use hbc to create a Kafka twitter stream producer, which tracks a few terms in Twitter statuses and produces a Kafka stream out of it, which can be utilized later for counting the terms, or sending that data from Kafka to Storm (Kafka-Storm pipeline) or HDFS ( as we will see in next post about using Camus API).

You can download and run a complete Sample here.

Requirements

  • Apache Kafka 2.6.0
  • Twitter Developer account ( for API Key, Secret etc.)
  • Apache Zookeeper ( required for Kafka)
  • Oracle JDK 1.8 (64 bit )

Build Environment

  • Eclipse
  • Apache Maven 2/3

How to Generate Twitter API Keys Using Developer Account

  1. Go to https://dev.twitter.com/apps/new and log in, if necessary.
  2. Enter your Application Name, Description, and your website address. You can leave the callback URL empty.
  3. Accept the TOS.
  4. Submit the form by clicking the Create your Twitter Application.
  5. Copy the consumer key (API key) and consumer secret from the screen into your application.
  6. After creating your Twitter Application, you have to give access to your Twitter Account to use this Application. To do this, click the Create my Access Token.
  7. Now you will have Consumer Key, Consumer Secret, Acess token, Access Token Secret to be used in streaming API calls.

Steps to Run the Sample

1. Start the Zookeeper server 

in Kafka using the following script in your Kafka installation folder  –

$bin/zookeeper-server-start.sh config/zookeeper.properties &

and, verify if it is running on default port 2181 using –

$netstat -anlp | grep 2181

2. Start Kafka server 

$bin/kafka-server-start.sh config/server.properties  &

and, verify if it is running on default port 9092

$netstat -anlp | grep 9092

If you are on a mac, and you have brew installed, both can be done with simple brew commands.

$brew install kafka   # this internally installs zookeeper too

$brew services start zookeeper

$kafka-server-start  /usr/local/etc/kafka/server.properties

3. Create Topic

$bin/kafka-topics --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic twitter-topic

4. Validate the Topic

$bin/kafka-topics --describe --zookeeper localhost:2181 --topic twitter-topic

5. Publish Message

Now, when we are all set with Kafka running and ready to accept messages on the topic we just created., we will create a Kafka Producer, which makes use of hbc client API to get twitter stream for tracking terms and puts on the topic named as “twitter-topic”.

  • First, we need to give maven dependencies for hbc-core for latest version and some other dependencies needed for Kafka –
XML
 




xxxxxxxxxx
1


 
1
<dependency>
2
<groupId>com.twitter</groupId>
3
<artifactId>hbc-core</artifactId> <!-- or hbc-twitter4j -->
4
<version>2.2.0</version> <!-- or whatever the latest version is -->
5
</dependency>


  •  Then, we need to set properties to configure our Kafka Producer to publish messages to the topic and setup required properties for server  –
    private static final String TOPIC = "twitter-topic";
  • Java
     




    xxxxxxxxxx
    1


     
    1
    properties.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, TwitterKafkaConfig.SERVERS);
    2
    properties.put(ProducerConfig.ACKS_CONFIG, "1");
    3
    properties.put(ProducerConfig.LINGER_MS_CONFIG, 500);
    4
    properties.put(ProducerConfig.RETRIES_CONFIG, 0);
    5
    properties.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, LongSerializer.class.getName());
    6
    properties.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName());


  • Set up a StatusFilterEndpoint, which will set up track terms to be tracked on recent status messages, as in the example - 
  • Java
     




    xxxxxxxxxx
    1


     
    1
    StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint();
    2
    endpoint.trackTerms(Lists.newArrayList(
    3
            term));


  • Provide authentication parameters for OAuth ( we are getting them using command line parameters for this program, so don't forget to pass those as VM arguments when you run it on IDE) for using twitter that we generated earlier and create the client using endpoint and auth –
Java
 




xxxxxxxxxx
1


 
1
Authentication auth = new OAuth1(consumerKey, consumerSecret, token,
2
                secret);
3
Client client = new ClientBuilder().hosts(Constants.STREAM_HOST)
4
                .endpoint(endpoint).authentication(auth)
5
                .processor(new StringDelimitedProcessor(queue)).build();


  • Last step, connect to the client, fetch messages from the queue and send through Kafka Producer –
Java
 




xxxxxxxxxx
1
11


 
1
client.connect();
2
try (Producer<Long, String> producer = getProducer()) {
3
    while (true) {
4
        ProducerRecord<Long, String> message = new ProducerRecord<>(TwitterKafkaConfig.TOPIC, queue.take());
5
        producer.send(message);
6
    }
7
} catch (InterruptedException e) {
8
    e.printStackTrace();
9
} finally {
10
    client.stop();
11
}


To run the complete example run TwitterKafkaProducer.java class as a Java Application in your favorite IDE and don't forget to pass the arguments with your API keys and terms. Read detailed instructions here.

6. Validate Messages

Consume messages on-topic twitter-topic to verify the incoming message stream. 

$bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic twitter-topic --from-beginning

Also, to see how you can integrate Kafka with HDFS using camus from LinkedIn, you can visit the blog here.

kafka twitter Stream (computing) application Apache Maven

Published at DZone with permission of Saurabh Chhajed, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Introduction to Apache Kafka With Spring
  • DGS GraphQL and Spring Boot
  • Harnessing Real-Time Insights With Streaming SQL on Kafka
  • Setting Up Local Kafka Container for Spring Boot Application

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!