CRDTs - Stop Worrying About Write Conflicts | Systems Design 0 to 1 with Ex-Google SWE

  Рет қаралды 14,241

Jordan has no life

Jordan has no life

Күн бұрын

Пікірлер: 58
@MrPaulo8394
@MrPaulo8394 20 күн бұрын
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”
@rubenwolff6661
@rubenwolff6661 10 ай бұрын
best CRDT video so far IMO
@0xhhhhff
@0xhhhhff 8 ай бұрын
Youre funny as hell and you explain quite well. Hope uoir channel grows big
@AlexBlack-xz8hp
@AlexBlack-xz8hp 5 ай бұрын
Super good video! Thank you so much. Really enjoying the whole series.
@themichaelw
@themichaelw 3 ай бұрын
Jordan with the heat in the first 30 seconds
@benshapiro9731
@benshapiro9731 Жыл бұрын
“I only last a minute”
@jordanhasnolife5163
@jordanhasnolife5163 Жыл бұрын
If I'm lucky
@jporritt
@jporritt 2 ай бұрын
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))
@jordanhasnolife5163
@jordanhasnolife5163 2 ай бұрын
Yep that's the function, thanks James!
@hoangnhatpham8076
@hoangnhatpham8076 Жыл бұрын
Thanks for the video! Very clearly explained.
@idobleicher
@idobleicher Жыл бұрын
I just love your videos man
@jordanhasnolife5163
@jordanhasnolife5163 Жыл бұрын
😙😙
@tedcat117
@tedcat117 2 ай бұрын
Holy crap that intro, first 4 seconds I burst out laughing XD
@jordanhasnolife5163
@jordanhasnolife5163 2 ай бұрын
I also burst in 4 seconds
@markelmorehome
@markelmorehome Ай бұрын
seriously almost peed my pants
@dibll
@dibll 9 ай бұрын
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
@jordanhasnolife5163 9 ай бұрын
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
@soumik76
@soumik76 8 ай бұрын
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)?
@jordanhasnolife5163
@jordanhasnolife5163 8 ай бұрын
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 :)
@soumik76
@soumik76 8 ай бұрын
@@jordanhasnolife5163 thank you
@LegitGamer2345
@LegitGamer2345 29 күн бұрын
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?
@jordanhasnolife5163
@jordanhasnolife5163 29 күн бұрын
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.
@LegitGamer2345
@LegitGamer2345 28 күн бұрын
​@@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
@jordanhasnolife5163
@jordanhasnolife5163 28 күн бұрын
@@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.
@HSBTechYT
@HSBTechYT 6 ай бұрын
okay I am a fan
@innazhogova3621
@innazhogova3621 Ай бұрын
proud to be one of the 3%
@jordanhasnolife5163
@jordanhasnolife5163 Ай бұрын
wooo!
@unsaturated8482
@unsaturated8482 2 ай бұрын
damn fire
@mohittheanand
@mohittheanand 4 ай бұрын
awesome video Jordan. btw why do we need to have 2 lists (inc, dec) can't we just decrement in the inc list itself?
@jordanhasnolife5163
@jordanhasnolife5163 4 ай бұрын
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.
@hackerandpainter
@hackerandpainter 6 ай бұрын
you are a genius.
@jordanhasnolife5163
@jordanhasnolife5163 6 ай бұрын
No sir, I just have google
@atanumondal8078
@atanumondal8078 Жыл бұрын
Hi Jordan, Thanks a ton for the awesome videos. One request. Is there any way to share the notes/slides
@jordanhasnolife5163
@jordanhasnolife5163 Жыл бұрын
Yeah fwiw pretty much all of this content is in my old slides, so just check the channel description
@msebrahim-007
@msebrahim-007 3 ай бұрын
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?
@jordanhasnolife5163
@jordanhasnolife5163 3 ай бұрын
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.
@twin392
@twin392 3 ай бұрын
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!
@jordanhasnolife5163
@jordanhasnolife5163 3 ай бұрын
@@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.
@tranquilitybase293
@tranquilitybase293 5 ай бұрын
Excellent video. One question: what hardware are you using to write the notes?
@jordanhasnolife5163
@jordanhasnolife5163 5 ай бұрын
iPad
@shobhitarya1637
@shobhitarya1637 4 ай бұрын
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?
@jordanhasnolife5163
@jordanhasnolife5163 4 ай бұрын
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.
@zuowang5185
@zuowang5185 8 ай бұрын
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?
@zuowang5185
@zuowang5185 8 ай бұрын
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
@zuowang5185
@zuowang5185 8 ай бұрын
and could you talk about down side of using CRDT besides the complexity to set it up
@jordanhasnolife5163
@jordanhasnolife5163 8 ай бұрын
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 :)
@forrestallison1879
@forrestallison1879 25 күн бұрын
which video is the sequel to this?
@jordanhasnolife5163
@jordanhasnolife5163 25 күн бұрын
Which ever one that I posted right after it
@John-nhoJ
@John-nhoJ 9 ай бұрын
@jordanhasnolife5163 does every record have an update-vector?
@jordanhasnolife5163
@jordanhasnolife5163 9 ай бұрын
Responded to your other comment
@SurajSharma-ur6rm
@SurajSharma-ur6rm 5 ай бұрын
Can anybody please help me understand difference between version vectors and state based CRDTs?
@jordanhasnolife5163
@jordanhasnolife5163 5 ай бұрын
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-ur6rm
@SurajSharma-ur6rm 4 ай бұрын
@@jordanhasnolife5163 thanks.
@sahilguleria6976
@sahilguleria6976 Ай бұрын
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.
@vikramsaurabh8240
@vikramsaurabh8240 9 ай бұрын
gosh...these intros😂
@davidarcoleo6033
@davidarcoleo6033 4 ай бұрын
lol
@zozoTravels
@zozoTravels 28 күн бұрын
huh huh, pretty funny, you last only one minute, wont really satisfy the 3 percent female watchers. just kidding :} great stuff
Is Computer Science still worth it?
20:08
NeetCodeIO
Рет қаралды 78 М.
Or is Harriet Quinn good? #cosplay#joker #Harriet Quinn
00:20
佐助与鸣人
Рет қаралды 55 МЛН
А ВЫ ЛЮБИТЕ ШКОЛУ?? #shorts
00:20
Паша Осадчий
Рет қаралды 6 МЛН
CRDTs for Non Academics
16:26
Russell Sullivan
Рет қаралды 24 М.
John Mumm - A CRDT Primer: Defanging Order Theory
37:01
Curry On!
Рет қаралды 11 М.
Multi Leader Replication - chaos | Systems Design 0 to 1 with Ex-Google SWE
13:38
CRDTs and the Quest for Distributed Consistency
43:39
InfoQ
Рет қаралды 55 М.
System Design: Why is Kafka fast?
5:02
ByteByteGo
Рет қаралды 1,1 МЛН
why are switch statements so HECKIN fast?
11:03
Low Level Learning
Рет қаралды 408 М.
Turns out REST APIs weren't the answer (and that's OK!)
10:38
Dylan Beattie
Рет қаралды 157 М.