HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jeltz

7,812 karmajoined 16 years ago

Submissions

Stabilizing Benchmarks

vondra.me
1 points·by jeltz·3 months ago·0 comments

Cirrus Labs to Join OpenAI

cirruslabs.org
4 points·by jeltz·3 months ago·6 comments

Importance of Tuning Checkpoint in PostgreSQL

percona.com
21 points·by jeltz·5 months ago·1 comments

comments

jeltz
·yesterday·discuss
Not even that, it is just an off-topic rant about government censorship.
jeltz
·yesterday·discuss
I am from Sweden where it is the other way round, the state owned media is severely disadvantaged by rules private media does not need to follow.
jeltz
·2 days ago·discuss
Pretty sure you could have said the same in 1986 and I know for sure you could have in 2006. Not sure why you think people having different tastes is new.
jeltz
·2 days ago·discuss
404 Not Found
jeltz
·2 days ago·discuss
Ok ... you know PostgreSQL supports hash tables in shared memory, right? PostgreSQL could in theory share those if we wanted to. The issue is just that coding anything which uses shared memory is a lot of work.

Additionally the reasons PostgreSQL does not offer Clickhouse performance has very little to do with parallelism. PostgreSQL plans to move to threading but the efforts around imporving OLAP performance are almost entirely unrelated.
jeltz
·2 days ago·discuss
I strongly disagree. The easiest way to shut down your business is to insist on being 100% secure because the only way to have perfect security is to do nothing.

Security is always about tradeoffs.
jeltz
·2 days ago·discuss
Funny story but in my experience hardware engineers produce some of the worst software of the industry. Of course there must be some hardware engineers out there who do hood software but generally what they build are disasters.
jeltz
·2 days ago·discuss
Some, but not that much. Switching PostgreSQL to a threaded model will not magically make spawning connections fast. PostgreSQL connections are quite heavyweight.

The reason to use threads is almost entirely about ease of development, not about performance. If you use shrared memory like PostgreSQL does you need to write your own allocators, etc. So much you get for free if you use threads.
jeltz
·2 days ago·discuss
Threads does not offer any major performance advantage, performance of processes vs threads is virtually the same. The reason the PostgreSQL project is moving towards threads is to make development easier.
jeltz
·2 days ago·discuss
They would need to be rewritten as there is no formal extension API. Extensions can call into almost any part of PostgreSQL.
jeltz
·2 days ago·discuss
It is not a requirement the PostgreSQL project wants to have. It would be a heavy burden and mostly pointless.
jeltz
·2 days ago·discuss
PostgreSQL's tests are mostly integration tests.
jeltz
·2 days ago·discuss
I think Opus 8.4 is a below average developer, but maybe I have just worked with good developers and have a skewed perspective of what the average is.
jeltz
·10 days ago·discuss
It is not like you typically can just ignore a court order so Google will need to convince Klarna that they have changed something or Klarna can just go back to the court.
jeltz
·20 days ago·discuss
Because if we don't then the rich can divide and conquer. We need to stand united, even with the Meta techbros.
jeltz
·25 days ago·discuss
I agree with your first part but your edit is a logic fallacy. I don't need to be able to hack something to say that it is insecure.

For example: I don't know how to exploit SAML but I know it is a terrible standard dur to making all of the XML parser an attack surface. I am not a security researcher so I dont know how to find exploits in XML parsers but I know having a huge attack surface is bad.
jeltz
·25 days ago·discuss
That is true for software engineering in general. If you have a manager like that nothing is fun. And the products you build are likely to be bad.
jeltz
·26 days ago·discuss
Other than coal gas being not very efficient use of coal what was so bad about it? Stockholm still had coal gas in the early 2000s and accidental carbon monoxide poisoning was very rare. Of course the alternatives are better, but only marginally so.
jeltz
·last month·discuss
Mostly because MySQL development is slower.
jeltz
·last month·discuss
It is also a bit tricky tradeoff. You do not want to be stuck with the same data format forever. So databases like MySQL and PostgreSQL need a downtime when doing a major version upgrade. They both try to keep it short, usually seconds, but minutes can happen in either database.