Request Response Messaging Pattern with MassTransit

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

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

  • @MilanJovanovicTech
    @MilanJovanovicTech  Год назад +3

    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

  • @dcernach
    @dcernach Год назад +15

    Great video! Please consider creating a series of videos about MassTransit, with a focus on topics like State Machines, Routing Slips, and more. MassTransit is a fantastic library to be used within microservices!

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +6

      I already have a few about MassTransit, but I'll happily do more

    • @nove1398
      @nove1398 Год назад +3

      I would like to see these as well

    • @ferdikosasih
      @ferdikosasih Год назад

      Hi have you ever compared with cap library? What the differences

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

    I came up with the exact same logic of having a Service that returns a Result from a request before seeing this video. Love to see Milan coming to the same conclusions!

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

      I was also very confused with MassTransit's weird way of dealing with polymorphism. This video cleared a lot of the confusion I had with the documentation.

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

      Glad we're on the same page 😁

  • @rezvlt9285
    @rezvlt9285 Год назад

    You always make the videos I most need. Thank you !

  • @ТимофейКлимов-ш7з
    @ТимофейКлимов-ш7з Год назад +4

    What is benefits of using RabbitMq instead of http is this case? It looks like synchronous way of communicating

    • @akashkarve1991
      @akashkarve1991 Год назад

      Http is synchronous, rabbit mq request-response is async

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +4

      It looks like it's synchronous because the caller has to "block" and wait for a response. But the benefit is that the services don't have to know about each other - unlike with HTTP. You need to know which API to call and where to find it.

  • @kodindoyannick5328
    @kodindoyannick5328 5 месяцев назад

    Great video! Thanks so much!

  • @czett-1
    @czett-1 9 месяцев назад

    Thanks a lot! Exactly what I just needed :)

  • @coderider3022
    @coderider3022 Год назад +1

    How does it correlate response properly , doesn’t seem to enable sessions on a queue?

  • @PhobiaQQ
    @PhobiaQQ Год назад +2

    great video, but I could not find this pattern described in MassTransit documentation. It's a pity you missed a part how you set up a message broker here. Did you use separate queue for request/response? Also I found that request/response is async pattern for http communication, while request/reply is async messaging pattern

  • @KenzoArts
    @KenzoArts Год назад +2

    Hello Milan,
    Would you please consider making a course about Microservices?
    I love so much your videos !

  • @renatogomes3457
    @renatogomes3457 Год назад +2

    Hi Milan, awesome content as always! Is it a good practice to completely remove the use of MediatR and switch to Request/Response with MassTransit (InMemory, perhaps)? I'm a bit confused, but don't both serve the same purpose? Could you please provide some insights on this? Thank you very much.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +1

      Consider the ease of use with both libraries. MediatR is much simpler to configure and use than MassTransit. If all I need is an in-memory bus, MediatR is still a great choice

    • @pilotboba
      @pilotboba Год назад

      imnsho Mediatr is for intraprocess messaging. Masstransit / Rebus are for interprocess messaging.

  • @GeoffSeeley
    @GeoffSeeley Год назад +3

    You should probably handle timeouts for Requests as well because there is no guarantee you'll get a Response. This is one of the fun things about Event driven systems 🙂

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +2

      The default timeout is 30s. If it takes more than that to get a response, you probably shouldn't be doing request-response anyway.
      But I agree that it should be handle in some way

  • @GamalSherbiny
    @GamalSherbiny 5 месяцев назад

    what advantage does this solution have over http request response?

    • @MilanJovanovicTech
      @MilanJovanovicTech  5 месяцев назад

      You don't need to know the address of the other service - only the message contract. This can be a big advantage.
      The downside is increased latency, as we're passing around more messages.

  • @sunzhang-d9v
    @sunzhang-d9v Год назад +1

    MassTransit+RabbitMq ,The consumer fails and can be put into the standby queue. What needs to be done?

  • @mohamedalaa8212
    @mohamedalaa8212 Год назад +2

    great video! How about making your next one on Circuit Breakers or Bulkhead pattern or more on MassTransit ? I'm sure it would be awesome

  • @balajisairamnarasimhan
    @balajisairamnarasimhan Год назад +1

    Can we use mass transit if we are making this cloud native microservices ? Benefit of using mass transit ?

    • @jeroen7362
      @jeroen7362 Год назад +2

      the benefit of MT is that you are decoupled from the transport/bustype. so locally you can run rabbit, or even rabbit in a docker. and in the cloud you use azure servicebus or other cloud bus. in unittest you can run in memory bus. your code is transport agnostic, only in the startup of the bus you need to start one bustype depending on an appsetting.

    • @balajisairamnarasimhan
      @balajisairamnarasimhan Год назад

      @@jeroen7362 thanks a lot

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +1

      You absolutely can

    • @balajisairamnarasimhan
      @balajisairamnarasimhan Год назад

      @@MilanJovanovicTech thanks Milan so can you guide me the steps for that ? Or does it work internally as a container ?

  • @guilhermebley4001
    @guilhermebley4001 Год назад +1

    Great video.
    One doubt, when we use AsNoTracking in EF, we need to call it at beggining or end of query?

  • @thedacian123
    @thedacian123 8 месяцев назад +1

    How did you registered in the DI container IRequestClient?

    • @MilanJovanovicTech
      @MilanJovanovicTech  8 месяцев назад +2

      You don't have to, it's automatically registered

  • @makemeafirewall
    @makemeafirewall Год назад +1

    The reason you said you register the ArticleViewsService as scoped is because IRequestClient is also scoped, how is it possible to generally check by DI container and the dependency chain to make sure I don't do anything funny in the registration I wasn't supposed to do?
    Is there a tool to see all the DI chain or the places where things are not using the same registration type?

    • @jeroen7362
      @jeroen7362 Год назад

      if you use the built in DI you will find out for sure without tools, when a singleton tries to use a scoped service. the other way around is perfectly fine. You can use scoped services in a singleton by creating a scope around it.

    • @makemeafirewall
      @makemeafirewall Год назад

      @@jeroen7362 what happens when a singleton tried to use a scoped service without creating a scope? Do I get an error? Always?

    • @makemeafirewall
      @makemeafirewall Год назад

      @@jeroen7362 we had an issue with the DB context that was used by a singleton and we changed it to be transient to solve the problem, don't exactly remember.
      I wanted a tool that shows me the dependency tree to find these errors if I suspect I did something wrong with the service registration.

    • @jeroen7362
      @jeroen7362 Год назад

      @@makemeafirewall as far as i have experienced it will always throw a runtime exception like "Cannot consume scoped service from singleton" This would usually only happen during development if you even touch the appservice in your debug session.

    • @makemeafirewall
      @makemeafirewall Год назад

      @@jeroen7362 i think it gets more complicated when a transient is injected with a scoped or the other way around.
      There should be a way to get the tree and search it, also it would be great to see the request pipeline because sometimes the project is already running in production and you are not always aware of the order of things, especially handlers that are used or even registered using reflection

  • @musazulu7013
    @musazulu7013 Год назад +1

    Excellent video @MilanJonovicTech, is it possible to get a tutorial about Kafka

    • @PhatBoyG
      @PhatBoyG Год назад +3

      I have an entire series on Kafka with MassTransit: ruclips.net/p/PLx8uyNNs1ri0RJ3hqwcDze6yAkrmK1QI5

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +1

      Chris stealing the show 😁

  • @nomad191
    @nomad191 Год назад +1

    Great Video. Where can I download the source code for this?

  • @giorgigiorgobiani9547
    @giorgigiorgobiani9547 9 месяцев назад

    Hello Milan, i use this request/response pattern with rabbitMQ, but sometimes i have an issue: when api B is in idle state (not recieving requests) rabbitMQ connection of api B is lost and when i send reqeust from api A with requestClinet i get timeoutexception. is there some method to overcome this issue?

    • @MilanJovanovicTech
      @MilanJovanovicTech  9 месяцев назад +2

      Nope. That's called temporal coupling. In request-response we assume the other side is always available. But that might not always be the case.

    • @giorgigiorgobiani9547
      @giorgigiorgobiani9547 9 месяцев назад

      @@MilanJovanovicTech ok but is there a way keep other side always available..to configure rabbitMQ connection to be all the time alive while api running..do u know such thing? If not, what is solution ..

  • @muhammadtariq8323
    @muhammadtariq8323 Год назад +1

    I requested you that make a video on .NET Core, static file response compression. Pre-Compress (br / gzip) or run time by .NET Core or IIS. Which are best and how to implement

  • @n.sharma5810
    @n.sharma5810 6 месяцев назад

    Hi Milan, if possible please create a small project explains microservice architecture completely

  • @raghavendrahabbu
    @raghavendrahabbu 8 месяцев назад

    Where can I get complete source code?

  • @BlueLabel1980
    @BlueLabel1980 11 месяцев назад

    Github for this expample?

  • @amitkumdixit
    @amitkumdixit Год назад +5

    Don't see any added benefit in this use case. One more failure point in the response cycle.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад +1

      Anything can fail in distributed systems, I don't see that as a counter point

    • @DjDanny32
      @DjDanny32 Год назад +3

      MassTransit + RabbitMQ adds many benefits. For example, imagine your dB is down. Rabbit will retry your request (within your defined parameters) for you

  • @srik790
    @srik790 Год назад +2

    But I guess the UI composition technique is better in this scenario.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Год назад

      Perhaps

    • @srik790
      @srik790 Год назад

      @@MilanJovanovicTech
      Any plans to cover UI composition in your videos?

    • @haraheiquedossantos4283
      @haraheiquedossantos4283 9 месяцев назад +1

      By the way I agree with the comment below, like using some BFF to orchestrate.
      And I think messaging Request-Response pattern is better suited to workflows long running business process that span multiple boundaries when we are dealing with sagas. Don't you agree?

  • @techpc5453
    @techpc5453 Год назад +1