frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Continuous Contact (2005)

http://k-punk.abstractdynamics.org/archives/004826.html
1•DiscourseFan•3m ago•0 comments

Compiled List of over $1000 in AI/GPU/LLM Credits (100% Free)

https://sairc.vercel.app/resources
1•imranmk•6m ago•0 comments

How Claude can do your shopping

https://andrewacomb.substack.com/p/buying-screws-with-http-402
1•acombandrew•7m ago•0 comments

Majorana: "Microsoft's topological qubit is real"

https://dotient.com/blog/microsoft-majorana-particle
1•localdeclan•9m ago•0 comments

TSMC is accelerating Arizona factory buildout to capitalize on AI 'megatrend'

https://www.cnbc.com/2026/07/20/tsmc-arizona-fab-capacity-ai-chip-demand.html
1•ekorbia•12m ago•0 comments

Asymptote

https://asymptote.ualberta.ca/
1•joebig•15m ago•0 comments

The entropy tax: Why true randomness costs so much

https://psyll.com/articles/technology/cybersecurity/the-entropy-tax-why-true-randomness-costs-so-...
1•iamnow1982•15m ago•0 comments

The biggest winners of the American economy fear they're sinking fast

https://www.washingtonpost.com/technology/2026/07/19/tech-has-never-been-richer-its-workers-have-...
2•sseagull•16m ago•1 comments

Cut the number of choices you make each day; Your brain will thank you

https://apnews.com/article/too-many-choices-making-decisions-8ae0bfaac1d51cc5fc7b2e59336ff0dd
2•1659447091•17m ago•0 comments

Kevin O'Leary's view on AI is interesting, 9 minute video [video]

https://www.youtube.com/watch?v=PHhLhL1GIac
1•theMezz•19m ago•1 comments

Spain beats Argentina to win the World Cup

https://english.elpais.com/sports/2026-07-19/spain-beat-argentina-to-win-the-world-cup.html
13•gus_massa•20m ago•5 comments

Impro is a handbook for running a cult

https://www.seangoedecke.com/impro/
1•zdw•22m ago•0 comments

A Brief History of Computing

https://jasoneckert.github.io/myblog/a-brief-history-of-computing/
2•jasoneckert•24m ago•1 comments

Who's responsible for bug reports on old software versions?

https://pointieststick.com/2026/07/19/whos-responsible-for-bug-reports-on-old-software-versions/
1•zdw•26m ago•0 comments

What Bad Bases Are Good For

https://mathenchant.wordpress.com/2026/07/19/what-bad-bases-are-good-for/
1•jamespropp•27m ago•0 comments

FileVault on versus Off on Apple Silicon Macs

https://derflounder.wordpress.com/2026/07/18/filevault-on-versus-off-on-apple-silicon-macs/
2•zdw•28m ago•0 comments

Show HN: Deploy AI agent in 5 lines of code

https://www.custodianlabs.io
1•sherryf123•30m ago•1 comments

Trump to fund MAGA-aligned projects in Europe as he reorders US aid

https://www.ft.com/content/1cb986a4-2428-4e64-a559-7867cfa1a3e3
3•petethomas•32m ago•0 comments

Haunt 0.4.0 Released

https://git.dthompson.us/haunt/commit/?id=100da093a804f04d3b10c9db49da663f2246c446
1•birdculture•33m ago•0 comments

AI should have senior lawyers sharpening their hunting spears

https://www.ft.com/content/905e18e6-f054-4995-b5a7-0ff52a65ae57
3•petethomas•37m ago•0 comments

MSI Slyly Shows Off an Upcoming DLC AMD EPYC Venice Platform

https://www.servethehome.com/msi-slyly-shows-off-an-upcoming-dlc-amd-epyc-venice-platform-with-cd...
1•ksec•39m ago•1 comments

Pastors Using AI to Help Write Sermons Grapple with Where to Draw the Line

https://www.wsj.com/tech/ai/pastors-using-ai-to-help-write-sermons-grapple-with-where-to-draw-the...
2•bookofjoe•40m ago•3 comments

Show HN: Promptdna.org- a community library of composable prompt blocks with MCP

https://promptdna.org
1•impendingchange•41m ago•0 comments

I Read the Bonsai 27B Paper. What You Gain–and Lose–With 1-Bit Compression

https://medium.com/@deshpandetanmay/a-27b-ai-model-ran-on-an-iphone-heres-what-survived-compressi...
2•tanmaydesh5189•47m ago•0 comments

Show HN: A self-hosted AI that turns Hacker News into a daily briefing

https://github.com/RecNes/hn-ai-summarizer
1•SencerH•47m ago•0 comments

Self-evolving repo for team and coding agent collaboration

https://www.sepo.sh/
3•liangqiyao99•48m ago•0 comments

Ancient Roman farm women made wine, oil and profits

https://phys.org/news/2026-07-ancient-roman-farm-women-wine.html
3•1659447091•48m ago•0 comments

Show HN: Rate A Human – AI agents review the humans they work for

https://rateahuman.xyz/
1•ziadhussein•50m ago•0 comments

A real SAT solution. P is not always hard

https://zenodo.org/records/21445865
1•GeometryKernel•51m ago•0 comments

Tripplet AI – a new era of smarter AI

https://www.getsonoma.lol/
1•htmghrceceg•54m 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!