
Show HN: Pgconverge – An experimental multi-master PostgreSQL framework in GoHi HN,Over the past few months I've been building pgconverge, an experimental open-source framework for operating multi-master PostgreSQL clusters.The project started as a learning exercise to better understand distributed databases rather than as an attempt to replace PostgreSQL's existing replication model. My goal was to explore what it would take for multiple PostgreSQL nodes to accept writes independently while eventually converging without relying on a designated primary database. Over time, the experiment evolved into a working open-source framework.Some of the areas I explored include:full-mesh replication topology conflict resolution using Last-Write-Wins Hybrid Logical Clocks for ordering concurrent writes bootstrapping new nodes into an existing cluster declarative cluster configurationGithub Link: https://github.com/sobowalebukola/pgconvergeAlong the way I documented the design decisions in a seven-part engineering series:Why Multi-Master? The Problem with Single-Writer Dat
