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

Programmer Humor

25139 readers
1547 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 1 points 3 days 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 3 days 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 3 days 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.