Event Driven Architecture in the Real World! 4 Practical Examples

  Переглядів 29,700

CodeOpinion

CodeOpinion

День тому

Event Driven Architecture has many benefits. Loose and temporal coupling, scaling, resilience, and more. But what does that mean? What are some actual use-cases? I'm going to describe 4 practical examples of using event driven architecture.
🔗 Solace
solace.com/codeopinion
🔔 Subscribe: / @codeopinion
💥 Join this channel to get access to source code & demos!
/ @codeopinion
🔥 Don't have the JOIN button? Support me on Patreon!
/ codeopinion
📝 Blog: codeopinion.com
👋 Twitter: / codeopinion
✨ LinkedIn: / dcomartin
📧 Weekly Updates: mailchi.mp/63c7a0b3ff38/codeo...
0:00 Intro
0:39 External Integrations
3:20 Workflows
4:54 State Transfer
6:28 Temporal Decoupling
#eventdrivenarchitecture #softwarearchitecture #softwaredesign

КОМЕНТАРІ: 32
@dimitricharles9784
@dimitricharles9784 2 роки тому
Great video, great introduction to this vast topic
@buildingphase9712
@buildingphase9712 2 роки тому
Another amazing video, would also appreciate it if you would create a small end to end web api, ddd architecture project showcasing these concepts in an end to end project…
@dangersvns
@dangersvns Рік тому
Amazing! meaningful video. Thank you for sharing!
@MollySpilberg
@MollySpilberg 8 місяців тому
Great video! It would also be great if you could add scenarios where EDA is not suitable, i.e. it's simpler and cheaper to make those HTTP/gRPC calls instead
@MohammadAhsan.ss.675
@MohammadAhsan.ss.675 4 місяці тому
gRPC is synchronous and what I found through searching is its not suitable for loose coupling and also is synchronized while loose coupling is the motivation to use microservices. On the other hand, EDA is loose coupled and asynchronized.
@kolumbusbeatstv5773
@kolumbusbeatstv5773 11 місяців тому
THIS IS LITERALLY THE BEST EDD Video I’ve seen ever
@CodeOpinion
@CodeOpinion 11 місяців тому
Well thanks!
@NervousNab
@NervousNab Рік тому
Nice explanation. Do you have any book recommendation on EDA?
@juliaroberts9602
@juliaroberts9602 Рік тому
Very informative video! Some follow-up questions- 1) I am having trouble understanding the difference between #2 and #4. Are they not both trying to orchestrate an internal process? 2) i have been trying to figure out how granular the events need to be. We have a Human Resources system, where they are trying to support Enterprise events that span use cases #1. 3 where the goal is to notify downstream systems of data change. We are evaluating the granularity of the events - e.g. it could be New Hire or Promotion or Separation, or one could go granular e.g. new hire future, new hire retro, new hire onboarding. When the consumers get the events, they have to make a call back to get the change. Do we in such a case define the granularity of the events based on the use cases and consumer needs? I have come across event storming but for use case #1, we don’t need to have events for things that are not relevant for the use case e.g. say item added to wish list. Sorry for the long question! I have been trying to understand this but haven’t been able to find any resources. Any pointers would be greatly appreciated.
@CodeOpinion
@CodeOpinion Рік тому
1) #2 is talking about workflows and orchestrating that, yes. However #4 was talking about how those orchestrations can be temporally decoupled so you aren't bound by time. 2) I have a few videos that talk about Event-Carried State Transfer (ukposts.info/have/v-deo/qXt1Zo-Mi4ByuYE.html and ukposts.info/have/v-deo/gapzeZidip1h1o0.html). Check those out and see if any of that helps. It really depends WHAT you're trying to do with events to determine what they should contain. If you have notification type events that are slim, often those are for workflow, and that's when you get into the callback situation. It's also important to know why other services need data.
@chrismoutray9206
@chrismoutray9206 2 роки тому
Do you have any views on syncing 'from' an external system? That is, pulling in a list of products on a regular, scheduled job? Btw great content from your channel!
@CodeOpinion
@CodeOpinion 2 роки тому
Meaning another system is pulling data as a scheduled job? If so, nothing fancy other than if the amount of data it has to pull is very large. In that case it can be beneficial to have the initial request kick off it's own internal job or fan out the work into multiple smaller units. Giving the client back not the immediate response from the request, but an identifier or callback to provide it with the data once the request was processed.
@midoevil7
@midoevil7 2 роки тому
Great video! But I was wondering if event-driven fits most of the cases in the late life-time of a project? I think there's a complication overhead with adding a broker and using event-choreography instead of having the whole work-flow in one place. From your experience you think it is worth it to start from the beginning with an event-driven architecture? or start with something simpler like service architecture and refactor later if things started getting complicated ?
@CodeOpinion
@CodeOpinion 2 роки тому
This is a really good topic idea. EDA is great for established codebases. It allows you to build out more functionality that's decoupled from what you already have.
@zizliyev8367
@zizliyev8367 Рік тому
Thanks for the video. The last part of it about temporal decoupling raised a question for me: What if we have a system where we have to fail after a while if one of the service is not responding. Since we are not waiting this service to do it's job, how we are going to know there is a failure? Setting a timeout for certain events to occur?
@CodeOpinion
@CodeOpinion Рік тому
Yes, absolutely, that is one way. Check out this video, it will give you some ideas as you can use a time/expiry: ukposts.info/have/v-deo/iIqeZIiIfpmklGw.html
@zizliyev8367
@zizliyev8367 Рік тому
@@CodeOpinion thank you for advice, i watched the video you suggested, it's really good. You have my respect :D
@MrAyuub22
@MrAyuub22 2 роки тому
When would you use queues over topics, seems like in my company we always have one queue per consumer and just publish messages there
@MrAyuub22
@MrAyuub22 2 роки тому
In the warehouse example, we would have a queue - statemachine - warehouse -billing
@CodeOpinion
@CodeOpinion 2 роки тому
Queues for Commands, Topics for Events
@mattgraves3709
@mattgraves3709 2 роки тому
Which way do you want those events to flow typically?
@6jakeykinzzz6
@6jakeykinzzz6 2 роки тому
2 videos in a week… 🎉
@QuantQuest
@QuantQuest Рік тому
Regarding temporal decoupling example, in NodeJs we can call warehouse and billing related methods asynchronously ( may catch them in their respective catch methods ). So, I believe that's correct and we may not need decoupling if we write code like that. Please comment. I do know you are explaining it from event driven architecture perspective but Node.Js is event driven, although we don't save those event like the kafka does. PS: I like the way you explain things by code and example.
@CodeOpinion
@CodeOpinion Рік тому
They are two different things. Async programming models that are in-process are different than using durable queues to pass messages between processes, which is what I'm explaining in the video. I'm going to create another video to explain the differences.
@digitalcookworld3720
@digitalcookworld3720 11 місяців тому
What would happen if the Event Broker is unavailable?
@CodeOpinion
@CodeOpinion 11 місяців тому
For publishing, use an outbox or a fallback (ukposts.info/have/v-deo/rJOWhJimmW6j040.html). For consumers, well they just consume when the broker is available.
@digitalcookworld3720
@digitalcookworld3720 11 місяців тому
Thank you. Was quite helpful.
@mabdullahsari
@mabdullahsari 2 роки тому
I like to categorize events in 3 different "archetypes": - Domain events - RESTful events - Signal events
@mohammedjishad7062
@mohammedjishad7062 2 роки тому
Please elaborate
@MJ46.91
@MJ46.91 2 роки тому
how is this video dated 11 MAy 2022 and today is May 8th???
@CodeOpinion
@CodeOpinion 2 роки тому
Huh?
Commands & Events: What's the difference?
9:18
CodeOpinion
Переглядів 9 тис.
Glow Stick Secret 😱 #shorts
00:37
Mr DegrEE
Переглядів 54 млн
Event-Driven Architecture lost its way
8:44
CodeOpinion
Переглядів 51 тис.
My TOP Patterns for Event Driven Architecture
10:45
CodeOpinion
Переглядів 29 тис.
API Error Messages for a GOOD Developer Experience
8:31
CodeOpinion
Переглядів 2,9 тис.
Event Driven Architectures vs Workflows (with AWS Services!)
15:49
Be A Better Dev
Переглядів 86 тис.
Monolithic vs Microservice Architecture: Which To Use and When?
10:43
What is Event Driven Architecture? (EDA - part 1)
9:29
A Dev' Story
Переглядів 137 тис.
Enums aren't evil. Conditionals everywhere are
11:04
CodeOpinion
Переглядів 16 тис.
Domain Driven Design: What You Need To Know
8:42
Alex Hyett
Переглядів 84 тис.
Top 5 Most Used Architecture Patterns
5:53
ByteByteGo
Переглядів 198 тис.
Android top🔥
0:12
ARGEN
Переглядів 206 тис.
Вы поможете украсть ваш iPhone
0:56
Romancev768
Переглядів 98 тис.
ИГРОВОЙ ПК от DEXP за 37 тысяч рублей из DNS
27:53
Ремонтяш
Переглядів 400 тис.
iPhone - телефон для нищебродов?!
0:53
ÉЖИ АКСЁНОВ
Переглядів 3,8 млн