Skip to content
Snippets Groups Projects
  1. Dec 20, 2020
    • Seok Won's avatar
      Java: Create Kafka Streams Twitter filter · ea219736
      Seok Won authored
      Run StreamsFilterTweets.java and TwitterProducerOptimized.java
      
      See result using:
      kafka-console-consumer --bootstrap-server localhost:9092 --topic famous-tweets
      
      Tweets that go into a topic named "twitter-tweets", will be filtered with a tweet that is posted by a user who has 10K followers and they will go into a topic named "famous-tweets"
      Unverified
      ea219736
  2. Dec 07, 2020
    • Seok Won's avatar
      Create Optimized Producer for Twitter · 42444e1b
      Seok Won authored
      + Create app.config to load twitter api tokens
      
      Safe + High throughput by using
      
      compression = snappy,
      linger ms = 20,
      batch size = 32 * 1024,
      acks = all,
      idempotence = true,
      retries = INT32_MAX
      max.in.flight = 5
      42444e1b
  3. Nov 30, 2020
Loading