Skip to main content

3 posts tagged with "postgres"

View All Tags

High Availability and Postgres full-sync replication

· 7 min read
Sugu Sougoumarane
Creator of Multigres, Vitess

In order to achieve High Availability (HA) in Postgres, we need to have at least one other standby replica that keeps up with the primary’s changes near-real-time. Using Postgres physical replication is the most common method to achieve this.

High Availability also requires us to solve the problem of distributed durability. After all, we have to make sure that no transactions are lost when we failover to a standby. So, if we can make this work, we can avoid the need for an external system like a mounted cloud drive or other exotic solutions to ensure that we don’t lose data. We could just have all the servers use their local NVME drive for storage. This will serendipitously improve performance due to the drives being an order of magnitude faster than the network, and reduce costs since disk I/O does not incur network cost.

If you have comments or questions, please start a discussion on the Multigres GitHub repository.

Interview: Multigres on Database School

· 56 min read
Sugu Sougoumarane
Creator of Multigres, Vitess

Sugu discusses Multigres on the Database School YouTube channel. He shares the history of Vitess, its evolution, and the journey to creating Multigres for Postgres. The conversation covers the challenges faced at YouTube, the design decisions made in Vitess, and the vision for Multigres.

If you have comments or questions, please start a discussion on the Multigres GitHub repository.