MM Zeeman
MM Zeeman
> > https://github.com/mmzeeman/zotonic_mod_teleview > > I have never seen this tag before. Why is it not available in Zotonic? Does it have any common with the live tag? It is...
Nice write-up Marc. At Channel.me we currently use file and db backups. We can resurrect a broken server well within our SLA levels when needed. We run our server on...
Has anybody made progress with hot failover? We suffered a big hardware failure on our server. Our server had to be replaced not once, but twice because the second machine...
The epgsql api can be used to trigger replication operation. It can't be used to do the actual replication.
It would be possible to create a directory dump with `pd_dump` every x minutes. This can be done in parallel with the `jobs` attribute. This dump can be synced to...
Thanks, that was one of the missing parts.
Postgres has several build in methods of replication. Point in Time Recovery, and Hot Standby. The downside to using them are the following: - You have to run postgres on...
There is also another interesting packages called Slony. It installs triggers on all tables and ships the updates to the replica. This can also be done without replicated all databases...
Interesting, implemented with pub-sub. Do you know if this also puts the database in read-only mode on the slaves? The things is that I would like to have a database...
Aha, then I'll just make periodic dumps which the slave will pull from master with `rsync`. This will only transfer delta's and is efficient enough. Our database is around 3...