frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bitcoin's First Quantum-Safe Transaction Just Happened

https://bitcoinmagazine.com/news/bitcoin-quantum-resistant-transaction
1•giuliomagnifico•37s ago•0 comments

Advertisers Could Soon Demand 'Verified Clicks'

https://www.amediaoperator.com/news/advertisers-could-soon-demand-verified-clicks/
1•thm•1m ago•0 comments

Show HN: Texttile, a multiplayer blog engine for people who write together

https://www.texttile.blog/
3•klausbreyer•2m ago•0 comments

OpenAI: Migrating to HTTPX2

https://github.com/openai/openai-python/blob/main/httpx2.md
1•tosh•3m ago•1 comments

Show HN: Wolfpack – private browser control for coding-agent terminals

https://get-wolfpack.netlify.app/
1•wolfmaster•5m ago•0 comments

What your calf muscles can reveal about your heart health

https://www.sciencefocus.com/the-human-body/calf-muscles-heart
1•samizdis•6m ago•0 comments

Director of Technology – Sovereign Tech Agency

https://www.sovereign.tech/jobs/director-of-technology
1•robin_reala•11m ago•0 comments

Show HN: Sitemap.site – Free XML sitemap generator, checker, and validator

https://sitemap.site
1•gingermanymph•12m ago•0 comments

Sloc cloc and code (scc) 4.0: finding the files that need the most attention

https://boyter.org/posts/sloc-cloc-code-hotspots-finding-files-that-need-attention/
1•fanf2•12m ago•0 comments

httpx2

https://github.com/pydantic/httpx2
1•tosh•13m ago•0 comments

The AI-Native SDLC Playbook

https://claude.com/blog/the-ai-native-sdlc-playbook
2•7777777phil•24m ago•0 comments

A.I. Brings Big Gains to Hurricane Forecasts, Google Researchers Say

https://www.nytimes.com/2026/08/28/science/ai-hurricane-forecasts-google.html
2•cainxinth•25m ago•0 comments

Last time an agent produced code you had to throw away, what had it got wrong?

2•biemone•27m ago•0 comments

Ask HN: Best open source way to run local open-weight LLMs in 2026?

3•samuell•28m ago•0 comments

Pentagon's blacklisting of Anthropic was unlawful, US judge rules

https://www.reuters.com/legal/government/us-judge-blocks-pentagons-anthropic-blacklisting-2026-08...
3•softwaredoug•29m ago•0 comments

Ghost in the Machine: Physicists Measure 'Glow' from Shut-Down Nuclear Reactors

https://www.sciencealert.com/ghost-in-the-machine-physicists-measure-the-eerie-glow-from-shut-dow...
2•theanonymousone•31m ago•0 comments

Show HN: Pay-to-rank leaderboards for creators and products

https://www.cuntent.lol
2•CodePapi_•32m ago•1 comments

Show HN: HTML5 port of Civilization 2: MGE

https://wan0.net/civ2/
3•wan0net•33m ago•0 comments

Show HN: PitchBin – a vendor database built from the cold emails you get

https://pitchbin.com/
1•itflashcards•39m ago•0 comments

Just let my TV be a TV

https://twitter.com/LaNativePatriot/status/2093163174673699292
3•bilsbie•41m ago•0 comments

Ask HN: What's a Good Physical Printer?

3•xrd•41m ago•1 comments

Ask HN: What makes an open-source UI component library worth adopting?

1•Harish_0089•44m ago•0 comments

Posiwid: The Purpose of a System Is What It Does

https://daringfireball.net/linked/2026/08/26/posiwid
2•zacharyozer•45m ago•0 comments

Show HN: I made a manga critique site with professional Japanese manga editors

https://m2w.ai/en
2•seanm2w•47m ago•0 comments

Corporate America Cut Big Checks to Trump. Now CEOs Fear Subpoenas Are Coming

https://www.wsj.com/politics/elections/trump-corporate-donors-election-2026-572c1b28
7•doener•47m ago•0 comments

South Korea's 'AI for All' Push Gives Free Access to Every Citizen

https://www.wsj.com/tech/ai/south-koreas-ai-for-all-push-gives-free-access-to-every-citizen-451f6b2c
8•watchdogtimer•49m ago•1 comments

How does football cause brain disease

https://www.science.org/content/article/how-does-football-cause-brain-disease-and-why-it-so-hard-...
2•shymaple•50m ago•0 comments

The Download: inside OpenAI's Hugging Face hack, and a new EV takes on the US

https://www.technologyreview.com/2026/08/27/1143033/the-download-openai-hugging-face-hack-slate-t...
1•joozio•53m ago•0 comments

How LibreOffice Is Funded

https://blog.documentfoundation.org/blog/2026/08/28/how-libreoffice-is-funded/
3•mmarian•55m ago•0 comments

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
7•IbrahimF96•55m ago•5 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!