frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Breaking a Kubernetes Service in Three Ways and Examining the Raw Packets

https://tylerjarjoura.com/blog/breaking-kubernetes-service-in-three-ways/
1•tjarjoura•57s ago•0 comments

Instagram has launched another Snapchat clone

https://www.theverge.com/tech/918061/instagram-instants-app-launch-snapchat-bereal
1•Lwrless•1m ago•0 comments

Show HN: A standalone YouTube Music popup for OBS (no plugins required)

https://timexo.gumroad.com/l/playlistplayer
1•Timexo•1m ago•0 comments

Add0n.com is in the process of migrating to webextension.org

https://webextension.org/listing/
1•embedding-shape•1m ago•0 comments

Intent-Driven Development

https://russellromney.com/blog/intent-driven-development
1•russellthehippo•2m ago•0 comments

An Update on Rust-Coreutils

https://discourse.ubuntu.com/t/an-update-on-rust-coreutils/80773
1•aragilar•4m ago•0 comments

Verynix, any version of any Nix package in one command

https://github.com/mipmip/verynix
1•mipselaer•5m ago•1 comments

The operating cost of adult and gambling startups

https://orchidfiles.com/stigma-is-a-tax-on-every-operational-decision/
1•theorchid•5m ago•0 comments

Intel's stock soars 20% as results top estimates, showing signs of growth

https://www.cnbc.com/2026/04/23/intel-intc-q1-2026-earnings-report.html
1•ahakki•6m ago•0 comments

New Report Reveals 98.4% of "Critical" ICS Vulnerabilities Never Been Weaponized

https://www.emberot.com/newsroom/ot-vulnerability-intelligence-report/
1•TheWiggles•7m ago•0 comments

London Underground Live

https://www.londonunderground.live/index.html
1•lastdong•10m ago•0 comments

AI Agents Under EU Law

https://arxiv.org/abs/2604.04604
1•Topfi•12m ago•0 comments

Show HN: Render-tag – A rich text renderer for the Canvas 2D API

https://github.com/polotno-project/render-tag
1•lavrton•13m ago•0 comments

Mercedes' Plan to Screw Car Headlights and More to Solve Repairability

https://carbuzz.com/mercedes-benz-next-generation-headlight-design/
1•toss1•14m ago•0 comments

Canadian AI Firm Cohere to Merge with Germany's Aleph Alpha

https://financialpost.com/technology/cohere-to-merge-german-ai-aleph-alpha
3•neom•14m ago•0 comments

Cosmos (Sagan Book)

https://en.wikipedia.org/wiki/Cosmos_(Sagan_book)
1•chistev•16m ago•0 comments

Crime Data Assistant: Chat assistant to answer crime questions with real data

https://nibrsai.com/
1•apwheele•17m ago•0 comments

"He Didn't Predict the War–He Cashed in on His Access."

https://yakreignited.substack.com/p/he-didnt-predict-the-warhe-cashed
1•__yak•20m ago•0 comments

Turning a Gaussian Splat into a Videogame

https://blog.playcanvas.com/turning-a-gaussian-splat-into-a-videogame/
2•Luc•20m ago•0 comments

Show HN: Atomic – Local-first, AI-augmented personal knowledge base

https://atomicapp.ai/
3•kenforthewin•25m ago•1 comments

Accelerating experimentation in brain and behavior research

https://usefusion.ai/blog/the-great-unlock
1•ogundipeore•26m ago•0 comments

Design handoff belongs in the bin

https://www.shaunbent.co.uk/blog/design-handoff-belongs-in-the-bin/
1•ShikariRazor•27m ago•0 comments

Aspartame is not that bad?

https://dynomight.net/aspartame/
3•pHequals7•34m ago•0 comments

Side-stepping the Secretary Problem, unwittingly

https://www.evalapply.org/posts/side-step-secretary-problem-hiring/index.html
1•pvdebbe•34m ago•0 comments

Giving AI Hands: How KDP Makes Infrastructure Agent-Ready

https://www.kubermatic.com/blog/giving-ai-hands-how-kdp-makes-infrastructure-agent-ready/
1•mstruebing•35m ago•0 comments

Every Trade Contract Needs These 12 Clauses

https://www.documentorium.com/blog/every-trade-contract-needs-these-12-clauses
1•documentorium•36m ago•0 comments

The monstrous number sequences that break the rules of mathematics

https://www.newscientist.com/article/2521354-the-monstrous-number-sequences-that-break-the-rules-...
1•ColinWright•41m ago•0 comments

GIMP at LGM2026: committee, grants, no-AI policy, and that GSoC thing

https://librearts.org/2026/04/gimp-at-lgm2026/
1•prokoudine•44m ago•0 comments

NTSB LaGuardia Aviation Investigation Preliminary Report

https://data.ntsb.gov/carol-repgen/api/Aviation/ReportMain/GenerateNewestReport/202674/pdf
3•tomalpha•45m ago•1 comments

Stack Trace for Distributed Systems

https://github.com/leandromoreira/distributed-stack-trace
1•dreampeppers99•46m 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!