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

แชร์
ฝัง

ความคิดเห็น • 40

  • @rubenwolff6661
    @rubenwolff6661 7 หลายเดือนก่อน +7

    best CRDT video so far IMO

  • @AlexBlack-xz8hp
    @AlexBlack-xz8hp 2 หลายเดือนก่อน +1

    Super good video! Thank you so much. Really enjoying the whole series.

  • @0xhhhhff
    @0xhhhhff 5 หลายเดือนก่อน +6

    Youre funny as hell and you explain quite well. Hope uoir channel grows big

  • @hoangnhatpham8076
    @hoangnhatpham8076 ปีที่แล้ว +3

    Thanks for the video! Very clearly explained.

  • @themichaelw
    @themichaelw 18 วันที่ผ่านมา +1

    Jordan with the heat in the first 30 seconds

  • @benshapiro9731
    @benshapiro9731 11 หลายเดือนก่อน +8

    “I only last a minute”

  • @idobleicher
    @idobleicher 10 หลายเดือนก่อน +2

    I just love your videos man

  • @HSBTechYT
    @HSBTechYT 3 หลายเดือนก่อน +1

    okay I am a fan

  • @hackerandpainter
    @hackerandpainter 3 หลายเดือนก่อน +1

    you are a genius.

  • @mohittheanand
    @mohittheanand หลายเดือนก่อน +1

    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  หลายเดือนก่อน +1

      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.

  • @tranquilitybase293
    @tranquilitybase293 2 หลายเดือนก่อน +1

    Excellent video. One question: what hardware are you using to write the notes?

  • @atanumondal8078
    @atanumondal8078 ปีที่แล้ว +1

    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

  • @dibll
    @dibll 6 หลายเดือนก่อน +2

    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  6 หลายเดือนก่อน

      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

  • @shobhitarya1637
    @shobhitarya1637 หลายเดือนก่อน +1

    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  หลายเดือนก่อน

      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.

  • @soumik76
    @soumik76 5 หลายเดือนก่อน +1

    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  5 หลายเดือนก่อน

      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 5 หลายเดือนก่อน

      @@jordanhasnolife5163 thank you

  • @msebrahim-007
    @msebrahim-007 23 วันที่ผ่านมา +1

    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  23 วันที่ผ่านมา

      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 8 วันที่ผ่านมา +1

      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  8 วันที่ผ่านมา

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

  • @zuowang5185
    @zuowang5185 5 หลายเดือนก่อน +1

    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 5 หลายเดือนก่อน +1

      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 5 หลายเดือนก่อน +1

      and could you talk about down side of using CRDT besides the complexity to set it up

    • @jordanhasnolife5163
      @jordanhasnolife5163  5 หลายเดือนก่อน +2

      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 :)

  • @John-nhoJ
    @John-nhoJ 7 หลายเดือนก่อน +1

    @jordanhasnolife5163 does every record have an update-vector?

  • @SurajSharma-ur6rm
    @SurajSharma-ur6rm 2 หลายเดือนก่อน +1

    Can anybody please help me understand difference between version vectors and state based CRDTs?

    • @jordanhasnolife5163
      @jordanhasnolife5163  2 หลายเดือนก่อน +2

      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 หลายเดือนก่อน

      @@jordanhasnolife5163 thanks.

  • @vikramsaurabh8240
    @vikramsaurabh8240 6 หลายเดือนก่อน +1

    gosh...these intros😂

  • @davidarcoleo6033
    @davidarcoleo6033 2 หลายเดือนก่อน +1

    lol