frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A few tips from the (startup) trenches for managing stress

https://vishal.rs/essay/habits-that-will-keep-the-stress-under-control
1•vishalontheline•45s ago•0 comments

Kilo Code has been acquired by Anaconda

https://www.anaconda.com/blog/anaconda-acquires-kilo-code
1•doanbactam•53s ago•0 comments

Q-Day is coming, and it might break the internet

https://www.rnz.co.nz/news/world/724214/q-day-is-coming-and-it-might-break-the-entire-internet
3•billybuckwheat•2m ago•0 comments

Neanderthals, modern humans may have shared culture 59,000 years ago in Turkey

https://www.livescience.com/archaeology/neanderthals/modern-humans-and-neanderthals-may-have-shar...
3•gmays•10m ago•0 comments

AI-generated women are spreading disinformation about Singapore on TikTok

https://www.channelnewsasia.com/singapore/tiktok-ai-women-disinformation-deepfake-presenters-6250271
2•gnabgib•14m ago•0 comments

'We decided not to limit VPNs': UK government U-turns on age-gating VPNs

https://www.techradar.com/vpn/vpn-privacy-security/we-decided-not-to-limit-vpns-uk-government-u-t...
3•iamnothere•15m ago•1 comments

When the Wildfires Rage, Who Gets to Breathe First?

https://indigenousinsider.substack.com/p/when-the-wildfires-rage-who-gets
1•indigodaddy•16m ago•0 comments

Moe P. Wellington

https://objkt.com/users/tz1YdveLn8id6Wk9X2JGsWsJj7qZodJ1XsKT/created
1•gdss•19m ago•0 comments

Show HN: I made a local image compressor to save you from popups andsubscription

https://compressor.conutil.com
2•mahmedalam•20m ago•1 comments

Wrote a tiny version of argp for CLI parsing in embedded environments

https://github.com/zkwinkle/tiny_argp
1•zkwinkle•25m ago•1 comments

Show HN: A cross-platform app for meeting notes and items that don't get lost

https://github.com/kestermckinney/ProjectNotes
1•kestermckinney•32m ago•0 comments

Bluesky Trademarks ATProto

https://atproto.com/blog/at-protocol-trademark
2•chaosharmonic•33m ago•0 comments

Cybernetic Culture Research Unit Archive

https://ccru.is-lost.org/
1•snorbleck•34m ago•0 comments

Tlbic: A localized, non-speculative basic income for societal resilience

https://drive.google.com/file/d/1BzNLajzFjxUTD3Xmr6NhiDblBz4XUGeY/view?usp=drive_link
2•michikawa59•39m ago•4 comments

Ask HN: Is anyone else feeling bad about Reddit's mechanisms

1•SmolSpideritito•41m ago•3 comments

History of Web Hosting

https://history-of-webhosting.exe.xyz
1•indigodaddy•44m ago•0 comments

A Gang of Thieves Pulled Off a Multimillion-Dollar Data Center Heist

https://www.nytimes.com/2026/07/12/magazine/data-center-heist.html
3•tysone•45m ago•0 comments

Performing live migrations of VMs at scale

https://www.sailresearch.com/blog/performing-live-migrations-of-massive-vms-at-scale
1•patrickdevivo•46m ago•0 comments

Telemedicina Para Venezuela

https://latydo.com/
2•latydo_33•51m ago•0 comments

Ban on broadcasting: EU Court clarifies that it also applies to free websites

https://www.eunews.it/en/2026/07/02/ban-on-broadcasting-russia-today-the-eu-court-clarifies-that-...
1•jruohonen•51m ago•0 comments

ArcBrush 1.5 – Node-based image editor (OCIO, OpenEXR, 97 nodes)

https://arcbrush.com/press/arcbrush-1-5/
2•albiabia•52m ago•0 comments

Syncthing for Dotfiles: Sync vs. Manage

https://sumguy.com/syncthing-for-dotfiles/
1•twp•57m ago•0 comments

Manual Work Is a Bug

https://queue.acm.org/detail.cfm?id=3197520
4•Anon84•1h ago•1 comments

Rethinking the Evaluation of Harness Evolution for Agents

https://arxiv.org/abs/2607.12227
3•Anon84•1h ago•0 comments

Generative AI is an Engineering Disaster

https://www.theatlantic.com/technology/2026/07/generative-ai-engineering-disaster/687901/
4•mizzao•1h ago•1 comments

What the I2Coalition Article Misses About DNS Abuse

https://circleid.com/posts/what-the-i2coalition-article-misses-about-dns-abuse
1•jruohonen•1h ago•0 comments

DoorDash CLI

https://twitter.com/andyfang/status/2077516962515599799
2•whalesalad•1h ago•0 comments

Skills Asset Protocol

https://neverhandedover.com
1•aznatkoiny•1h ago•0 comments

Fusing a 27B ternary LLM's whole decode step into one CUDA kernel

https://twitter.com/Akashi203/status/2077552491567157733
1•Jr23_xd•1h ago•0 comments

IBM stock closes down more than 25% after preannounced earnings results

https://finance.yahoo.com/markets/stocks/article/ibm-stock-closes-down-more-than-25-after-preanno...
3•kaycebasques•1h 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!