Apache Kafka vs Apache Storm

前端 未结 7 599
遥遥无期
遥遥无期 2021-01-29 18:55

Apache Kafka: Distributed messaging system
Apache Storm: Real Time Message Processing

How we can use both technologies in a real-time data pipeline for processing

7条回答
  •  暖寄归人
    2021-01-29 19:18

    This is how it works

    Kafka - To provide a realtime stream

    Storm - To perform some operations on that stream

    You might take a look at the GitHub project https://github.com/abhishekgoel137/kafka-nodejs-d3js.

    (D3js is a graph-representation library)

    Ideal case:

    Realtime application -> Kafka -> Storm -> NoSQL -> d3js
    

    This repository is based on:

    Realtime application -> Kafka ->  -> NoSQL -> d3js
    

提交回复
热议问题