Earlier quoted context omitted.
Unless your database is in the browser, you are always going to be at mercy of network latencies talking to the backend.
You're just saying, even if all you were doing was fetching a static JSON blob from the memory of the frontend server, you'd still want load states, right? (That makes sense, I'm just checking my understanding.)
Distributed SQLite: Paradigm shift or hype?
21–30 of 165 posts
Re: Distributed SQLite: Paradigm shift or hype?
#22this page just says 'Forbidden'
Re: Distributed SQLite: Paradigm shift or hype?
#23...to pretty much eliminate write contention. I know, it sucks these aren't built in yet.
Also if we got some sort of router + map reduce helper (Vitess, Citus -like) it'd make massively distributed SQLite a lot more viable. Setups that don't hammer a single master would make all the difference.
Postgres' main disadvantage at scale is all the additional machinery required (backups, failover, proxy, no DDL replication with built-in logical replication .... UGH!!), even when you're using Citus. Feels like it forces you into k8s with the amount of orchestration you need to run.
Re: Distributed SQLite: Paradigm shift or hype?
#24Re: Distributed SQLite: Paradigm shift or hype?
#25Re: Distributed SQLite: Paradigm shift or hype?
#26Re: Distributed SQLite: Paradigm shift or hype?
#27Earlier quoted context omitted.
You're just saying, even if all you were doing was fetching a static JSON blob from the memory of the frontend server, you'd still want load states, right? (That makes sense, I'm just checking my understanding.)
Yup, exactly. Phones change wifi networks, routers drop packets, load balancers get overloaded. Hard to fully eliminate tail latencies.
See https://www.sqlite.org/np1queryprob.html
I've implemented GraphQL on top of SQLite and found it to be an amazingly good match, because the biggest weakness of GraphQL is that it makes it easy to accidentally trigger 100s of queries in one request and with SQLite that really doesn't matter.
Re: Distributed SQLite: Paradigm shift or hype?
#28Re: Distributed SQLite: Paradigm shift or hype?
#29Earlier quoted context omitted.
[flagged]
Out of curiosity, did I stumble on an actual feud of sorts, or since they're a prolific commenter did they just not recognize you? Do you have links to the first four?
Re: Distributed SQLite: Paradigm shift or hype?
#30WAL2 + BEGIN CONCURRENT ...to pretty much eliminate write contention. I know, it sucks these aren't built in yet. Also if we got some sort of router + map reduce helper (Vitess, Citus -like) it'd make massively distributed SQLite a lot more viable. Setups that don't hammer a single master would make all the difference. Postgres' main disadvantage at scale is all the additional machinery required (backups, failover, p…