←back to thread

570 points davidgu | 1 comments | | HN request time: 0.206s | source
Show context
baristaGeek ◴[] No.44528160[source]
Postgres is a great DB, but it's the wrong tool for a write-heavy, high-concurrency, real-time system with pub-sub needs.

You should split your system into specialized components: - Kafka for event transport (you're likely already doing this). - An LSM-tree DB for write-heavy structured data (eg: Cassandra) - Keep Postgres for queries that benefit from relational features in certain parts of your architecture

replies(2): >>44528163 #>>44528672 #
1. baristaGeek ◴[] No.44528163[source]
Very good article! Succinct, and very informative.