this post was submitted on 18 Jul 2025
817 points (99.4% liked)

Programmer Humor

25460 readers
1426 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] msage@programming.dev 45 points 2 weeks ago (18 children)

This is literally me at every possible discussion regarding any other RDBMS.

My coworkers joked that I got paid for promoting Postgres.

Then we switched from Percona to Patroni and everyone agreed that... fuck yes, PostgreSQL is the best.

[–] locuester@lemmy.zip 11 points 2 weeks ago (5 children)

I used to agree, but recently tried out Clickhouse for high ingestion rate time series data in the financial sector and I’m super impressed by it. Postgres was struggling and we migrated.

This isn’t to say that it’s better overall by any means, but simply that I did actually find a better tool at a certain limit.

[–] msage@programming.dev 1 points 2 weeks ago (2 children)

If you can, share your experience!

I also do finance, so if there is anything more to explore, I'm here to listen and learn.

[–] locuester@lemmy.zip 8 points 2 weeks ago

Clickhouse has a unique performance gain when you have a system that isn’t operational data that is normalized and updated often. But rather tables of timeseries data being ingested for write only.

An example, stock prices or order books in real-time. Tens of thousands per second. Clickhouse can write, merge, aggregate records really nicely.

Then selects against ordered data with aggregates are lightning fast. It has lots of nuances to learn and has really powerful capability, but only for this type of use case.

It doesn’t have atomic transactions. Updates and deletes are very poor performing.

[–] Tja@programming.dev 3 points 2 weeks ago

For high ingestion (really high) you have to start sharding. It's nice to have a DB that can do that natively, MongoDB and Influx are very popular, depending on the exact application.

load more comments (2 replies)
load more comments (14 replies)