Hacker News new | ask | show | jobs
by jasonhansel 2182 days ago
It's relational, it scales horizontally, and it's free. That combination is surprisingly hard to find.
1 comments

i'm not a database person, but does postgres not scale horizontally?
No. Read replication approaches linear horizontal scaling (though global latencies can lead to weird edge cases).

Write replication requires external products.

Specifically, Postgres extensions that add write sharding are generally either (a) non-FOSS commercial products or (b) not very well maintained.