Database proxy

0  

One way to get decentralisation for free is to write a Postgres database server which is a simple text based protocol and distribute the resulting queries to peers P2P

YAML Idėja

The use of a database proxy is how how vitess works.

This means programmers can write otherwise normal Django applications (such as 0oo) and database using applications as if they were centralised but the decentralisation and synchronization is distributed.

chronological,

(nesiųsti pranešimų) (nebūtinas) Prašome prisijungti.

Man tai patinka. Taigi, jei gerai suprantu, bus mazgai, kuriuose yra tie centriniai serveriai, ir tam tikra serverių adresų lentelė prieinama visiems klientams. Galbūt šių serverių egzistavimą galima padaryti dinamišką Galbūt gali būti sukurta sistema, skirta bet kokią programą paversti platinimo be aptarnavimo programa?

I like that. So, if I understand right, there would be nodes hosting those hub servers, and some table of server addresses available to all clients. Maybe, those servers existence can be made dynamic Maybe, a framework can be developed to convert any app into a distribution serveless app?


Taip. Bet kuriame serverių pogrupyje yra duomenų pogrupis (kiekvienas įrašas priklauso serveriui), tai gali būti paslėpta programoje. Tai mano išplatinta prisijungimo idėja, kuriai turiu atskirą idėją.

Arba visuose serveriuose yra visi duomenys, o duomenys yra vienodai paskirstomi visiems. Iš esmės visos užklausos vykdomos visuose serveriuose, kad pasiektų tą pačią būseną. Galite turėti duomenų bazės versiją, kuri yra iki šiol įvykdytų užklausų skaičius ir, jei serveris kurį laiką buvo neprisijungęs, jam tiesiog reikia vykdyti užklausas nuo paskutinės matytos iki paskutinės užklausos. Tai vadinama logine replikacija.

Yes. Either a subset of servers hosts a subset of data (each record belongs to a server) this can be hidden from the application. This is my distributed join idea which I have a separate idea for.

Or all servers host all the data and the data is spread to everybody equally. Essentially all queries run on all servers to get to the same state. You could have a database version which is the number of queries executed so far and if a server has been offline for a time it just needs to execute queries from last seen query up to latest query, in order. That's called logical replication.