frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sony's Clever but Flawed PlayStation Copy Protection [video]

https://www.youtube.com/watch?v=XUwSOfQ1D3c
1•tosh•19s ago•0 comments

Multi-harness session monitoring app for heavy AI users

https://cctop.app/
1•st0012•55s ago•1 comments

AI and Liability

https://www.schneier.com/blog/archives/2026/06/ai-and-liability.html
1•simonw•2m ago•0 comments

The Teen Believers in Christian Nationalism

https://www.newyorker.com/magazine/2026/06/29/the-teen-believers-in-a-christian-america
1•rbanffy•2m ago•0 comments

Automated My Homelab with the Bat Stack (Bootc, Ansible, Terraform/OpenTofu)

https://keijilohier.com/blogs/recreating-my-homelab-with-infrastructure-as-code/
1•Klohier•3m ago•0 comments

Climate.us launches independent website for trusted climate information

https://www.climate.us/news-features/feed/climateus-launches-independent-website-trusted-climate-...
1•ChrisArchitect•3m ago•0 comments

How much "Super Mario" per year?

https://sethmlarson.dev/super-mario-per-year
1•surprisetalk•3m ago•0 comments

Atari Video Music

https://www.generationamiga.com/2026/06/26/atari-video-music-the-1977-atari-console-that-turned-m...
1•Lio•4m ago•1 comments

AI inference is obviously profitable

https://www.seangoedecke.com/ai-inference-is-obviously-profitable/
1•medbar•4m ago•0 comments

Where the wild Discovery Loops are

https://blog.christianperone.com/2026/06/where-the-wild-discovery-loops-are/
1•perone•5m ago•0 comments

I Wish I Knew This Before Building an AI Second Brain

https://pub.towardsai.net/i-wish-i-knew-this-before-building-an-ai-second-brain-6179aa439aef
1•majidfekri•6m ago•0 comments

Skills vs. knowledge – formalizing how agents need both

https://blog.herlein.com/post/procedures-travel-knowledge-stays-home/
1•gherlein•8m ago•0 comments

NYC Off Tech

https://nycofftech.com
1•anandbaburajan•9m ago•1 comments

I Am Behind on C# 14 Features, and I Can't Prove It but Does It Matter?

https://medium.com/c-sharp-programming/i-am-behind-on-csharp-14-features-and-i-cant-prove-it-but-...
1•sukhpinder0804•9m ago•0 comments

Trump administration asks OpenAI to stagger release of GPT 5.6

https://old.reddit.com/r/OpenAI/comments/1ufnwkh/breaking_trump_administration_asks_openai_to/
1•samber•11m ago•0 comments

SpaceX's newest Starmind will make earth data centers obsolete

https://www.teslarati.com/spacex-starmind-ai-satellite-vs-starlink/
1•avgarrison•14m ago•1 comments

Show HN: ShotBrief – Daily photography briefings, should you shoot tomorrow?

https://shotbrief.app/
1•bigwindow1•15m ago•1 comments

Was GLM-5.2 trained on Opus 4.5 outputs?

https://1chat.com/research/was-glm-5-2-trained-on-outputs-from-opus-4-5
1•coolspot•16m ago•0 comments

Anthropic's Claude is winning over paid consumers, a market owned by ChatGPT

https://techcrunch.com/2026/06/25/anthropics-claude-is-winning-over-paid-consumers-a-market-owned...
2•sambcui•16m ago•2 comments

Foundation and Manifesto of Futurism (1909)

https://thelastpromontory.com/texts/foundation-and-manifesto-of-futurism/
1•Schlagbohrer•16m ago•0 comments

Ceiling Fans [video]

https://www.youtube.com/watch?v=_KWdCqpXB7A
3•tosh•18m ago•0 comments

Bureaucracy Is Eating the World

https://xn--gckvb8fzb.com/bureaucracy-is-eating-the-world/
2•surprisetalk•18m ago•0 comments

Adobe is buying Topaz Labs, the AI video enhancer

https://thenextweb.com/news/adobe-acquires-topaz-labs-ai-enhancement
1•microflash•20m ago•0 comments

What Should Be Done

https://www.hyperdimensional.co/p/what-should-be-done
1•bluepeter•20m ago•0 comments

AI Makes Bad Product Decisions Look Like Finished Software

https://www.vincentschmalbach.com/ai-makes-bad-product-decisions-look-like-finished-software-cost...
1•vincent_s•20m ago•1 comments

The BBC switches off its oldest service

https://www.economist.com/britain/2026/06/25/the-bbc-switches-off-its-oldest-service
1•andsoitis•21m ago•0 comments

Show HN: A cool portfolio I made

https://ahmed-z0.pages.dev/
1•ahmed-z00•21m ago•0 comments

The AI backlash is only getting started

https://www.economist.com/leaders/2026/06/25/the-ai-backlash-is-only-getting-started
4•andsoitis•22m ago•1 comments

Six critical 9.9-CVSS vulnerabilities were found in Canonical's LXD today only

https://github.com/canonical/lxd/security
3•jabrr7•22m ago•0 comments

Vision for the Godot Engine

https://godotengine.org/article/godot-vision-statement-2026/
2•HelloUsername•24m 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!