|
|
|
|
|
by _m8fo
1028 days ago
|
|
An interesting idea, but if I’m understanding the problem trying to be solved - might be better suited by durable execution (two examples being Azure’s durable functions, and Temporal.io). In practice transactions between arbitrary data stores would result in potentially boundless and unpredictable latency, no? Also, is Postgres strongly consistent and linearizable)? One alternative would be using a database with stronger consistency guarantees (Spanner is but not open source, FoundationDB is but has limitations on transactions unless you implement mvcc yourself, which to be fair you are). |
|