Getting Started with Event Sourcing in .NET

  Рет қаралды 45,378

Nick Chapsas

Nick Chapsas

25 күн бұрын

Check out my courses on Dometrain: dometrain.com
Get the source code: mailchi.mp/dometrain/n_o-xuuvtmw
This video is sponsored by AWS. To get $25 free AWS credit, check out this link: aws.amazon.com/developer/lang...
Become a Patreon and get special perks: / nickchapsas
Hello, everybody. I'm Nick, and in this video, I will get you started with event sourcing. Although this video will use .NET and C#, the practice applies to any language.
Workshops: bit.ly/nickworkshops
Don't forget to comment, like and subscribe :)
Social Media:
Follow me on GitHub: github.com/Elfocrash
Follow me on Twitter: / nickchapsas
Connect on LinkedIn: / nick-chapsas
Keep coding merch: keepcoding.shop
#csharp #dotnet

Пікірлер: 176
@logank.70
@logank.70 23 күн бұрын
The best way I've come to describe this concept is: "Don't store the value. Instead, store the things you do to the value." From there the questions start coming organically that I can answer as needed. The two main questions I hear are: * What about the values needed for the operation? - I create classes for the various operations (usually record types), serialize them, and store a timestamp of when it happened, the serialized version of the object, and the name of the operation. * So what do I do with that information? - The naive approach is to start at the beginning, iterate through each operation, and call the function associated with that operation. By the time you are done your service class or whatever it is will be in the same state you left it in when you closed the app. From there I usually end up talking about snapshots and explain that. Like Nick said...it really isn't that hard and isn't as complicated as people think it is. Starting with the first thing I mentioned at the beginning helps the conversation a lot.
@gustavo-santos-dev
@gustavo-santos-dev 19 күн бұрын
This is the content level I expect from Nick
@elbeshenrique9979
@elbeshenrique9979 23 күн бұрын
That's a very nice video you had put together sir! Would be also nice to have a future video exploring some gotchas of the Event Sourcing world, specially the trade-offs one needs to consider when working with it, since is very easy to shoot yourself in the foot when attempting to use ES.
@logank.70
@logank.70 23 күн бұрын
I'd love a video on how to handle versioning with the events. It's one of those things that I don't think I've ever really done well and would like alternative approaches to consider.
@AJax2012
@AJax2012 23 күн бұрын
This video was really interesting! I'd love to see more videos like this. I always enjoy your videos because I can always follow along with your explanations, even on concepts that are typically difficult to follow.
@lordmetzgermeister
@lordmetzgermeister 23 күн бұрын
Having built a smaller cloud-native app in event sourcing, I can confirm this video captures the concept pretty well and makes it easy to understand. Also, having built the aforementioned app in event sourcing, the architecture is quite annoying to work with. There are limitations you have to respect, issues you have to deal with and extra infrastructure to implement. It does go well with CQRS and together they make nice looking tests though.
@jjackbauer1
@jjackbauer1 23 күн бұрын
Great Video Nick!! You were able to provide a vast glipmse of the matter with a simple examples!
@VanDameDev
@VanDameDev 23 күн бұрын
Simple, Elegant, To the point video. 👍🏻
@dareljohnson5770
@dareljohnson5770 23 күн бұрын
I needed this 3 months ago. Thanks Nick.
@txkyle2013
@txkyle2013 23 күн бұрын
Just wanna say thanks for the great video. I know you have dometrain that you want to grow, so I'm just happy that this channel is still a place you put out valuable educational videos
@bartekm3878
@bartekm3878 20 күн бұрын
You explained it so clearly! 🤩 It'd be awesome if you continued this as a series with more concepts.
@baranacikgoz
@baranacikgoz 23 күн бұрын
Wow how much effort he put into this video. Excellent job
@handlez411
@handlez411 17 күн бұрын
I watched this stoned so I'll have to watch again, but this was really great content Nick. I'd love to see more on this. Thank you.
@ThePeterDuh
@ThePeterDuh 18 күн бұрын
That's a great introduction. Would be cool in oncoming videos to go a little bit deeper down the rabbit hole of Event Sourcing. You have really great content! Thank you!
@VladyslavHorbachov
@VladyslavHorbachov 22 күн бұрын
Extremely cool video! Looking forward for part 2
@onmico
@onmico 17 күн бұрын
Awesome video Nick, would be nice with more content like this.
@acaplette
@acaplette 23 күн бұрын
Fantastic topic and highly relevent to a current project of mine. Would love to see more please.
@pablocom
@pablocom 16 күн бұрын
Nice introductory video for Event Sourcing! This topic deserves a course on dometrain 😛
@anotherme4638
@anotherme4638 19 күн бұрын
This is really helpful and to the point thanks a lot
@justinassakalavicius4465
@justinassakalavicius4465 15 күн бұрын
Great video - amazing content. Thank you !
@GiovanniOrlandoi7
@GiovanniOrlandoi7 23 күн бұрын
Great video! Thank you
@jeffreypfeifer130
@jeffreypfeifer130 20 күн бұрын
Awesome Video!! Keep pumping them out :)
@explorewithmarcus
@explorewithmarcus 23 күн бұрын
Fantastic video. You should make a course on this topic. I'd be interested to learn more about it.
@RHV044
@RHV044 14 сағат бұрын
Thanks for the video. I'd like to see how you handle complex events that modify multiple entities
@xlerb2286
@xlerb2286 15 күн бұрын
As someone that's worked with accounting systems this is completely understandable. You never go back and change a value, even if it was in error. You can only add new transactions that modify the value . Everything is just a sequence of transactions that takes you from a starting balance to the current balance. (The starting balance is typically arrived at by closing the previous financial period where that prior set of transactions are either moved to history or, if the GAAP allows, discarded). We'd go about determining the value as of some point in time in a different way, but it's the same concept. An in-memory similar concept is a Hughes list. You never modify the starting empty list, you only build up a sequence of lambdas or similar that each take an input list and produce a new list that is modified in some way. Chained together they hold the sequence of modifications you want to make to that initial empty list. When those lambdas are executed they produce the final list. But the original list and all the intermediate lists are immutable, so you could branch from any of those lists, using it as a starting point for an alternate list.
@Fred-yq3fs
@Fred-yq3fs 22 күн бұрын
Wow. Great video. Many thanks.
@mahmoud.shaheen
@mahmoud.shaheen 23 күн бұрын
Direct to the point 👌
@emanuelrodriguez3155
@emanuelrodriguez3155 19 күн бұрын
please continué with this topic ❤
@WolfieVenturi
@WolfieVenturi 23 күн бұрын
Great vid, Event sourcing is quite a paradigm shift for a lot of people, rethinking of objects as a first derivative of an event stream is less familiar than the classic CRUD / SQL. It's definitely powerful in the right context. I'd definitely be hesistant to spear head event sourcing proposals in the workplace though, I sense it can be less forgiving if you approach it with the same mindsets to most crud systems of "oh we'll just do a migration / run some sql to solve it".
@fotofoxes2255
@fotofoxes2255 23 күн бұрын
I recommend go take a look on the Microsoft Orleans actor framework, that is able to persist its actors, as well as it has event sourcing implemented.
@mahmoudyaseen6999
@mahmoudyaseen6999 23 күн бұрын
Great video, thank you
@SlackwareNVM
@SlackwareNVM 21 күн бұрын
This is the content I've been waiting for. How would you handle versioning of events and views - adding and removing properties, etc.?
@TomasJansson
@TomasJansson 2 күн бұрын
Nice and simple explanation. I do however think you should use a number for the version. When running projections you don’t know if you have missed an event or not using datetime. If you were using integer you would directly see that something was wrong if you received version 6 before 5 for example.. using timestamp you can’t know if some event for a timestamp is missed.
@ivanchukayev6547
@ivanchukayev6547 19 күн бұрын
What a great topic!
@BernhardMillauer
@BernhardMillauer 23 күн бұрын
I needed some time to grasp what Eventsourcing is, but you introduction made it so easy to understand: It's same as mssql replication. Every transaction is replicated even the data that gets transferred is no more...
@Naton
@Naton 23 күн бұрын
Awesome content.
@pdurchev
@pdurchev 23 күн бұрын
Great content as always. I wonde if the following scenario could be implemented with event sourcing. For some reason the requirements change in a way where changes could be submitted with effective date (in the past or future). Let's say in a HR software someone has salary 40k untill 1 June then it changes to 45k onward. Now the HR manager figures out they missed to do a salary increase on 1 March to 42k. Could this be done with event sourcing?
@MrIsrael3000
@MrIsrael3000 22 күн бұрын
Very nice, there are scenarios I don't know how to manage: 1 - what if you need to wait to one entity is created to create another entity, 2 - If I have to create two related entities, and one have db generated autonumeric id that I need for the other entity?, 3 - If I have an API that creates an entity how to return a success or failed operation?
@YvesRoyer
@YvesRoyer 21 күн бұрын
Great video (just as your presentation at Techorama Belgium ;-) ) One important note out of my own experience: the projection you're building is an single entity projection. If you're in need of an "overview" (typical "list" views in UIs e.g. a list of bookings, list of students, ... ) you're still in need of another projection with a different partition key since other document stores e.g. Azure Cosmos, ... don't like to query accross multiple partitions (high query cost). This can be done in various ways of course (e.g. listening to event feed as you showed to update the "overview" projection table). Or do you see still other approaches for the scenarion over having "overviews"?
@RoySalisbury
@RoySalisbury 23 күн бұрын
This seems like your data would be better stored in a Temporal table in SQL (if using SQL). You basically have a single "add" and then just updates to the row. The underlying DB creates a new row for each update. You can always get the "latest" record, but also the historical data. .NET EF Core handles it perfectly.
@pilotboba
@pilotboba 23 күн бұрын
Sure, then you are creating a table for each object, if you want to add something to your aggregate you have to modify the schema, etc. Temporal tables aren't really event sourcing, more a method for auditing, and could possibly be a better use case in some places.
@jackkendall6420
@jackkendall6420 23 күн бұрын
Highly interesting video. What drawbacks would you say there are to event sourcing (besides the obvious increase in complexity)? Is it easy to make mistakes with? Do things that were previously ergonomic become cumbersome? Etc.
@shadowsir
@shadowsir 23 күн бұрын
Hardest thing, IMO, is when a concept changes form (e.g. first name and last name need to be 2 separate fields, a new mandatory field is introduced,...) and older events (already persisted in production) are no longer "compatible" with the newer events. Introducing versioning from the start MIGHT help, but the problem then becomes, what if we change the concept's form regurarly. Do we really want to have 5-10 different versions of an event?
@komlaadzam7918
@komlaadzam7918 23 күн бұрын
Sweet!!..Thanks
@isnotnull
@isnotnull 23 күн бұрын
That is a strange concept of rebuilding the state from scratch. In an accounting software I worked on there was a state calculated from some point of time. In simple case you just get the last state from the db, apply one event and save it back to the view instead of applying thousands of events from the beginnning
@parlor3115
@parlor3115 23 күн бұрын
Audit trails is good use case for this pattern. For finances, you have a balance state which gets updated with every transaction.
@andersborum9267
@andersborum9267 23 күн бұрын
There are obviously a range of optimizations to improve state management, also called snapshot patterns. Nick only touches on the surface of event sourcing, and it’s a good introduction imo but you’d want to skill up significantly before moving to a more complete implementation.
@lordmetzgermeister
@lordmetzgermeister 23 күн бұрын
Yes, long living entities with frequent updates are a performance nightmare. One solution would be to sort of archive the older parts of poor-performant streams.
@tedchirvasiu
@tedchirvasiu 23 күн бұрын
Event sourcing is one of those things that sounds good on paper but in practice it rarely makes sense to go through the pain of implementing it.
@vasilikimanoli9285
@vasilikimanoli9285 23 күн бұрын
Short lived entities are a key concept that is usually not stressed enough in entry level introductions to event sourcing. Or else... a lot of things can go off, performance-wise, even if you implemented it by the book.
@BrendonParker
@BrendonParker 23 күн бұрын
Good content. Have you looked at the Object Persistence Mode with the .NET DynamoDB API/SDK? It’d simplify much of the DynamoDB plumbing in this example.
@miljenkocvjetko4953
@miljenkocvjetko4953 19 күн бұрын
Suggestion: It would be good to mention Discrete Event Systems and their fundament[s] Automata Theory. Those are different from Continious Systems described by differential equations and Discrete Systems described by difference equations. Applications: Compilers (lexycal and semantical anaylsis), Manufacturing systems, Traffic/Transportation systems, Networking, Banking, Crypto, Supply Chain... edit: added Crypto
@tonystoynev7969
@tonystoynev7969 23 күн бұрын
Nice video! Can you elaborate more about the uses cases of Event sourcing. I have never seen event sourcing used in the real world. What types of applications are suitable for this approach ?
@nickchapsas
@nickchapsas 23 күн бұрын
Finance, banking, e-commerce, ERPs, basically anything
@fredimachadonet
@fredimachadonet 23 күн бұрын
Nice! Just curious, how would you deal with concurrency using DynamoDB in case two things load the same Student and both try to update something? I would assume that by default the last one to update would win.
23 күн бұрын
It's a bit complex but possible, in a transaction, persist the record + the latest "version" of it somewhere conditioned to the version matching the expected
@nickchapsas
@nickchapsas 23 күн бұрын
That's where the version thing comes in. You can use optimistic concurrency version checks to fail a write transactionally and re-read and re-write the state. There will be a video on that at some point
@elbeshenrique9979
@elbeshenrique9979 23 күн бұрын
Versioning would solve it indeed, unfortunatelly at the expense of higher throughput.
@satyayuga0
@satyayuga0 23 күн бұрын
That looks like it is destined to be used with the newtonsoft json serializer. Imagine all the polymorphic json attributes in a bigger project for that abstract event class... I would be in shambles! EDIT: Yes, please more Event Sourcing!
@michaldivismusic
@michaldivismusic 23 күн бұрын
I assume you could scan the assembly and do it automatically in some way.
@sergeynosov8180
@sergeynosov8180 23 күн бұрын
A system designed like this may lead to unexpected results in highly contested scenarios. Just because events order in a particular way after the fact, it does not mean that they were originally processed in that order. Think of multiple instances of the application running simultaneously. -- some may be a little quicker, some may be a little slower, clocks drift, etc. Using Conflict Free Resolution Data Types (CRDTs) would be one way to mitigate the issue. Putting an actual Event Sourcing database or a persistent que as the source of truth in front of the system, instead of a general-purpose database, would be another way.
@SlackwareNVM
@SlackwareNVM 21 күн бұрын
Is there a good place to read up on the problems and potential solutions?
@sergeynosov8180
@sergeynosov8180 20 күн бұрын
@@SlackwareNVM You could start by reading the Leslie Lamport’s 1978 paper titled “Time, Clocks, and the Ordering of Events…”
@DrHeinzDoofenshmirtz
@DrHeinzDoofenshmirtz 23 күн бұрын
Awesome. I would really like to hear more about how to handle versioning if the model changes. For example, if a field is added or removed, how should should earlier events be processed?
@marcusmajarra
@marcusmajarra 20 күн бұрын
I once designed such a system. What I did is that I added to each event a version property and a dictionary of arbitrary objects used to store data fields of the event that corresponded to its API at the time the event was recorded. When reading an event from the data layer corresponding to an earlier version of the event, instead of mapping the data fields to API members of the current version, I would instead store the data into the object map, using the original property names as keys. After that, I would send the event through a chain of transformations meant to project the event into the current version. These are essentially a collection of strategy objects designed to change the state of the event from version T to T+1, moving around the contents of the object map to reflect what the event would have been like if it had been recorded at version T+1. This keeps up until the event transitions from the version at the time it was recorded until the current version, at which point the actual payload properties of the event would be set for the same event captured now. Nowadays, instead of the object map, we might consider using serialized JSON, but the idea is the same. That being said, this adds a lot of overhead in terms of read processing, which is why this solution was also supplemented with optimized read models (see CQRS) to decouple the concerns. The idea is to playback past events to allow a subscriber to create a view optimized for its own needs. These read models were entirely disposable as they could easily be recreated from the event history at application start.
@goose1923
@goose1923 23 күн бұрын
Thanks for the simple and intuitive video about the theme. YES to more Event Sourcing!
@rzGameDev
@rzGameDev 8 күн бұрын
any plans for your training courses to expand on similar topics as the AWS ones you've covered but in Azure equivalents?
@robertlinton9379
@robertlinton9379 23 күн бұрын
+1 for more of this
@pauljohnsonbringbackdislik1469
@pauljohnsonbringbackdislik1469 23 күн бұрын
I wonder if RavenDB could recreate the projection using stored procedure. It would make the saving into a trivial insertion. The only downside I can see is that Apply() should not depend on the object state (e.g. validating number of products based on storage capacity), should not contain business logic and might require full indepotency...
@PhantomPhobos
@PhantomPhobos 23 күн бұрын
Just want to mention the EventFlow C# library, which provides nice flexible DDD and CQRS structures handling most concurrency issues for an event sourcing system. Thank you for covering this topic Nick, would like to see more on the topic, most videos on the topic only touch the surface.
@blazehunter09
@blazehunter09 2 күн бұрын
I tried once to develop an app that would be a game server from a Unity MMORPG could or should the event sourcing be implemented in such project, what is your opinion?
22 күн бұрын
Is DateTime/Timestamp used for ordering of events in real-world applications? In case of updates that are atomic (take from one account and place on another) are then timestamp synchronized in some way?
@nickchapsas
@nickchapsas 22 күн бұрын
You can reject an append if you try to write something that had something else written already during the time you were processing if that's what you mean
@vonn9737
@vonn9737 23 күн бұрын
You should do a video on Microsoft SQL temporal tables.
@levdad
@levdad 22 күн бұрын
Hi, first of great video. Wondering how it will work with entities that have birectional relationships.
@baranacikgoz
@baranacikgoz 23 күн бұрын
I tried to create a lightweight event sourcing framework where aggregates are also their own inline projection. What I wanted to do is, use an sql db for storing aggregate as the traditional way, but adding its events to the events table with intercepting saveChanges of EfCore. The result? I can query the aggregate(actually its projection also, because its its own projection) using SQL and have an append only log of its state changes. Don't know if its applicable in real life scenarios
@shahrukhkhan3967
@shahrukhkhan3967 12 күн бұрын
You can use CQRS to update "Read Database" every time you write events to "Write Database"
@baranacikgoz
@baranacikgoz 12 күн бұрын
@@shahrukhkhan3967 thanks for your comment. Can you describe the update process more?
@renynzea
@renynzea 23 күн бұрын
Is there a reason at the 24:00 minute mark that you don't use interfaces, and have the classes implement the interfaces so there is no polymorphism, and thus fewer serialization issues?
@nickchapsas
@nickchapsas 23 күн бұрын
Because with interfaces in System.JSON there would be a serialization issue by property omission
@3263927
@3263927 18 күн бұрын
wo Nick! you play guitar! cool! do you have any video you playing?
@birgerg
@birgerg 23 күн бұрын
I our GDPR world, Is event sourcing even legal as a concept? Using a immutable log where someone has the right to be forgotten and data deleted seems a risky choice.
@nickchapsas
@nickchapsas 23 күн бұрын
Yeah it is. There are solutions around GDPR
@sergeynosov8180
@sergeynosov8180 23 күн бұрын
Encrypt each customer’s data with own key, store keys separately, when the customer asks to be forgotten - delete the key. HTH
@MC_DarkMaster
@MC_DarkMaster 23 күн бұрын
Thanks for that topic, but Nick... Single Responsibility Principle?
@furrman18
@furrman18 23 күн бұрын
Question about naming - Nick used GetStudent and GetStudentView for projected Student. Why GetStudent is used for the entity that is created based on the events and not vice versa? When I see View name reminds me SQL views that materialise data from other source (because view does not have data itself) and in this case I would rather use GetStudentView for Student created from events instead. I believe it is event-source terminology but can someone explain this to me or refer me to a proper definition? Thanks!
@furrman18
@furrman18 23 күн бұрын
I think I found answer, but terminology is quite confusing. Events are source-of-truth and this is main point of interest in Event Sourcing. The second approach to keep the most recent state in a projection is called view - to just access this information from a faster route (straight from db rather than going through all events). That means this projection is just a view (not the main source-of-truth) of the actual state we have in our events regardless if it is stored in database or not.
@pilotboba
@pilotboba 23 күн бұрын
@@furrman18 I consider the projection part of the read model if you are using CQRS. The nice thing is you can add projections without changing any of the events to make your query side super fast, ie, one projection/view to display a certain thing in your UI.
@gileee
@gileee 23 күн бұрын
I really don't like having to list all derived types in the derived type. Sounds like it goes against the point. Similar to the "permits" keyword they added to I want to say Java, to allow exhaustive switches on interfaces by sealing that interface and only allowing specific classes to implement it.
@Mayhem-MLBB
@Mayhem-MLBB 22 күн бұрын
Nice content bro, following you since 2015, you abandoned Java xD
@Mac_okee
@Mac_okee 23 күн бұрын
First, thanks for this informative video (and many others). Maybe it was a little bit too much with all the additional DynamoDB content. What I hardly can imagine is how this works in a real world context where you have many different parent child relationships. For example a Salesorder with many SalesorderDetails with many Products and a Customer and CustomerAccout etc.
@stephenyork7318
@stephenyork7318 18 күн бұрын
I love this video, “event sourcing” has just been this buzzword I’ve heard of but not something I’ve encountered in my day job. I do prefer this over the sql server temporal tables as they don’t show actions that were performed, although you could write a complicated sproc to infer actions taken, but your example is definitely much simpler. You kind of lost me when you went into the DynamoDB part though. It looks sweet but I really struggled in your quick KZbin video approach where it’s a brain dump vs the slow and well presented way your Dometrain courses are done. Would love to see some more details around using these object databases and why you’d use dynamo over mongo or redis, even why you wouldn’t just use a sql database.
@peculiar-coding-endeavours
@peculiar-coding-endeavours 23 күн бұрын
So, can we expect a course on DomeTrain for this? Would be awesome!
@nickchapsas
@nickchapsas 23 күн бұрын
There are two event sourcing courses coming this summer
@peculiar-coding-endeavours
@peculiar-coding-endeavours 21 күн бұрын
@@nickchapsas love it!
@TheAzerue
@TheAzerue 21 күн бұрын
Why using "@" when defining Event @event as a param. Is it a convention ?
@Dawizz88
@Dawizz88 14 күн бұрын
Because event is a C# keyword, so the @ tells the compiler to ignore that and use it as a parameter name.
@SimplyAwesomeOriginal
@SimplyAwesomeOriginal 16 күн бұрын
At from 17:36 Please provide the video of eventual/consistency async/sync read/write heavy option please
@marcobaccaro
@marcobaccaro 23 күн бұрын
Hello EviBaaadee!
@ghosttie
@ghosttie 23 күн бұрын
I think it would have been good to start with why you would want to do this...
@nickchapsas
@nickchapsas 23 күн бұрын
There are many videos that talk about that. I am not interested in teaching theory
@ghosttie
@ghosttie 23 күн бұрын
@@nickchapsas fair enough, but I had no idea what Event Sourcing was, so it felt like you just went straight into describing how to do make an inefficient database before eventually I figured out why it might be useful in some circumstances
@nickchapsas
@nickchapsas 23 күн бұрын
@@ghosttie There is nothing inefficient about the database in event sourcing. Storage is cheap
@emfi8744
@emfi8744 22 күн бұрын
Events are published and consumed given the code at their time. If I try to process an old event with the today's code, it may fail. How does event sourcing handle this issue? Please, don't tell me that we have to version events AND handlers, that would end up in a ball of mud
@PhantomPhobos
@PhantomPhobos 21 күн бұрын
Yep, however i don't see this as a problem, is this any different from writing code-first EF migrations?
@emfi8744
@emfi8744 21 күн бұрын
@@PhantomPhobos there's a huge difference: ef migrations are applied before the deployment of the application itself, within a transaction. If applied to prod, they are correct; on the contrary, we know code will always evolve
@mattfbk
@mattfbk 23 күн бұрын
StudentUpdatedEvent is CRUD sourcing. As an example or introduction video i think that was a poor choice. Besides that nice video. Please cover EventStoreDB and Marten at some point.
@nickchapsas
@nickchapsas 23 күн бұрын
EventStoreDB is terrible. It can't scale to save its life and I'm saying this as someone who's used it to its absolute limits and had to migrate away from it. Marten is ok but I prefer NoSQL dbs for event sourcing.
@mattfbk
@mattfbk 23 күн бұрын
@@nickchapsas that is actually valuable information. Thanks.
@Divus90
@Divus90 23 күн бұрын
@@nickchapsas To be fair, wouldn't Postgres qualify already as NoSql database?
@alexisnarvaez
@alexisnarvaez 23 күн бұрын
@nickchapsas What about a video of Event Sourcing with CosmosDb? The tricky part of event sourcing for me is to have a global ordering like EventStoreDB or not to, like CosmosDb per-partition-ordering guantantees
@yoeight
@yoeight 16 сағат бұрын
@@nickchapsas Hey Nick, would you mind extending a bit on how EventStoreDB wasn't able to scale for usage? Thanks for your time
@timur2887
@timur2887 23 күн бұрын
event sourcing is doubtful, but okay =) repro of an object state through events may cost too much in high loaded systems
@nickchapsas
@nickchapsas 23 күн бұрын
It really doesn't. You can stream it asynchronously without affecting performance at all if you can afford some eventual consistency and even if you don't there are many ways to keep it efficient
@WolfieVenturi
@WolfieVenturi 23 күн бұрын
Literally any persistence / materializing mechanism "may cost too much" for a "high load" scenario. Your assertion makes no sense since these things are relative to their specific use cases. Event soucing is not for everything, but it's certainly well established especially in the highest of demands such as banking and high frequence trading. If your takeaway from Event sourcing is that building an object from an event stream is slower than your EF Core SqlLite GetTodoList query, then I am doubtful you've really understood what event sourcing brings to the table.
@timur2887
@timur2887 23 күн бұрын
​@@WolfieVenturi in high frequence trading, e. g. instrument price change event contains full object state. More commonly the rates table will have a key of instrument id, stock id (trade board id) and datetime, that's all you'll need to set to get the rate. You won't need to examine several events to know the state at a given time.
@LasseVagstherKarlsen
@LasseVagstherKarlsen 22 күн бұрын
One question at kzbin.info/www/bejne/pJDSXqurqruno9k is the stream id when you have a student enrolled to a class. I would think that in a more complete example, Class would be an object of itself, and thus have an ID, what if I want to find all events related to a particular class? My question is basically, how do you handle such situations, where an event actually relates to more than one object, and thus ... maybe? ... should exist in more than one stream?
@rafigeniuscs
@rafigeniuscs 23 күн бұрын
Great topic, try to have some advanced content
@shivanshusharma422
@shivanshusharma422 23 күн бұрын
Hi, I'm a dotnet developer and would you advice me how can i cope up with this AI wave and also how should shape up my future to prepared for it?
@ferd1775
@ferd1775 23 күн бұрын
Use it, learn it, stay up to date with it
@shivanshusharma422
@shivanshusharma422 23 күн бұрын
@@ferd1775 thanks and i wanna know and learn how to use it best as developer. What's the key?
@ferd1775
@ferd1775 23 күн бұрын
@shivanshusharma422 practice, if you are a developer, see if you're allowed to use it while working per your employer/customer. If so, use it at work, understand what it is good at and what it is not, learn to leverage that. If you're not allowed to use it while working or on their code base, experiment with it on personal projects, or where work allows. Just learn how to use it as efficiently as possible. That should give you an edge over those ho refuse to use/learn ai tools. A company I contract for has an on-site openai instance that we can use. It'd be great if thy exposed an api for us to use ai tools directly in visual studio or vscode, but alas, they have not YET.
@realtimberstalker
@realtimberstalker 22 күн бұрын
So event sourcing is just command pattern?
@nickchapsas
@nickchapsas 22 күн бұрын
Nop
@makp0
@makp0 23 күн бұрын
Try Eventuous framework
@lordicemaniac
@lordicemaniac 23 күн бұрын
please sir, can I have more? :D
@cristianodias3529
@cristianodias3529 21 күн бұрын
How easy is that? :)
@troncek
@troncek 23 күн бұрын
DateTimeOffset instead of DateTime no?
@andrewbirs2046
@andrewbirs2046 23 күн бұрын
First nakh!
@Hades200082
@Hades200082 23 күн бұрын
"You shouldn't be able to update your DOB" ... this doesn't work in the real world. So a student enrolls and the clerk enters their DOB wrong. Maybe their hand written DOB was misread. Now they have to create a whole new record to correct it?
@paradisefallen8385
@paradisefallen8385 23 күн бұрын
its easy, make an event `DateOfBirthRedacted` and go on
@Mig440
@Mig440 23 күн бұрын
This is append only nature of event sourcing. If you allow in place mutation of records then you cannot reconstitute the past if say a shutdown of the application happens. You keep the entire history of changes.
@nickchapsas
@nickchapsas 23 күн бұрын
Yeap. That's how event sourcing works. you never update or delete. It works very well in the real world
@WolfieVenturi
@WolfieVenturi 23 күн бұрын
This is where a "Compensation action / event" comes in. Something to apply to correct a mistake or revert a downstream action that could not complete. Another scenario is booking a flight. One upstream service might handle seat allocation, and let you reserve a seat whilst you enter credit card details. This seat could be reserved for that time and it's last event is- SeatReserved, effectively holding the seat for you. But downstream the payment service, separate to booking, might reject your card, in which case that seat will have to be released again, so through some compensating action, the payment service would let the booking service know, hey this payment failed. Remember none of these things should be synchronous as a rule, unless you have a VERY good reason to make these things communicate synchronously. Now the booking service releases the seat again under an event, perhaps - SeatAllocationRevoked or SeatReservationDeallocated, something that captures the fact that the seat is available again maybe capturing the idea that it was due to a failed payment, depends on what's needed.
@suhutwadiyo
@suhutwadiyo 23 күн бұрын
Tumben bang bahas beginian
@michaldivismusic
@michaldivismusic 23 күн бұрын
I really dislike the PK/SK column/property names. Even Nick got confused and said "primary key" instead of "partition key" multiple times. PartitionKey/SortKey property names might be better.
@nickchapsas
@nickchapsas 23 күн бұрын
I didn't want to go too in depth on the why, but pk and sk is pretty standard because of the size. Dynamo charges by the size of the document you read or write and being efficient with document size really makes a different at scale
@michaldivismusic
@michaldivismusic 23 күн бұрын
@@nickchapsas Makes sense. Then I'd at least call the C# properties something else as they'll get converted to pk/sk thanks to the JsonPropertyNameAttribute.
@event-sourcing
@event-sourcing 23 күн бұрын
Did someone say Event Sourcing? 👀
@xuriajiva
@xuriajiva 23 күн бұрын
Visitor pattern would be a great way to remove the need of a switch for every event.
@nickchapsas
@nickchapsas 23 күн бұрын
Or strategy or a million other approaches. The video doesn't need this because it would take away from the main focus which is the event sourcing part
@gileee
@gileee 23 күн бұрын
Switches are a clean replacement for the visitor pattern.
@xuriajiva
@xuriajiva 23 күн бұрын
​@@nickchapsas true was the part of my brain that likes to over engineer stuff.
@Eric-kx7do
@Eric-kx7do 23 күн бұрын
Nick, love your content and I am almost always impressed with your decisions on coding style but I have to admit to cringing on this video. This is obviously my own personal opinion but using a reserved word as a class or variable name is too likely to lead to code readability issues especially with newer coders. Is "@event" really clearer than something like "studentEvent"? But great video!
@nickchapsas
@nickchapsas 23 күн бұрын
Give me a better name for type Event that represents an event in its abstract form
@simonhartley9158
@simonhartley9158 23 күн бұрын
I seem to have come away from this video with a lot more of the what and less of the why. Something something auditing ... never delete anything.
@nickchapsas
@nickchapsas 23 күн бұрын
There are many videos talking about the why. There are very few that break down how in simple terms
@timeless-sg
@timeless-sg 13 күн бұрын
How to handle race condition in a distributed environment
@caunt.official
@caunt.official 21 күн бұрын
All that code … and … you are still saving whole Student state in database 😂😂😂 all the point of event sourcing, is just having consistent history for a price of 10x more lines of code
@robschoenaker7328
@robschoenaker7328 23 күн бұрын
Marten, anyone?
@rogerstich7603
@rogerstich7603 22 күн бұрын
This has absolutely nothing to do with your video, but it bothers me, and I have to ask, or I will never be able to sleep again. :D Behind you, below that window, there is something that looks like a guitar. Is that really a guitar, or something else? I double-checked with older videos, and it never moves. One of those useless things that bothers me for no reason. ^^
@victorpanchuk1824
@victorpanchuk1824 17 күн бұрын
a very long video(
@secretagent5209
@secretagent5209 23 күн бұрын
totally BS
@TuxCommander
@TuxCommander 23 күн бұрын
Curious, why? I've a complete different approach than this example but I would refrain to call this here bad or my way superior. EventSourcing is a complex topic and depends as always on your use case, environment and requirements.
@Soliber
@Soliber 23 күн бұрын
A reply like this holds absolutely no value. Either make your case with arguments, or just stay quiet.
Event Sourcing Explained
5:12
Drawing Boxes
Рет қаралды 14 М.
1 класс vs 11 класс  (игрушка)
00:30
БЕРТ
Рет қаралды 2,9 МЛН
UFC 302 : Махачев VS Порье
02:54
Setanta Sports UFC
Рет қаралды 1,4 МЛН
The Pattern You MUST Learn in .NET
20:48
Nick Chapsas
Рет қаралды 77 М.
When Microsoft Violated Liskov Substitution Principle in .NET
18:16
Christopher Okhravi
Рет қаралды 33 М.
That's NOT How Async And Await Works in .NET!
12:25
Codewrinkles
Рет қаралды 14 М.
The Blazor Competitor is Here!
15:08
Nick Chapsas
Рет қаралды 54 М.
A Simple Kafka and Python Walkthrough
11:34
Quix
Рет қаралды 4,6 М.
The New .NET 9 HybridCache That You Must Upgrade To!
14:34
Nick Chapsas
Рет қаралды 43 М.
A Complete .NET Developer's Guide to Span with Stephen Toub
1:02:48
Event Sourcing • Martin Fowler • YOW! 2016
28:06
GOTO Conferences
Рет қаралды 23 М.
Await Async Tasks Are Getting Awesome in .NET 9!
9:24
Nick Chapsas
Рет қаралды 86 М.
1 класс vs 11 класс  (игрушка)
00:30
БЕРТ
Рет қаралды 2,9 МЛН