Youre funny as hell and you explain quite well. Hope uoir channel grows big
@MrPaulo83944 ай бұрын
Thanks for all these videos. I work as an SA at MongoDB and I find your videos quite helpful to simplify all concepts found in the book “Designing data intensive applications”
@benshapiro9731 Жыл бұрын
“I only last a minute”
@jordanhasnolife5163 Жыл бұрын
If I'm lucky
@AlexBlack-xz8hp8 ай бұрын
Super good video! Thank you so much. Really enjoying the whole series.
@jporritt6 ай бұрын
For the counter it may have been worth explicitly covering the merge function, even though it seems to be something like: merge((x1, y1), (x2, y2)) = (max(x1, x2), max(y1, y2))
@jordanhasnolife51636 ай бұрын
Yep that's the function, thanks James!
@idobleicher Жыл бұрын
I just love your videos man
@jordanhasnolife5163 Жыл бұрын
😙😙
@themichaelw7 ай бұрын
Jordan with the heat in the first 30 seconds
@hoangnhatpham8076 Жыл бұрын
Thanks for the video! Very clearly explained.
@msebrahim-0077 ай бұрын
Question about adding elements after they have been removed (14:04): If a user adds "ham" 5 times to the set on the same node, what is preventing the set from containing different 5 instances of "ham" with unique IDs?
@jordanhasnolife51637 ай бұрын
Nothing. You have multiple instances of ham now. On the front end though, we just tell the user that we have one instance of ham.
@twin3926 ай бұрын
If we were to remove "ham" where there's 5 add instances, we would publish 5 tombstones, one for each instance, right? And I guess this begs the question, in an eventually consistent system, is it possible to miss publishing a tombstone in a state-based CRDT set because a leader doesn't have one of the adds yet? BTW, first time commenting on the channel, absolutely love the content and thanks for making it!
@jordanhasnolife51636 ай бұрын
@@twin392 Yeah absolutely possible your db leader wouldn't have all of those available yet to delete all instances - but in some senses that's a feature because then it means that someone else probably did an independent add operation of all of the ones that you just attempted to delete.
@soumik7611 ай бұрын
2 questions: 1. From what I understood CRDTs are handy for eventual consistent systems. So for example, if I am dealing with Whatsapp group joins/leaves, the set of groups in which I am will be evntually consistent, so CRDT won't be a good way to propagate this info (thus leaderless replication may not be a good choice) 2. Is this all implemented by leaderless DB (like Cassandra) under the hood? Or does this involve someone to define the merge functions for the tables? Or is the merge function auto-detected by the DB Engine based on the type of data (counters, cart etc)?
@jordanhasnolife516311 ай бұрын
1) Yep! 2) Riak does implement these for example, but I think each DB supports them to varying degrees. Generally, the point is that you don't have to write any merge function, unless you're making your own custom database of course :)
@soumik7611 ай бұрын
@@jordanhasnolife5163 thank you
@dibll Жыл бұрын
Jordan, not sure I got the distinction between vector clocks and CRDTs. CRDTs uses vector clocks underneath anyway. Is the difference between them is that CRDTS do the merge for us but with vector clocks we ask client to do the same? Could you pls help me understand? Thanks
@jordanhasnolife5163 Жыл бұрын
Grow only counters are basically a vector clock. Set CRDTs are more or less the same idea, but don't use an underlying version vector. Basically it just avoid having to implement the logic yourself
@user-sx4wm5ls5q2 ай бұрын
thanks for the super informative video. One quick question, how can a counter be idempotent??
@jordanhasnolife51632 ай бұрын
Well I guess an idempotent counter would be a set of "increment" operations each with its own unique ID. That being said, what I moreso meant here is that the CRDT itself is state based, as opposed to operation based, in which you send the entirety of a CRDT to other nodes, rather than just an individual operation on it. Doing that is idempotent.
@user-sx4wm5ls5q2 ай бұрын
@@jordanhasnolife5163 Ahh got it thanks!
@LegitGamer23454 ай бұрын
Hey Jordan, I get how state based CRDTs are idempotent, but I'm having a hard time understanding how they solve causal writes, do they or do they not?
@jordanhasnolife51634 ай бұрын
A database doesn't reflect causality when it displays one write that doesn't rely on another write. If I'm making a write to a state based CRDT and it is dependent on another state based CRDT, clearly the resulting state from my write will include the causal state that I wrote based off of. Hence when I send that state around, causality is preserved.
@LegitGamer23454 ай бұрын
@@jordanhasnolife5163Will the resulting state from your write eventually include the causal state or will it instantly include the causal state? My understanding is that it will be eventual, and if it's eventual, there's no stopping a reader to read from this state that does not have the causal state yet, so causal writes still exist? hope I made sense
@jordanhasnolife51634 ай бұрын
@@LegitGamer2345 In a state based CRDT it should be instant. I need your state to make my write, and the resulting state from my write contains your write.
@innazhogova36214 ай бұрын
proud to be one of the 3%
@jordanhasnolife51634 ай бұрын
wooo!
@mohittheanand8 ай бұрын
awesome video Jordan. btw why do we need to have 2 lists (inc, dec) can't we just decrement in the inc list itself?
@jordanhasnolife51638 ай бұрын
Let's imagine I have three nodes, A, B, C. Each get incremented once, and they all sync up, so now each have [1, 1, 1]. Now let's say I decrement A and that makes it to B, but A goes down before we synchronize to C. So B now has [0, 1, 1] C has [1, 1, 1] What's the correct count? We can't reference the number of increments/decrements on A since it's not up anymore. How do we merge the state of B and C? If we have separate increment and decrement counts this is easy.
@tranquilitybase2939 ай бұрын
Excellent video. One question: what hardware are you using to write the notes?
@jordanhasnolife51639 ай бұрын
iPad
@atanumondal8078 Жыл бұрын
Hi Jordan, Thanks a ton for the awesome videos. One request. Is there any way to share the notes/slides
@jordanhasnolife5163 Жыл бұрын
Yeah fwiw pretty much all of this content is in my old slides, so just check the channel description
@zuowang518511 ай бұрын
what is the technical difficulty for git to unable to automatically merge two conflicting commits? why would the same difficulty not apply in CRDT based merge?
@zuowang518511 ай бұрын
for example, if I edit a google doc during a flight without wifi, and someone else also made a large conflicting change during that time
@zuowang518511 ай бұрын
and could you talk about down side of using CRDT besides the complexity to set it up
@jordanhasnolife516311 ай бұрын
There are many types of CRDTs. Merging counters is simple. That being said, if you want a text merging CRDT, complications arise. We can talk about that one in a few videos :)
@SambitMallickiitg2 ай бұрын
How can we leverage CRDT for a flash sale campaign of a product with defined stock count?
@jordanhasnolife51632 ай бұрын
You can use a counter CRDT and stop selling when it reaches the count. You're going to oversell though since things are eventually consistent here.
@SambitMallickiitg2 ай бұрын
@@jordanhasnolife5163 Thanks for clarifying. I see that you have already explained this in Operational CRDT. I noticed a few HLDs where people use a counter CRDT without much detail on consistency.
@forrestallison18794 ай бұрын
which video is the sequel to this?
@jordanhasnolife51634 ай бұрын
Which ever one that I posted right after it
@hackerandpainter9 ай бұрын
you are a genius.
@jordanhasnolife51639 ай бұрын
No sir, I just have google
@HSBTechYT9 ай бұрын
okay I am a fan
@shobhitarya16377 ай бұрын
How operational CRDT has downside shown in video (in DB2 remove propagate first before adding ham). Because these replication is done by logical replication logs which has ordered logs...so how come it can be non-ordered while propagating replication?
@jordanhasnolife51637 ай бұрын
If you don't even want to think about ordering for a second, think about idempotence. If I send a message which I think didn't go through but actually did, and then send it again, now I've sent that update twice. This isn't a problem with state based crdts.
@John-nhoJ Жыл бұрын
@jordanhasnolife5163 does every record have an update-vector?
@jordanhasnolife5163 Жыл бұрын
Responded to your other comment
@SurajSharma-ur6rm8 ай бұрын
Can anybody please help me understand difference between version vectors and state based CRDTs?
@jordanhasnolife51638 ай бұрын
A version vector helps us order writes. A state based CRDT is some data that lives on each leader that can easily be merged together so that it is eventually consistent. It just so happens that the implementation of a version vector and a state based counter crdt are the same.
@SurajSharma-ur6rm8 ай бұрын
@@jordanhasnolife5163 thanks.
@sahilguleria69765 ай бұрын
Version Vectors are used to keep track of the version of data in distributed systems. They help in detecting conflicts and determining the causality of updates. Here’s how they work: Vector Clock Structure: Each replica in a distributed system maintains a vector of counters, with one counter for each replica. Update Tracking: When a replica updates its data, it increments its own counter in the vector. This updated vector is then propagated with the data. Conflict Detection: When replicas exchange data, they compare their version vectors. If one version vector has all counters greater than or equal to another, it means it is a more recent version (or causally after). If the vectors are not comparable (some counters are higher and others are lower), it indicates a conflict. Resolution: Conflicts are usually resolved by application-specific logic, often requiring manual or semi-automatic intervention. State-Based CRDTs are a type of CRDT designed for achieving strong eventual consistency in distributed systems without requiring complex conflict resolution. Here’s how they work: State Representation: Each replica maintains a state representing the data structure. Merging States: States can be merged using a deterministic and associative function, ensuring that merging the states in any order will produce the same result. Propagation: Each replica periodically sends its state to other replicas. When a replica receives a state from another replica, it merges it with its own state. Convergence: Because of the properties of the merge function, all replicas will eventually converge to the same state, given enough time and the assumption of reliable communication.
@unsaturated84826 ай бұрын
damn fire
@Kuma1176 ай бұрын
Holy crap that intro, first 4 seconds I burst out laughing XD
@jordanhasnolife51636 ай бұрын
I also burst in 4 seconds
@markelmorehome5 ай бұрын
seriously almost peed my pants
@vikramsaurabh8240 Жыл бұрын
gosh...these intros😂
@zozoTravels4 ай бұрын
huh huh, pretty funny, you last only one minute, wont really satisfy the 3 percent female watchers. just kidding :} great stuff