frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Situs Inversus

https://en.wikipedia.org/wiki/Situs_inversus
1•sjclemmy•1m ago•0 comments

Show HN: I put 20 ad slots under a Harberger tax

https://anyonecanbuy.com/
1•nadermx•2m ago•0 comments

Show HN: ArtGram – a notation system for abstract paintings

https://artgraph.co/artgram
1•rituraj•6m ago•0 comments

AI's memory crunch is coming for Android apps

https://techcrunch.com/2026/08/27/ais-memory-crunch-is-coming-for-android-apps/
1•627467•7m ago•0 comments

AI Engineer Notebooks – free, framework-free RAG/agents/evals on Colab

https://github.com/calmrocks/ai-engineer-notebooks
1•calmrocks•7m ago•0 comments

I built a pure-Rust headless browser. No Chromium. No V8

https://www.reddit.com/r/webscraping/comments/1w07jov/i_built_a_purerust_headless_browser_no_chro...
1•syumei•7m ago•0 comments

Copyrightability of LLM-generated code: Can we license "vibe code"?

https://fsfe.org/news/2026/news-20260825-01.en.html
2•WhyNotHugo•8m ago•0 comments

Intel previews future instruction-set documentaton

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
2•mmcloughlin•9m ago•0 comments

Outbid case study: auction became the ad (2026)

https://medium.com/@threadotter/outbid-case-study-auction-became-the-ad-2026-719bf85c3c7d
1•threadotter•10m ago•0 comments

Four reproducible vLLM parser failures that return 200 with the wrong tool call

https://ingot.tools/reports/parser-silent-failure
1•glitch003•12m ago•0 comments

Anomalyco/OpenCode Review

https://github.com/anomalyco/opencode
1•paretolaw•13m ago•1 comments

Show HN: IQ Routing – route every call to the cheapest model that holds quality

https://iq-routing.com
1•Georgeavvila•14m ago•0 comments

Show HN: Per Diem, a daily dice game like Balatro

https://perdiem.loch.tools
1•lwansbrough•14m ago•0 comments

Storm Summoner, a MIDI controller for effects pedals

https://kabaragoya.com/products/storm-summoner
1•peteforde•15m ago•0 comments

The Minolta SR-T I kept for myself

https://robertmay.photography/journal/the-minolta-sr-t-i-kept-for-myself
1•robotmay•16m ago•0 comments

Agent Swarms Are a Distributed Systems Problem

https://www.trychroma.com/engineering/transactions
1•rescrv•20m ago•1 comments

Ask HN: How does your preferred AI handle questions we are not allowed to ask?

1•arionhardison•21m ago•0 comments

The Weed Got Too Strong

https://www.nytimes.com/2026/08/24/opinion/weed-marijuna-children-regulation.html
3•bookofjoe•23m ago•2 comments

The Trump administration's March to the Spoils System

https://www.contrariannews.org/p/the-trump-administrations-march-to
1•petethomas•24m ago•0 comments

Model Success Rate May Count the Wrong Runs

https://topicqueue.substack.com/p/four-new-benchmarks-say-your-success
1•DISCURSIVE•24m ago•0 comments

Tim O'Reilly – Writing with AI

https://oreillyradar.substack.com/p/writing-with-ai
1•rmason•26m ago•0 comments

Simple Machine

https://en.wikipedia.org/wiki/Simple_machine
2•ogogmad•27m ago•0 comments

Selected by Mel Brooks (20 titles): 100 Years at the Movies

https://www.americancinematheque.com/series/programmed-by-mel-brooks-100-years-at-the-movies/
1•mdp2021•27m ago•1 comments

Why coding agents stop early on long-horizon software tasks

https://factory.com/news/what-it-takes-for-coding-agents-to-complete-large-software-tasks
2•favoboa•28m ago•0 comments

Show HN: Webtoolio dev tools that run entirely in the browser, nothing uploaded

https://webtoolio.org/
1•deezduudez•29m ago•0 comments

Show HN: A shop that makes it hard to buy things

https://earnyourdescent.com/
1•rexfuzzle•29m ago•0 comments

Bill Gates proposes major limits on AI development

https://www.cnn.com/2026/08/26/business/bill-gates-wants-limits-on-ai
1•rmason•29m ago•2 comments

OpenAI Is Developing a 'Persistent' AI Agent

https://www.wired.com/story/openai-is-developing-a-persistent-ai-agent/
2•thm•30m ago•0 comments

YouTube Shopping Creators can now tag Amazon products

https://blog.youtube/news-and-events/youtube-shopping-amazon-creator-affiliates/
2•thm•31m ago•0 comments

Show HN: ChessRabbit – The AI Chess Analysis Platform

https://chessrabbit.com
1•ahmedhosssam•31m 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!