Spring Boot Microservices Tutorial Part 11 - Integrating Kafka with Schema Registry

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 พ.ย. 2024

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

  • @ProgrammingTechie
    @ProgrammingTechie  27 วันที่ผ่านมา

    Link to written tutorial: programmingtechie.com/articles/spring-boot-microservices-tutorial-part-8

  • @pritishdesai6537
    @pritishdesai6537 4 หลายเดือนก่อน +2

    Superb tutorial. Thanks sai

  • @felipedossantos7246
    @felipedossantos7246 4 หลายเดือนก่อน +2

    Excellent content! Hats off, dude

  • @mateuslevi1300
    @mateuslevi1300 4 หลายเดือนก่อน

    I understand that one of the key concepts of microservices is the independence between services. My question is: does having, for example, a call to the inventory service (check inventory) in order service contradict this principle? Great job. learning a lot

  • @AkshatMehra-l4b
    @AkshatMehra-l4b 4 หลายเดือนก่อน

    Great to see the email service being added here :)

  • @konstantingromov6485
    @konstantingromov6485 4 หลายเดือนก่อน

    Great tutorial, thank you man.
    I actually never heard before about this project - schema registry which seems to very useful - to follow DRY and what is more important avoid some adapters for different programming languages (I assume it's not available for java, right?).
    One small question - doesn't it make sense to use schema-registry as a separate module (aka lib) and add as a dependency for order-service and notification-service?

  • @progperspectives3137
    @progperspectives3137 2 หลายเดือนก่อน

    I liked the tutorial. It's very good!

  • @alvinimbuka8283
    @alvinimbuka8283 4 หลายเดือนก่อน

    Thank you for this treasure.

  • @Andreas-vi1mo
    @Andreas-vi1mo 4 หลายเดือนก่อน +1

    Ser, can i ask ur whole spring microservice project code? Because i got a problem at "Order Product Feature". When i try to add product, it works well. But, when i try to order product, it doesn't work.

  • @nawwintphyu1873
    @nawwintphyu1873 2 หลายเดือนก่อน

    Thank you so much!

  • @konstantingromov6485
    @konstantingromov6485 4 หลายเดือนก่อน

    @ProgrammingTechie can you please update links to repository and blog (blog follows to Spring Boot Microservices Tutorial - Part 7)

    • @ProgrammingTechie
      @ProgrammingTechie  4 หลายเดือนก่อน +1

      Updated the blog post, I will post the github link once I am completed with the tutorial

  • @ShivamKumar-em9nr
    @ShivamKumar-em9nr 8 วันที่ผ่านมา

    While adding avro-maven-plugin i faced some issue. So added version of it and it worked.
    Just below avro-maven-plugin add the version
    1.11.0

  • @KeshavSingh-r9d
    @KeshavSingh-r9d 3 หลายเดือนก่อน

    can u create one video for database replication like in mysql we have master slave architecture

  • @tasos8230
    @tasos8230 28 วันที่ผ่านมา

    can i use kafka opperation for communication between the services instead of rest clients? In case of the inventory rest client we used in order-service, could have a kafka producer also a kafka consumer when the producer is sending the order to inventory and inventory consume the order and response with a kafka producer so the consumer of order service consuming the inventory response instead of use rest clients or it isnt recommended?

    • @jack9171
      @jack9171 21 วันที่ผ่านมา

      if you need immediate response than use RestClien in order create for inventory check we need immediate response , if you use for inventory check than order create thread have to wait until inventory prduces event so it is not recommended to use kafka there, but in case of notification it is independent of order create and not needed immediate response so use kafka there.

    • @tasos8230
      @tasos8230 21 วันที่ผ่านมา

      @@jack9171
      OK thanx i understand when it something is idependent which can execute in every time like the user notification then kafka messages or rabbitMQ its ok but if you want something immediate its recomended to use restclient. In this case could be better to sending orders for saving using kafka and use rest client inventory call in order to avoid errors in jpa or server errors for accepting the request if a lot of request are sending at the same time?

  • @Optimusjf
    @Optimusjf 4 หลายเดือนก่อน

    Excelent

  • @thebaseofpcmbfondation7349
    @thebaseofpcmbfondation7349 หลายเดือนก่อน

    pls can you launch a online courses for microservices

  • @afdulrohmat143
    @afdulrohmat143 หลายเดือนก่อน

    42:44 Schema Registry

  • @rishiraj2548
    @rishiraj2548 4 หลายเดือนก่อน

    Great thanks

  • @prasanthsanjeevi2563
    @prasanthsanjeevi2563 4 หลายเดือนก่อน

    Thanks a lot 🙏🙏🙏

    • @prasanthsanjeevi2563
      @prasanthsanjeevi2563 4 หลายเดือนก่อน

      When can we expect remaining videos please?

  • @sambhavmishra5423
    @sambhavmishra5423 4 หลายเดือนก่อน

    Thank you