Kafka Producer Properties | Acknowledgements, Retries and Timeouts [Apache Kafka Tutorial #15]

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ม.ค. 2025

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

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

    Finally you got the title right

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

    i found 6:40 to be particularly useful, explaining in detail what the max flights setting was for.

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

      Thanks 😊

    • @jcrshankar
      @jcrshankar 3 ปีที่แล้ว +1

      Remember when you set 5 with retry.. the order can't be guarantee unless you're producer set as idompotent props as true.. if not you should set 1 to have synchronous call

    • @57skies
      @57skies 2 ปีที่แล้ว

      @@jcrshankar this is wrong. Since 1.0.0 at least

  • @nishith892
    @nishith892 3 ปีที่แล้ว +1

    Thanks very much for such useful information

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

      Happy to help :)

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

    Helpful, thanks :)

    • @Codetuber
      @Codetuber  2 ปีที่แล้ว

      Glad it helped!

  • @akbarmunwar5435
    @akbarmunwar5435 ปีที่แล้ว +1

    Good

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

    Is there a similar video for consumer?

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

      Yes please check in the playlist :)

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

    Can you show how you apply it to the previous program?

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

    could you explain kafka broker configuration and consumer configuration

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

      Please checkout complete playlist :)

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

    let's say example, I have 3 brokers, created topic with 3 replication and partition and also my ISR is set to 3. What will happen if one broker goes down, will producer able to send messages to topic as ISR is being followed by 3

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

      with "acks = all" and "min.insync.replicas" is set to 3, you can guarantee that your producer will send that message when you have 3 available brokers. but i believe you usually want more than your min.insync.replicas setting.

  • @amruthpesari7922
    @amruthpesari7922 3 ปีที่แล้ว +1

    Thanks for the video...
    Could you pls explain Request.timeout.ms and how it is different from delivery.timeout.ms