Getting Started with Event Sourcing in .NET

Поділитися
Вставка
  • Опубліковано 19 тра 2024
  • 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

КОМЕНТАРІ • 168

  • @gustavo-santos-dev
    @gustavo-santos-dev 9 днів тому +11

    This is the content level I expect from Nick

  • @logank.70
    @logank.70 13 днів тому +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.

  • @elbeshenrique9979
    @elbeshenrique9979 14 днів тому +29

    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 13 днів тому +1

      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.

  • @VanDameDev
    @VanDameDev 13 днів тому +3

    Simple, Elegant, To the point video. 👍🏻

  • @lordmetzgermeister
    @lordmetzgermeister 13 днів тому +6

    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.

  • @AJax2012
    @AJax2012 13 днів тому +4

    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.

  • @dareljohnson5770
    @dareljohnson5770 13 днів тому

    I needed this 3 months ago. Thanks Nick.

  • @jjackbauer1
    @jjackbauer1 13 днів тому

    Great Video Nick!! You were able to provide a vast glipmse of the matter with a simple examples!

  • @txkyle2013
    @txkyle2013 13 днів тому +1

    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

  • @baranacikgoz
    @baranacikgoz 13 днів тому +1

    Wow how much effort he put into this video. Excellent job

  • @xlerb2286
    @xlerb2286 5 днів тому

    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.

  • @VladyslavHorbachov
    @VladyslavHorbachov 12 днів тому

    Extremely cool video! Looking forward for part 2

  • @justinassakalavicius4465
    @justinassakalavicius4465 5 днів тому

    Great video - amazing content. Thank you !

  • @GiovanniOrlandoi7
    @GiovanniOrlandoi7 13 днів тому +2

    Great video! Thank you

  • @bartekm3878
    @bartekm3878 10 днів тому

    You explained it so clearly! 🤩
    It'd be awesome if you continued this as a series with more concepts.

  • @acaplette
    @acaplette 13 днів тому

    Fantastic topic and highly relevent to a current project of mine. Would love to see more please.

  • @onurmicoogullari8022
    @onurmicoogullari8022 8 днів тому

    Awesome video Nick, would be nice with more content like this.

  • @anotherme4638
    @anotherme4638 9 днів тому

    This is really helpful and to the point
    thanks a lot

  • @handlez411
    @handlez411 8 днів тому

    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 8 днів тому

    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!

  • @jeffreypfeifer130
    @jeffreypfeifer130 10 днів тому

    Awesome Video!!
    Keep pumping them out :)

  • @pablocom
    @pablocom 6 днів тому

    Nice introductory video for Event Sourcing! This topic deserves a course on dometrain 😛

  • @Fred-yq3fs
    @Fred-yq3fs 13 днів тому

    Wow. Great video. Many thanks.

  • @WolfieVenturi
    @WolfieVenturi 13 днів тому

    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".

  • @explorewithmarcus
    @explorewithmarcus 13 днів тому +1

    Fantastic video. You should make a course on this topic. I'd be interested to learn more about it.

  • @emanuelrodriguez3155
    @emanuelrodriguez3155 10 днів тому +1

    please continué with this topic ❤

  • @mahmoud.shaheen
    @mahmoud.shaheen 13 днів тому

    Direct to the point 👌

  • @BernhardMillauer
    @BernhardMillauer 13 днів тому

    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...

  • @ivanchukayev6547
    @ivanchukayev6547 9 днів тому

    What a great topic!

  • @mahmoudyaseen6999
    @mahmoudyaseen6999 13 днів тому

    Great video, thank you

  • @fotofoxes2255
    @fotofoxes2255 13 днів тому +1

    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.

  • @Naton
    @Naton 13 днів тому +1

    Awesome content.

  • @sergeynosov8180
    @sergeynosov8180 13 днів тому +2

    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 11 днів тому +1

      Is there a good place to read up on the problems and potential solutions?

    • @sergeynosov8180
      @sergeynosov8180 10 днів тому +1

      @@SlackwareNVM You could start by reading the Leslie Lamport’s 1978 paper titled “Time, Clocks, and the Ordering of Events…”

  • @SlackwareNVM
    @SlackwareNVM 11 днів тому

    This is the content I've been waiting for. How would you handle versioning of events and views - adding and removing properties, etc.?

  • @YvesRoyer
    @YvesRoyer 11 днів тому

    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"?

  • @miljenkocvjetko4953
    @miljenkocvjetko4953 9 днів тому +1

    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

  • @RoySalisbury
    @RoySalisbury 13 днів тому +2

    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 13 днів тому

      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 13 днів тому

    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 13 днів тому +2

      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?

  • @pdurchev
    @pdurchev 13 днів тому

    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?

  • @komlaadzam7918
    @komlaadzam7918 13 днів тому

    Sweet!!..Thanks

  • @DrHeinzDoofenshmirtz
    @DrHeinzDoofenshmirtz 13 днів тому

    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 10 днів тому

      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.

  • @MrIsrael3000
    @MrIsrael3000 12 днів тому

    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?

  • @robertlinton9379
    @robertlinton9379 13 днів тому

    +1 for more of this

  • @pauljohnsonbringbackdislik1469
    @pauljohnsonbringbackdislik1469 13 днів тому

    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...

  • @fredimachadonet
    @fredimachadonet 14 днів тому +1

    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.

    •  14 днів тому +1

      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  13 днів тому +7

      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 13 днів тому

      Versioning would solve it indeed, unfortunatelly at the expense of higher throughput.

  • @tonystoynev7969
    @tonystoynev7969 13 днів тому +2

    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  13 днів тому +1

      Finance, banking, e-commerce, ERPs, basically anything

  • @goose1923
    @goose1923 13 днів тому

    Thanks for the simple and intuitive video about the theme.
    YES to more Event Sourcing!

  • @satyayuga0
    @satyayuga0 13 днів тому +1

    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 13 днів тому

      I assume you could scan the assembly and do it automatically in some way.

  • @BrendonParker
    @BrendonParker 13 днів тому

    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.

  • @PhantomPhobos
    @PhantomPhobos 13 днів тому +2

    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.

  • @Mac_okee
    @Mac_okee 13 днів тому

    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.

  •  12 днів тому

    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  12 днів тому

      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

  • @Mayhem-MLBB
    @Mayhem-MLBB 12 днів тому

    Nice content bro, following you since 2015, you abandoned Java xD

  • @isnotnull
    @isnotnull 13 днів тому +20

    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 13 днів тому +4

      Audit trails is good use case for this pattern. For finances, you have a balance state which gets updated with every transaction.

    • @andersborum9267
      @andersborum9267 13 днів тому +9

      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 13 днів тому +2

      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 13 днів тому +8

      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 13 днів тому

      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.

  • @vonn9737
    @vonn9737 13 днів тому

    You should do a video on Microsoft SQL temporal tables.

  • @baranacikgoz
    @baranacikgoz 13 днів тому

    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 3 дні тому +1

      You can use CQRS to update "Read Database" every time you write events to "Write Database"

    • @baranacikgoz
      @baranacikgoz 3 дні тому

      @@shahrukhkhan3967 thanks for your comment. Can you describe the update process more?

  • @birgerg
    @birgerg 13 днів тому +3

    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  13 днів тому +1

      Yeah it is. There are solutions around GDPR

    • @sergeynosov8180
      @sergeynosov8180 13 днів тому +1

      Encrypt each customer’s data with own key, store keys separately, when the customer asks to be forgotten - delete the key. HTH

  • @renynzea
    @renynzea 13 днів тому

    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  13 днів тому

      Because with interfaces in System.JSON there would be a serialization issue by property omission

  • @stephenyork7318
    @stephenyork7318 8 днів тому

    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 UA-cam 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.

  • @furrman18
    @furrman18 13 днів тому

    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 13 днів тому +1

      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 13 днів тому +1

      @@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.

  • @levdad
    @levdad 12 днів тому

    Hi, first of great video.
    Wondering how it will work with entities that have birectional relationships.

  • @MC_DarkMaster
    @MC_DarkMaster 13 днів тому

    Thanks for that topic, but Nick... Single Responsibility Principle?

  • @3263927
    @3263927 9 днів тому

    wo Nick! you play guitar! cool! do you have any video you playing?

  • @marcobaccaro
    @marcobaccaro 13 днів тому

    Hello EviBaaadee!

  • @mattfbk
    @mattfbk 13 днів тому +1

    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  13 днів тому

      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 13 днів тому

      @@nickchapsas that is actually valuable information. Thanks.

    • @Divus90
      @Divus90 13 днів тому

      @@nickchapsas To be fair, wouldn't Postgres qualify already as NoSql database?

    • @alexisnarvaez
      @alexisnarvaez 13 днів тому

      @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

  • @ghosttie
    @ghosttie 13 днів тому +2

    I think it would have been good to start with why you would want to do this...

    • @nickchapsas
      @nickchapsas  13 днів тому

      There are many videos that talk about that. I am not interested in teaching theory

    • @ghosttie
      @ghosttie 13 днів тому +1

      @@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  13 днів тому

      @@ghosttie There is nothing inefficient about the database in event sourcing. Storage is cheap

  • @gileee
    @gileee 13 днів тому

    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.

  • @peculiar-coding-endeavours
    @peculiar-coding-endeavours 13 днів тому

    So, can we expect a course on DomeTrain for this? Would be awesome!

  • @SimplyAwesomeOriginal
    @SimplyAwesomeOriginal 6 днів тому

    At from 17:36 Please provide the video of eventual/consistency async/sync read/write heavy option please

  • @TheAzerue
    @TheAzerue 11 днів тому

    Why using "@" when defining Event @event as a param. Is it a convention ?

    • @Dawizz88
      @Dawizz88 5 днів тому

      Because event is a C# keyword, so the @ tells the compiler to ignore that and use it as a parameter name.

  • @timur2887
    @timur2887 13 днів тому +1

    event sourcing is doubtful, but okay =) repro of an object state through events may cost too much in high loaded systems

    • @nickchapsas
      @nickchapsas  13 днів тому +1

      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 13 днів тому

      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 13 днів тому

      ​@@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.

  • @emfi8744
    @emfi8744 12 днів тому

    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 11 днів тому

      Yep, however i don't see this as a problem, is this any different from writing code-first EF migrations?

    • @emfi8744
      @emfi8744 11 днів тому

      @@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

  • @makp0
    @makp0 13 днів тому

    Try Eventuous framework

  • @rafigeniuscs
    @rafigeniuscs 13 днів тому +1

    Great topic, try to have some advanced content

  • @shivanshusharma422
    @shivanshusharma422 14 днів тому

    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 14 днів тому +3

      Use it, learn it, stay up to date with it

    • @shivanshusharma422
      @shivanshusharma422 14 днів тому

      @@ferd1775 thanks and i wanna know and learn how to use it best as developer. What's the key?

    • @ferd1775
      @ferd1775 13 днів тому +1

      @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.

  • @lordicemaniac
    @lordicemaniac 13 днів тому

    please sir, can I have more? :D

  • @realtimberstalker
    @realtimberstalker 12 днів тому

    So event sourcing is just command pattern?

  • @troncek
    @troncek 13 днів тому

    DateTimeOffset instead of DateTime no?

  • @LasseVagstherKarlsen
    @LasseVagstherKarlsen 13 днів тому

    One question at ua-cam.com/video/n_o-xuuVtmw/v-deo.html 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?

  • @suhutwadiyo
    @suhutwadiyo 14 днів тому

    Tumben bang bahas beginian

  • @cristianodias3529
    @cristianodias3529 11 днів тому

    How easy is that? :)

  • @event-sourcing
    @event-sourcing 13 днів тому

    Did someone say Event Sourcing? 👀

  • @michaldivismusic
    @michaldivismusic 13 днів тому

    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  13 днів тому

      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 13 днів тому

      @@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.

  • @Hades200082
    @Hades200082 14 днів тому +5

    "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 14 днів тому +1

      its easy, make an event `DateOfBirthRedacted` and go on

    • @Mig440
      @Mig440 14 днів тому +1

      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  14 днів тому +3

      Yeap. That's how event sourcing works. you never update or delete. It works very well in the real world

    • @WolfieVenturi
      @WolfieVenturi 13 днів тому

      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.

  • @simonhartley9158
    @simonhartley9158 13 днів тому +1

    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  13 днів тому

      There are many videos talking about the why. There are very few that break down how in simple terms

  • @Eric-kx7do
    @Eric-kx7do 13 днів тому

    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  13 днів тому

      Give me a better name for type Event that represents an event in its abstract form

  • @xuriajiva
    @xuriajiva 13 днів тому

    Visitor pattern would be a great way to remove the need of a switch for every event.

    • @nickchapsas
      @nickchapsas  13 днів тому +2

      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 13 днів тому

      Switches are a clean replacement for the visitor pattern.

    • @xuriajiva
      @xuriajiva 13 днів тому +1

      ​@@nickchapsas true was the part of my brain that likes to over engineer stuff.

  • @andrewbirs2046
    @andrewbirs2046 14 днів тому

    First nakh!

  • @timeless-sg
    @timeless-sg 3 дні тому

    How to handle race condition in a distributed environment

  • @caunt.official
    @caunt.official 11 днів тому

    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

  • @rogerstich7603
    @rogerstich7603 12 днів тому

    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. ^^

  • @robschoenaker7328
    @robschoenaker7328 13 днів тому

    Marten, anyone?

  • @victorpanchuk1824
    @victorpanchuk1824 7 днів тому

    a very long video(

  • @secretagent5209
    @secretagent5209 14 днів тому +3

    totally BS

    • @TuxCommander
      @TuxCommander 13 днів тому +1

      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 13 днів тому +3

      A reply like this holds absolutely no value. Either make your case with arguments, or just stay quiet.