frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Seoul soars past Dubai as busiest international airport

https://www.ft.com/content/f3f3c945-6a75-4663-b8ec-d5251438c1c5
1•JumpCrisscross•10s ago•0 comments

Watch It Work

https://www.texturehq.com/blog/watch-it-work
1•victorquinn•55s ago•0 comments

Show HN: Making Autonomous Work Reviewable

https://markupbase.com/whitepapers/making-autonomous-work-reviewable/
2•jasondoyle•1m ago•0 comments

14,000 crypto holders face security risk after Trezor data breach

https://www.ft.com/content/a91356ef-67bd-4bd9-947b-b272423f1318
3•petethomas•6m ago•0 comments

HoneyMatcha – A coordination platform for you and your personal agent

https://honeymatcha.io/
1•JaiRathore•8m ago•0 comments

Using AI chatbots? Here are four ways to reduce the energy drain

https://knowablemagazine.org/content/article/food-environment/2026/four-ways-to-reduce-energy-use...
1•knowablemag•9m ago•0 comments

Fibermaxxing? Your microbes (and your health) say thanks

https://knowablemagazine.org/content/article/health-disease/2026/fiber-feeds-the-microbiome-and-i...
1•knowablemag•11m ago•0 comments

What can we learn from Australia's social media ban for teens?

https://knowablemagazine.org/content/article/society/2026/studying-the-social-media-ban-under-six...
1•knowablemag•11m ago•0 comments

AI Looms over Software Companies – and the Investors Who Piled into Them

https://www.bloomberg.com/graphics/2026-ai-private-equity-software/
1•petethomas•13m ago•0 comments

Show HN: MCP-stama – An ultra-fast Rust MCP server with no dependencies

https://github.com/StamManif/mcp-stama
5•stammanif•13m ago•0 comments

OpenAI's Revenue Run Rate Tops $40B Ahead of IPO

https://www.bloomberg.com/news/articles/2026-08-13/openai-s-revenue-run-rate-tops-40-billion-ahea...
2•mfiguiere•14m ago•2 comments

The End of Mathematics

https://www.daniellitt.com/blog/2026/8/11/the-end-of-mathematics
1•rzk•14m ago•0 comments

US sells 30-year bonds at highest borrowing costs since 2001

https://www.ft.com/content/9c9c948f-dc8b-4385-a9b9-4b98dc1eadd9
6•petethomas•15m ago•1 comments

ParleHub – Enterprise AI Collaboration and Cost Control – Launch Today on PH

https://parlehub.com/
1•ciaranodonnell•16m ago•0 comments

Ask HN: Does Codex's Computer History plugin seem like a misstep to anyone else?

1•joshcsimmons•26m ago•0 comments

The magic of a two-year waitlist

https://seths.blog/2026/08/the-magic-of-a-two-year-waitlist/
1•herbertl•27m ago•0 comments

Chief Revenue Officer for OpenAI Resigns

https://twitter.com/Kr00ney/status/2087946389351284777
1•slowin•27m ago•1 comments

AI #181: Astra Goes Cyber Critical

https://thezvi.substack.com/p/ai-181-astra-goes-cyber-critical
1•paulpauper•27m ago•0 comments

My skinner box It was made for me

https://sgt.hootr.club/blog/this-is-my-skinner-box/
1•steinuil•28m ago•0 comments

Black Wednesday

https://ussri.substack.com/p/black-wednesday
1•paulpauper•28m ago•0 comments

Book Review: The Infinity Machine

https://millicosm.substack.com/p/book-review-the-infinity-machine
1•paulpauper•29m ago•0 comments

The Largest Galaxy in the Universe Is Even Bigger Than We Thought

https://www.iflscience.com/the-largest-galaxy-in-the-universe-is-even-bigger-than-we-thought-and-...
2•gmays•29m ago•0 comments

36 Ways to Send a File

https://getcroc.com/blog/compare-file-transfer-tools
1•gregsadetsky•30m ago•0 comments

'Papers and patents are becoming less disruptive over time'?

https://bsky.app/profile/vincentholst.bsky.social/post/3msxg77pnmk2r
1•doener•31m ago•0 comments

Show HN: Mirage Browser, the deadest of internets. ~1000 tok/s 1998 internet

https://miragebrowser.xyz/
2•KCLock•32m ago•0 comments

I Build Production Software by Directing AI

https://medium.com/@chrissharp80/how-i-build-production-software-by-directing-ai-710902b4933e
2•chrissharp80•33m ago•0 comments

Data Science Weekly – Issue 664

https://datascienceweekly.substack.com/p/data-science-weekly-issue-664
1•sebg•33m ago•0 comments

Is this hack-back or cyber letters-of-marque? No, but maybe

https://cybersect.substack.com/p/is-this-hack-back-or-cyber-letters
3•wmf•37m ago•0 comments

Chatbots are doing the work of Congress with little oversight

https://www.washingtonpost.com/politics/2026/08/13/chatbots-are-doing-work-congress-with-little-o...
2•harambae•37m ago•0 comments

Number of malaria attacks since birth: A longitudinal study of African children

https://www.thelancet.com/journals/eclinm/article/PIIS2589-5370(23)00556-4/fulltext
2•alphabetatango•38m 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!