🌶️ How to use Kafka in .NET 8?

Поделиться
HTML-код
  • Опубликовано: 19 сен 2024

Комментарии • 18

  • @vamvdotnet
    @vamvdotnet 4 месяца назад

    Nice intro about .net development with Kafka! Yes, I'd like more videos with more scenarios - along with implementation details - in which Kafka proves itself very handy. Thank you!

    • @sa-es-ir
      @sa-es-ir  4 месяца назад

      Appreciate for the feedback and sure I'll create more videos on this topic

  • @tylerdurden1931
    @tylerdurden1931 4 месяца назад

    Thank you for your video. A Kafka series sounds like a fantastic idea. It could delve into Kafka's functionalities, illustrating what it's capable of and how users can leverage it effectively.

    • @sa-es-ir
      @sa-es-ir  4 месяца назад

      Totally agree, Kafka is highly customizable and needs to understand the configuration and tune it based on usecases.

  • @송기훈-b8u
    @송기훈-b8u 3 месяца назад

    Hi! It was nice tutorial. I want to learn about sink connector for Kafka. Thank you!

  • @coding-in
    @coding-in 16 дней назад +1

    Hi saeed, thanks for great explanation with short duration.
    I want to ask, how if the consumer fails saving data because maybe there's any field required(consumer side) but the not provided by producer.

    • @sa-es-ir
      @sa-es-ir  8 дней назад

      Good question, the Consumer needs to tell kafka to commit the message, either auto-commit by kafka lib or manually commit by developer, the point is you need to handle the validation on consumer so if there is a invalid message you just skip that message and commit it without processing.

  • @user-yb7vw3vc4w
    @user-yb7vw3vc4w 4 месяца назад +1

    ❤❤❤❤❤❤❤❤❤❤❤

  • @cvetomiranedelcheva9946
    @cvetomiranedelcheva9946 8 дней назад +1

    This video was very helpful, but is there any chance you know why I get the error " Connect to ipv4#127.0.0.1:9092 failed: Unknown error (after 2032ms in state CONNECT)" with both the producer and consumer? Thanks!

    • @sa-es-ir
      @sa-es-ir  8 дней назад

      Thank you and happy it was helpful.
      About the error, please follow the code in my repo the link is in the description, better to use localhost:9092 and make sure both Kafka and zookeeper are using same network.

    • @cvetomiranedelcheva9946
      @cvetomiranedelcheva9946 7 дней назад

      @@sa-es-ir But that's what I'm doing. Is it possible that my error comes from not using docker?

    • @sa-es-ir
      @sa-es-ir  7 дней назад

      @@cvetomiranedelcheva9946 Are you run kafka and zookeeper both? they have access to call each other?
      I think better to run in docker to make sure the problem is not in your code

    • @cvetomiranedelcheva9946
      @cvetomiranedelcheva9946 7 дней назад +1

      @@sa-es-ir Okay, thank you very much!!

  • @송기훈-b8u
    @송기훈-b8u 3 месяца назад

    Hi it was nice tutorial and really helpful, However, I want to learn more about sink connect for Kafka.. Thank you!

    • @sa-es-ir
      @sa-es-ir  3 месяца назад

      Great suggestion! I put it in the list

  • @alfonsdeda8912
    @alfonsdeda8912 4 месяца назад +1

    Hi, great video!
    What is the advantage to use Kafka over rabbitMQ?

    • @sa-es-ir
      @sa-es-ir  4 месяца назад +1

      Well the idea behind them are different, first one Kafka is 'designed' for highly scalability which means is suitable for millions of events per seconds but RabbitMQ not,
      Second one RabbitMQ will remove messages from queue once consumer commit it but Kafka retains the messages until amount of time (default 7 days) so that you can read the event again if you need.
      And many other differences, their concept came for solving different problems