Apache Kafka 101: Producers (2023)

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ต.ค. 2024
  • ► TRY THIS YOURSELF: cnfl.io/kafka-...
    Learn about KafkaProducer, a Java class used to connect to an Apache Kafka cluster, as well as the ProducerRecord class, that you can use to hold the key/value pair being sent to the cluster.
    ► For a COMPLETE IMMERSIVE HANDS-ON EXPERIENCE, go to cnfl.io/kafka-...
    - -
    ABOUT CONFLUENT
    Confluent, founded by the creators of Apache Kafka®, enables organizations to harness the business value of live data. The Confluent Platform manages the barrage of stream data and makes it available throughout an organization. It provides various industries, from retail, logistics, and manufacturing, to financial services and online social networking, a scalable, unified, real-time data pipeline that enables applications ranging from large-volume data integration to big data analysis with Hadoop to real-time stream processing. To learn more, please visit confluent.io
    #kafka #kafkastreams #streamprocessing #apachekafka #confluent

ความคิดเห็น • 4

  • @tylerstark1969
    @tylerstark1969 2 ปีที่แล้ว +3

    Epic tutorial, just straight to the poin. Many thanks for the work.

  • @kurtvicious9375
    @kurtvicious9375 3 ปีที่แล้ว

    Can you explain more about cluster kafka ? .
    I found from internet that A Kafka cluster consists of one or more servers (Kafka brokers) running Kafka. Thats mean kafka cluster is actual server or cloud maybe ?.
    is posibble to run 2 or more same brokers in same server ? , for example run 2 zookeeper and 2 kafka server at same time ?
    Thank you

    • @oliverweiler8113
      @oliverweiler8113 3 ปีที่แล้ว

      Hi! A cluster consists of multiple brokers, which normally run on individual servers for fault tolerance (if one server goes down, the others won't). While you could run multiple brokers (and zookeeper instances) on one servers, it actually wouldn't make much sense because if the server goes down, ALL brokers go down.