Kafka Stream Processing with Python - A Walkthrough

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

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

  • @sidheshwarpandhare8594
    @sidheshwarpandhare8594 5 месяцев назад +6

    Everything in. details, thats what every tech listener expect, good going Quix

  • @erickcalderonm.6174
    @erickcalderonm.6174 4 месяца назад +5

    I really liked how you clearly defined the problem and how you solved.

  • @daily-review
    @daily-review 5 месяцев назад +9

    The way you explain, go thru each step of the code. Just beautiful, what a public service right here. Thank you and hoping to see much more from you. Cheers!

    • @DanielLedesma-p5i
      @DanielLedesma-p5i Месяц назад

      Are in drugs ? This idiots hadnt say nothing 😂

  • @souravbarua3991
    @souravbarua3991 5 месяцев назад +4

    Another wonderful video👏. You making things simpler with your explanation.

  •  5 месяцев назад +4

    Those Kafka series are awesome 🙌 🎊 🎉 Congrats, keeeeeep posting!

  • @Gebimble
    @Gebimble 5 месяцев назад +3

    Thank you very much! Watching this clarified a lot of topics for me 😊

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

    vim, regex in searching and replacement are wonderful
    hope to study more use cases from you
    love ❤your video!

  • @thequang9234
    @thequang9234 4 месяца назад +3

    awesome video, what I am wondering though, is how is streaming into a topic different than the previous consumer video? they both reading from a producer right?
    Would it be reasonable to say I would stream and transform the producer data onto the reader's topic?

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

      You can architect your services however you wish.
      You can certainly combine different processes into one, then later on if you have a need to split them out you can do that too.

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

    Can you do one tutorial with the transformation bit especially groupby transformation. I am having trouble implementing the grouby implemented in the documentation.

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

      Will do. Watch this space.

  • @monarchgam3r
    @monarchgam3r 5 месяцев назад +3

    Hello, please what font is used on the thumbnail text?

    • @QuixStreams
      @QuixStreams  5 месяцев назад +1

      From our designer: "The heading font is Cy SemiBold (with contextual alternates turned off)."
      Hope that helps!

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

    What’s the vim plugin that shows the Python syntax prompts

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

      That's `nvim-cmp` (in Neovim).

  • @dipanjansaha6824
    @dipanjansaha6824 5 месяцев назад +3

    How can we redpanda running locally?

    • @QuixStreams
      @QuixStreams  5 месяцев назад +2

      Good question! I've just pushed a docker compose file to the github repo. If you `docker compose up` that should give you a local instance. 👍

  • @tharunbhaskar6795
    @tharunbhaskar6795 3 месяца назад +2

    How come it is running continuously without a loop?

    • @QuixStreams
      @QuixStreams  3 месяца назад +2

      QuixStreams! sdf.run listens for the termination signals and keeps the listeners open for business.

  • @bradhowes9045
    @bradhowes9045 4 месяца назад +2

    "Farenheit is not an easy thing for a European to spell" -- looks like "celsius" is not easy either. :) Love the video!

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

      I wish I could claim that was a deliberate joke, but... 🤦‍♂️

  • @CrypticConsole
    @CrypticConsole 4 месяца назад +2

    imo venv is better because env is used to store environment variables

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

      .venv is even better if you use fd/ripgrep, so that files in .venv are skipped from search.

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

    What's the meaning of `...transform...`?

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

      Any transformation you can do on top of the data

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

      Yes that's correct. It could be determining a new value based on existing values in the data set or some average based on previous values that you have in state. Really any processing you can achieve using Python.