frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Don't You Mean Extinct?

https://fabiensanglard.net/extinct/index.html
1•zdw•4m ago•0 comments

The epidemic of API pricing is infecting social media

https://ninjahawk.github.io/blog/posts/api-paywalls.html
1•ninjahawk1•4m ago•0 comments

Ask HN: Is looking at the code slowing us down?

1•rstagi•5m ago•0 comments

OpenAI bets on families as ChatGPT goes deeper into households

https://techcrunch.com/2026/07/11/openai-bets-on-families-as-chatgpt-goes-deeper-into-households/
2•Brajeshwar•8m ago•0 comments

Why Ballads Still Dominate Chinese Pop Music

https://www.bloomberg.com/news/features/2026-07-09/why-ballads-still-dominate-chinese-pop-music
1•coloneltcb•9m ago•0 comments

Your 'App' Could Have Been a Webpage (so I fixed it for you)

https://danq.me/2026/07/09/your-app-could-have-been-a-webpage/
1•mpweiher•9m ago•0 comments

Break a dozen secret keys, get a million more for free

https://blog.cr.yp.to/20151120-batchattacks.html
1•cold_pizz4•11m ago•0 comments

Show HN: Pickle Tasks – a virtual pickle jar that randomly picks your next task

https://pickletasks.com
1•thip•12m ago•1 comments

Sears Modern Homes

https://en.wikipedia.org/wiki/Sears_Modern_Homes
1•aragonite•13m ago•0 comments

Ground Writing

https://www.sourcetype.com/editorial/14248/ground-writing
1•kmooney•14m ago•0 comments

The Highway Code: Using the road (Rules 159 to 203)

https://www.gov.uk/guidance/the-highway-code/using-the-road-159-to-203
1•susam•18m ago•0 comments

Show HN: Itara – Distributed system topology as an explicit, executable layer

https://github.com/itara-project/itara
1•gkiss0001•22m ago•2 comments

Data centres account for almost a quarter of Irish electricity usage in 2025

https://www.irishtimes.com/business/2026/07/07/data-centres-account-for-almost-one-quarter-of-iri...
1•1vuio0pswjnm7•23m ago•0 comments

Apple sues OpenAI and two former employees for alleged theft of trade secrets

https://www.irishtimes.com/technology/big-tech/2026/07/10/apple-sues-openai-and-two-former-employ...
3•1vuio0pswjnm7•25m ago•0 comments

The ChatGPT "Super App" Sort of Super Sucks

https://spyglass.org/chatgpt-gets-to-work/
3•soheilpro•27m ago•0 comments

New FIRE study finds narrowing range of political views among faculty donors

https://www.fire.org/news/new-fire-study-finds-narrowing-range-political-views-among-faculty-donors
5•like_any_other•28m ago•3 comments

Apple files lawsuit, accuses OpenAI of stealing trade secrets

https://www.cbc.ca/news/world/apple-lawsuit-open-ai-trade-secrets-9.7266470
2•1vuio0pswjnm7•28m ago•0 comments

Linux of AI open-source tools for reducing AI vendor lock-in

https://github.com/sekacorn/Linux-of-Ai
1•Saya24f•28m ago•0 comments

Visualization of the OpenAI Proof of the Cycle Double Cover Conjecture

https://blog.asrpo.com/cdc.html
1•asrp•30m ago•1 comments

This Factory was severely short on workers. Then it offered flexible work

https://www.npr.org/2026/07/08/nx-s1-5876084/manufacturing-flexible-part-time-work
1•andrewl•30m ago•0 comments

Undeniable proof that time travel is real

https://twitter.com/DataChaz/status/2076233674648088760
3•delichon•31m ago•0 comments

A BCI That Lasts 20 Years Requires Solving 4 Biological Problems

https://bioniclab.substack.com/p/what-would-a-bci-that-lasts-actually
1•u1hcw9nx•33m ago•0 comments

Show HN: A dark fantasy short story

https://lawfully.netlify.app/
1•darkhorse13•33m ago•0 comments

You can write docs in LLMese, but you don't have to

https://passo.uno/write-docs-llms-language/
1•theletterf•34m ago•0 comments

Show HN: Containix – Run Nix flakes as Kubernetes pods without images

https://containix.dev/
1•atmask•34m ago•0 comments

An new try: C++ like program with the same characteristics as rust

1•juntz•34m ago•0 comments

Indio Solari, Argentine Rocker Who Packed Stadiums, Dies at 77

https://www.nytimes.com/2026/07/06/arts/music/indio-solari-dead.html
2•bookofjoe•37m ago•1 comments

LLMs might not learn concepts

https://pastebin.com/w1HcfHvp
3•ffwd•37m ago•0 comments

Is vibe coding worth it? What the numbers say

https://okaneland.com/study/is-vibe-coding-worth-it/
1•ermantrout•38m ago•2 comments

Perfectly Hitting the Wrong Target: The Story of an AI Code Review Benchmark

https://shrsv.hexmos.com/post/perfectly-hitting-the-wrong-target
3•atomicnature•40m ago•0 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•1y ago

Comments

karmakaze•1y ago
> commit version is chosen — the time at which the database claims all reads and writes occurred atomically.

This post doesn't mention transaction isolation specifically though it does say "How does this end up being equal to SERIALIZABLE MySQL?" So maybe I'm supposed to consider this post only for 'Every transactional system' running with SERIALIZABLE transaction isolation. I don't particularly care about that. I do care that the database I use clearly states what its isolation names mean in detail and that it does exactly what it says. e.g. I don't expect MySQL SERIALIZABLE to exactly mean the same as any other database that uses the same term.

mjb•1y ago
MySQL Serializable is pretty similar to serializable in other databases, in terms of the observable anomalies. There's a good set of tests here: https://github.com/ept/hermitage

> So maybe I'm supposed to consider this post only for 'Every transactional system' running with SERIALIZABLE transaction isolation.

No, it's a general point about the nature of transactions in DBMSs, and the different implementation choices. As the article says, there are some variations (e.g. MVCC at levels lower than serializable inherently has two 'order' steps).

karmakaze•1y ago
I'm not seeing the mention of two 'order' steps. Are you referring to the larger part of what I quoted?

> MVCC databases may assign two versions: an initial read version, and a final commit version. In this case, we’re mainly focused on the specific point at which the commit version is chosen — the time at which the database claims all reads and writes occurred atomically.

For non-SERIALIZABLE isolation there may be no such "time at which the database claims all reads and writes occurred atomically", which is how I took the rest of the post to mean when running with SERIALIZABLE isolation.

transactional•1y ago
(Hi! Post author here.)

It is written with a lean towards serializable, partly because there's a wide variety of easy examples to pull which all implement serializable, but the ideas mostly extend to non-serializable as well. Non-serializable but still MVCC will also place all of their writes as having happened at a single commit timestamp, they just don't try to serialize the reads there, and that's fine. When looking at non-serializable not MVCC databases, it's still useful to just try to answer how the system does each of the four parts in isolation. Maybe I should have been more direct that you're welcome to bend/break the mental model in whatever ways are helpful to understand some database.

The line specifically about MySQL running at serializable was because it was in the Spanner section, and Spanner is a (strictly) serializable database.

karmakaze•1y ago
Thanks for the clarifications and diagrams. I can see how using something like Spanner from the outset makes sense to use and stick with serializable isolation. With other SQL dbs, I've mostly seen repeatable read, read committed, and even read uncommitted used in the name of performance. Read committed works fine but you have to design everything for it from the start with thoughtful write and read sequences.

Moving to serializable should be easy but isn't in the case of Spanner and the like because you can't make 100+ of sub-millisecond queries to respond to an API request if that's how your app evolved.

The way I imagine the future is to bring the code closer to the data like stored procedures, but maybe in a new way like modern languages compiled to run (and if necessary retry) in a shard of the database.

mjb•1y ago
This is great, really worth reading if you're interested in transactions.

I liked it so much I wrote up how the model applies to Amazon Aurora DSQL at https://brooker.co.za/blog/2025/04/17/decomposing.html It's interesting because of DSQL's distributed nature, and the decoupling between durability and application to storage in our architecture.

maniacalhack0r•1y ago
DSQL is so cool - have been following since the release and once it supports more of the postgres feature set + extensions it’ll be a killer. Fantastic architecture deep dive at ReInvent as well.
pongogogo•1y ago
Hey Mark, I actually found this post via yours so thanks!