frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

My Email Hygiene

https://matanabudy.com/my-email-hygiene/
1•speckx•21s ago•0 comments

OpenAI revenue in July topped all of Q2 driven by GPT-5.6 release

https://www.cnbc.com/2026/07/29/openai-cfo-sarah-friar-tells-employees-arr-in-july-topped-all-of-...
2•giuliomagnifico•2m ago•0 comments

UEFA and its national associations will not participate in FIFA competitions

https://www.uefa.com/news-media/news/02a7-213a92896eb0-54dfbf454e3b-1000--statement-on-behalf-of-...
1•dickfickling•3m ago•0 comments

Postgres Queues Actually Scale

https://www.dbos.dev/blog/making-postgres-queues-scale
2•KraftyOne•5m ago•0 comments

I'm a senior estimator, I open sourced my construction takeoff tool

https://github.com/Kentucky-ai/opentakeoff
1•kentucky-ai•5m ago•0 comments

Great Teachers Are Underappreciated

https://twitter.com/Alfred_Lin/status/2082102711030546783
2•gmays•6m ago•0 comments

Why I Left Google (2015)

https://medium.com/@docjamesw/why-i-left-google-c170e6165f2a
1•sssilver•7m ago•0 comments

What Would It Mean to See a New Color?

https://www.newyorker.com/magazine/2026/08/03/what-would-it-mean-to-see-a-new-color
2•fortran77•8m ago•0 comments

Show HN: Leia – a CLI to oneshot playlists onto Yoto MYO cards

https://github.com/nsokin/leia
1•nsokin•8m ago•0 comments

Show HN: APIgen – Generate Fusio REST APIs and Angular UIs from TypeSchema

https://apigen.app/
1•k42b3•9m ago•0 comments

Floundering A.I. Hedge Fund Is Rescued by Rival

https://www.nytimes.com/2026/07/30/business/artificial-intelligence-situational-awareness-citadel...
1•mapping365•10m ago•0 comments

Turning GitHub Actions into an oracle (2025)

https://www.ethanheilman.com/x/35/index.html
1•EthanHeilman•10m ago•0 comments

Singles Are So Burned Out They're Letting Spreadsheets Evaluate Their Dates

https://www.wsj.com/lifestyle/relationships/dating-singles-love-hackers-spreadsheets-711a493b
1•gmays•10m ago•0 comments

IronClaw 1.0 – one secure agent on CLI, Slack and Telegram, one memory

https://near.ai/blog/introducing-ironclaw-1-0
1•dannycb•12m ago•0 comments

The Zeno's Paradox of AI

https://negativezone.github.io/2026/07/29/zeno.html
1•negativezone•12m ago•0 comments

The Impending, Inescapable Deluge of A.I

https://www.nytimes.com/interactive/2026/07/29/technology/ai-chips-data-center-boom.html
1•KasianFranks•12m ago•0 comments

So you want to use plants to reduce CO₂

https://dynomight.net/plants/
1•surprisetalk•13m ago•0 comments

Show HN: A single character turns primitive recursion into general recursion

https://github.com/raoofha/pr
1•raoof•13m ago•0 comments

Programming as Art

https://noumenalnotions.space/essays/programming_as_art/
2•speckx•14m ago•0 comments

I made a term-a11y: accessible spinners and progress bars for CLI tools

https://github.com/zaydea805/term-a11y
1•zay_dea•15m ago•1 comments

LLM re-reads the same text a thousand times. Here's what I measured

https://swellweb.github.io/reame/bytes/
2•targetbridge•16m ago•0 comments

AI productivity gains are closer to 10% than 10x

https://leaddev.com/reporting/ai-productivity-gains-are-closer-to-10-than-10x
3•champagnepapi•16m ago•1 comments

Thinking Machines: Inkling Small

https://twitter.com/ArtificialAnlys/status/2082894822180819057
3•tosh•16m ago•0 comments

Show HN: State of the Feed – TikTok usage analyzed

https://wrapped.vantezzen.io/state-of-the-feed
1•bennett_dev•17m ago•0 comments

The Situation Deteriorated

https://www.bloomberg.com/opinion/newsletters/2026-07-30/the-situation-deteriorated
3•brunohaid•17m ago•0 comments

Why the bond market is doubting Fed chairman Warsh

https://www.axios.com/2026/07/30/warsh-fed-inflation-bonds
2•toomuchtodo•18m ago•0 comments

PCBEval

https://blog.greg.technology/2026/07/29/announcing-pcbeval.html
1•gregsadetsky•19m ago•0 comments

New Website, Instapaper 10 for iOS, and AI Voices for Android

https://blog.instapaper.com/2026/07/28/instapaper-10/
1•jbowen•20m ago•0 comments

Show HN: Otzar – Local hybrid search over your own files

https://github.com/danielfleischer/otzar
1•yruthewaythatur•21m ago•0 comments

Show HN: Reply to Your Comments with an API

https://mallary.ai/
2•samteeeee•22m ago•1 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!