frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Territory claims in Antartica look when Antartica has no ice

https://blog.willmeye.rs/how-territory-claims-in-antartica-look-when-antartica-has-no-ice/
1•willmeyers•8m ago•0 comments

Stabilizing Rust's Never Type

https://lwn.net/Articles/1091015/
1•signa11•13m ago•0 comments

How many strings can you create per second?

https://lemire.me/blog/2026/09/25/how-many-strings-can-you-create-per-second/
1•smilelamp•14m ago•0 comments

What OS should I pick?

1•ronk_employee•16m ago•0 comments

Farside.link has been shut down

https://farside.link
1•Baljhin•17m ago•1 comments

Deterministic Testing for Multithreaded Python

https://lwn.net/Articles/1090579/
1•pykello•19m ago•0 comments

A geothermal amoeba sets a new upper temperature limit for eukaryotes

https://www.cell.com/cell/fulltext/S0092-8674(26)01016-0
1•wslh•21m ago•0 comments

Show HN: Clippy's Revenge – Made by Opus 5.5 [video]

https://www.youtube.com/watch?v=qUaBObmpYTI
1•HaxleRose•22m ago•0 comments

Pentum_Graph [WorldNews_YouTube]

https://project.pentumlab.com/graph/
1•rholzer•22m ago•1 comments

Ask HN: Do you token max? Why or why not?

1•bgnm2000•25m ago•1 comments

The AI Build-Out Is Becoming the Biggest Economic Bet in U.S. History

https://www.wsj.com/economy/the-ai-build-out-is-becoming-the-biggest-economic-bet-in-u-s-history-...
3•CharlesW•25m ago•0 comments

Show HN: OpsCart – Read-only Kubernetes triage with incident history

https://github.com/opscart/opscart-k8s-watcher
1•opscart•32m ago•0 comments

Send GitLab an email, push to main

https://www.aikido.dev/blog/gitlab-email-push-to-main
1•crgwbr•34m ago•0 comments

Show HN: Live Quantum Circuits Visualizator for Reinforcement Learning

https://github.com/SorBalda/Reinforcement-Learning-SARSA-Q-LEARNING-DEEP-Q-LEARNING
1•sorbalda•43m ago•0 comments

Sandbox/computer to be added to your product

https://pine.im/download
1•faye_yfg•45m ago•0 comments

VeriTile: Formal Verification for Triton Kernels

https://lizn-zn.github.io/VeriTile/
2•matt_d•51m ago•0 comments

Design Experiments with the Amytis Agent

https://www.amytis.io/blog/design-experiments-with-the-amytis-agent
1•JohnHammersley•55m ago•0 comments

Nobody Has a Good Answer for Agentic Identity Yet

https://fusionauth.io/blog/ldx3-nyc-2026-report
4•mooreds•1h ago•1 comments

Paul Graham on LLMs 'Thinking'

https://twitter.com/paulg/status/2103135915195371973
3•fooker•1h ago•3 comments

Pragtical v3.13.0 is out with native audio API and built-in audio player

https://pragtical.dev/blog/pragtical-v3130-release
1•rd07•1h ago•0 comments

Fluid Simulation on Flip Dots

https://mitxela.com/projects/flipflip
1•marvinborner•1h ago•0 comments

ServingStudio: Simulating, Analyzing, and Optimizing LLM Serving Systems

https://syfi-servingstudio.github.io/ServingStudioIntro/blog/introducing-servingstudio/
3•matt_d•1h ago•0 comments

X-planes: Are they needed in the new era of drones?

https://www.bbc.com/news/articles/c9q92x359xdo
4•devonnull•1h ago•0 comments

Tell HN: Apple urgently needs a way to disable Apple Intelligence

2•mococa•1h ago•6 comments

Seven books I keep close because I love them

https://blog.plover.com/book/elbow-shelf.html
3•luu•1h ago•1 comments

OpenAI attacked Australia's health system and doubled down. Time to act

https://www.theguardian.com/commentisfree/2026/sep/25/open-ai-attacked-australias-health-system-a...
8•jethronethro•1h ago•1 comments

The collie and the pug – HackMIT keynote 2026 [video]

https://www.youtube.com/watch?v=0Ge3jKLDJaA
1•marvinborner•1h ago•0 comments

Sunday is your last sure chance to visit the Academy of Natural Sciences museum

https://www.inquirer.com/news/academy-natural-sciences-closing-last-day-20260924.html
3•tau255•1h ago•1 comments

(KV) Cache Rules Everything Around Me

https://www.completeskeptic.com/p/kv-cache-rules-everything-around
3•Anon84•1h ago•0 comments

OpenCode-search: fast full-text search of all your sessions

https://github.com/arvindell/opencode-search
4•arvindell•1h ago•2 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!