Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

For Bill Bejeck - Why Kafka Streams over alternatives?

 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In your opinion, why should one choose Kafka Streams over other streaming alternatives? If, for example, I already have Kafka installed in my ecosystem to use for messaging, it's pretty straightforward to go ahead and use Kafka streams because I already have Kafka infrastructure, knowledge, etc.
But if I start from a greenfield, why would I choose Kafka Streams over alternatives?
Thanks!
 
author
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Lanny,

Good question.  

First of all, you need Kafka to run Kafka Streams.  

Right now Kafka is the defacto standard for getting data into other streaming technologies like Spark and Flink.
But with those technologies, you need a separate cluster to get up and running.  
With Kafka Streams, it's just another application you deploy. You can run on a single machine or multiple machines.  
Best of all you can increase or decrease the number of machines you are running on while the application is running, no need to stop, add a node to the cluster and restart.

Thanks,
Bill
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic