←back to thread

221 points charlieirish | 3 comments | | HN request time: 0.418s | source
Show context
ezekg ◴[] No.43537495[source]
It'd be nice if the post went into how conflict resolution will (?) work because that's the hard part here and the main selling point imo.
replies(4): >>43537590 #>>43537889 #>>43540353 #>>43541448 #
1. mystifyingpoi ◴[] No.43537889[source]
I think this point confuses me the most in this regard:

> Local-first architectures allow for fast and responsive applications that are resilient to network failures

So are we talking about apps that can work for days and weeks offline and then sync a lot of data at once, or are we talking about apps that can survive a few seconds glitch in network connectivity? I think that what is promised is the former, but what will make sense in practice is the latter.

replies(2): >>43539335 #>>43539338 #
2. hnthrow90348765 ◴[] No.43539335[source]
Local-first is overkill for transient faults. This is probably meant for outage and disaster scenarios.
3. ochiba ◴[] No.43539338[source]
There are niche use cases where the former (work for days to weeks offline) are useful and even critical - like certain field service use cases. Surviving glitches in network connectivity is useful for mainstream/consumer applications for users in general, especially those on mobile.

In my experience, it can affect the architecture and performance in a significant way. If a client can go offline for an arbitrary period of time, doing a delta sync when they come back online is more tricky, since we need to sync a specific range of operation history (and this needs to be adjusted for specific scope/permissions that the client has access to). If you scale up a system to thousands or millions of clients, having them all do arbitrary range queries doesn't scale well. For this reason I've seen sync engines simply force a client to do a complete re-sync if it "falls behind" with deltas for too long (e.g. more than a day or so.) Maintaining an operation log that is set up and indexed for querying arbitrary ranges of operations (for a specific scope of data) works well.