HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kolar

no profile record

comments

kolar
·il y a 4 ans·discuss
I can't agree more with this. Maybe 1 song out of 30 in Discover Weekly is worth to be marked as liked.
kolar
·il y a 4 ans·discuss
Also Postgres is too slow for large analytical databases. You need columnar database to make fast queries on >1Tb of data.
kolar
·il y a 4 ans·discuss
Be careful when using Postgres as queue with priorites, especially if your messages are large. Removing rows doesn't free up the memory in Postgres and vacuum could remove rows only from the end of a 'page'. As a result of that queue will require enormous amount of space to work. The only way to free up space is to use VACUUM FULL which rewrites whole database and will lock queue for long time. I've had a lot of headaches when we've tried 'use Postgres for everything' on production :)