frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

If Astra was trained on 100k Blackwell GPUs, what happens with 1M Rubin?

https://twitter.com/JensenHuang/status/2096700264569090384
1•aurareturn•37s ago•0 comments

South Africa's weigh-and-pay shops are tackling 'poverty tax' head on

https://www.theguardian.com/global-development/2026/sep/14/south-africa-weigh-and-pay-shops-food-...
1•ljf•1m ago•0 comments

Three Reasons Europe learned to distrust Big Tech before America did

https://thebulletin.org/premium/2026-09/three-reasons-europe-learned-to-distrust-big-tech-before-...
1•vrganj•3m ago•0 comments

My experience of September 11, 2001, from across the Hudson

https://medium.com/freedomofthought/if-nobody-loved-me-the-city-did-27ad19dbcb8a
1•raynchad•3m ago•0 comments

Ansto nuclear reactor marks 20 years of health and technology innovation

https://www.abc.net.au/news/2026-09-14/ansto-opal-nuclear-reactor-celebrates-20-years/107132928
1•ggm•3m ago•0 comments

Teaching a fruit fly to play chess

https://flychess-hq.vercel.app
1•qsort•4m ago•0 comments

The Cost of Omelas – 10 centuries of total people killed by nation states

https://omelas-dj1.pages.dev
1•epsteingpt•13m ago•1 comments

War over robotaxis in NYC heats up with retracted Waymo report, 'Autokill' novel

https://gothamist.com/news/war-over-robotaxis-in-nyc-heats-up-after-retracted-waymo-report-and-au...
1•tape_measure•13m ago•0 comments

What an ERC-4626 price test shows

https://medium.com/@giladha/what-an-erc-4626-price-test-actually-shows-9fce352c5bde
1•giladha•14m ago•0 comments

Show HN: I made an unlimited TikTok video generator to get views on the internet

https://cloney.app
1•phanahm•15m ago•0 comments

Ask HN: Why are HDMI connectors hard to reach in 2026?

1•final_moss•16m ago•0 comments

No cities on the Moon – there isn't enough water, scientists say

https://www.frontiersin.org/news/2026/09/14/no-cities-on-the-moon-there-isnt-enough-water-frontie...
1•geox•17m ago•0 comments

Another Slice of Swiss Cheese for Untrusted Monitoring

https://www.lesswrong.com/posts/zJWgfsad8o9Y8E9sb/another-slice-of-swiss-cheese-for-untrusted-mon...
2•joozio•18m ago•0 comments

Every tool you need, right in the browser

https://footrue.com/
1•rajeshrajappan•21m ago•0 comments

Can Geneticists Fight Disease by Targeting 'Nurture' Instead of 'Nature'?

https://www.nytimes.com/2026/09/08/science/epigenetic-editing.html
1•hodgesrm•21m ago•0 comments

Apple's Always-Listening Tech: A Privacy Nightmare Waiting to Happen

https://this.weekinsecurity.com/watch-what-you-say-apple-opens-the-door-to-a-nightmare-world-of-a...
1•signa11•23m ago•0 comments

Why big tech will hate the Australian tax office's latest ruling

https://theconversation.com/why-big-tech-will-hate-the-australian-tax-offices-latest-ruling-291571
4•billybuckwheat•24m ago•0 comments

Michaelsoft Binbows

https://binbows.net/
2•austinallegro•31m ago•0 comments

Closure Compiler: A JavaScript checker and optimizer

https://github.com/google/closure-compiler
2•csmantle•31m ago•0 comments

Anecdotally, Programmers Dislike "Reduce"

https://evanhahn.com/posts/2026-09-13-programmers-dislike-reduce/
3•vinhnx•34m ago•0 comments

BYD has apparently canceled this year's profit bonus

https://www.kucoin.com/news/insight/BYD/6aa543e9ccf4ec00077d0eb2
1•gainsurier•34m ago•0 comments

TimIQ – Smart Tech, AI and Software Insights

https://timiq.blogspot.com/
1•Timmphil•35m ago•0 comments

PlotLines

https://peter-guillam123.github.io/plotlines/
1•austinallegro•35m ago•0 comments

Satellite images show extent of damage to major Saudi pipeline

https://www.theguardian.com/world/2026/sep/14/saudi-pipeline-drone-attack-houthis-global-oil-supp...
3•ljf•39m ago•0 comments

Mr

1•giddyboy•41m ago•0 comments

The Void Spiral: How to Avoid the Void

https://mathstodon.xyz/@isaacg/117264263631423022
1•rapnie•41m ago•0 comments

Show HN: TrackLLM: Are the LLM APIs you rely on stable?

https://www.trackllm.net/
1•timotheechauvin•42m ago•1 comments

Why Does SpaceX Have 11,000 Starlink Satellites? [video]

https://www.youtube.com/watch?v=DW-aL_MiUz4
1•marklit•43m ago•0 comments

Why I Still Read Code

https://alex.draftist.io/blog/why-i-still-read-code-iiaz6lku8
1•saikatsg•44m ago•0 comments

Just stop the Anthropic IPO already

https://www.thebignewsletter.com/p/monopoly-round-up-just-stop-the-anthropic
3•chmaynard•44m 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!