Great presentation of the EDA concept. Really love it. Thank you!
@catallergiccat4 жыл бұрын
You have a great sense of humor ..
@mixbaal03 жыл бұрын
Wow! Great explanation, great series, great channel. Thank you very, very much !!!
@waynechang12064 жыл бұрын
Thank you for posting such good content!
@zouhiirizmer55204 жыл бұрын
great content. thanks for the explanation. looking forward to your next video
@emilemanuel96424 жыл бұрын
What a great video! Thank you for sharing your knowledge.
@kipergil4 жыл бұрын
Very useful content and explained very well... my only feedback can be about your reading flow. It would be better if you stop and wait at some point. Sometimes it's hard to follow since you keep moving without any interval. Thanks a lot.
@jeremieelbaz92664 жыл бұрын
i'm french and i look your videos it's very cool continue like that , just look books of marketing and personnal devlopment for grow your buisness thank you =) ,
@tkateryna4 жыл бұрын
Thank you. Your explanations rock!
@tatianasorroche53653 ай бұрын
great video, ty so much
@gustavhedberg16233 жыл бұрын
I kind of feel like the mediator you are describing is a SOA ESB pattern and not for microservices. Microservices architecture specifies dumb pipes and smart endpoints. A mediator with logic in between services sounds like the opposite, smart pipes, i.e. the messaging middleware from SOA. Only way a mediator could be applied in microservices by definition would be if each service had one to distribute the event among its internal components.
@anilvits4 жыл бұрын
Very in depth explanation .. Thank you
@danielkrajnik38173 жыл бұрын
3:13 oh yes this one in particular would come in very handy now
@prabhusoft3 жыл бұрын
Event driven Architecture is a big pub/sub pattern in cloud. As the complexity increases more support structures like mediators come in play. Period.
@asmataha20532 жыл бұрын
Is there is a way that you can give me a quick comparison between Microkernel and event driven ?
@omarabdo64033 жыл бұрын
awesome video, I've learned A LOT!
@khabarsilva68503 жыл бұрын
Nice Presentation
@commonman70883 жыл бұрын
is this approach suitable for game non stateful services like leaderboard , profile and stats etc
@phanuwatwattanapraya79983 жыл бұрын
Really great video
@nicolaslopez-824 жыл бұрын
Great content! Very helpful
@alanslkwong4 жыл бұрын
Will you be making the slides available?
@ailuros_3 жыл бұрын
I ask the same :(
@zebcode4 жыл бұрын
I'm left with a few questions... When events are handled by a microservice are they generally removed from the queue? What if you wanted more than one type of Microservice to respond to an event? Would the handler event need to send out a new EventHandledEvent? Or would they issue a command? If everything is event driven then where do commands fit in?
@derNoaa2704 жыл бұрын
Every subsriber of your event system will receive an exact "copy" of the event. So if you have 5 Microservices hooked to the message queue and 3 of them have a listener for lets say userNameChanged, they will all receive said event.
@zebcode4 жыл бұрын
@@derNoaa270 ah I see so does the message bus will take care of all subscribers getting the message before removing it?
@derNoaa2704 жыл бұрын
@@zebcode depends on if you are working with acknowledgements or not. There are many possible implementations of a broker & message queue. One is where the broker knows which services have which events subscribed and one where he doesnt. Typically the first one is the case when you are working with acknowledgements. The latter one will just publish the message and "not care" if they ever get received. So if your service had an outage it will have missed a message. TL;DR; It really depends on the implementation that you are using.
@pedrohenriqueferreira6293 жыл бұрын
Thanks a lot for the video!! Vey much appreciated. Some questions have raised. Does anyone know a good book about System Architecture?
@errrzarrr4 жыл бұрын
👍🏻Great content! Where else could I get myself into EDA?
@f3rn4n2x3str3ll43 жыл бұрын
Thanks!
@moe.28974 жыл бұрын
Great series! Thank you very much could you please recommend me some useful resources and books regarding software architecture and architecture patterns? I am considering writting my bachelor thesis on something in this direction. Any recommendations? That would be very helpful ^^
@realking49184 жыл бұрын
Thank you!
@paradox41402 жыл бұрын
Hey bro, can u give me the Sources of this video ?
@yanghan93993 жыл бұрын
TCP vs UDP?
@himanshu899 Жыл бұрын
Are robots really gonna take over the world ?😅
@neuravnovesen2 жыл бұрын
Not the best design pattern video I've seen. 1. you didn't give accurate reasons why request-response (RR) is inferior to event bus (EB). Automation can be done with both patterns. The producer of the event might as well use RR to notify all interested parties. It doesn't have to be manual. 2. Unit testing is actually easier for an EB system, as you can test each event publish/handle in isolation It was otherwise OK. Most of the other content was accurate.