frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Robots walked outdoors at a public-road event in Akihabara, Tokyo

https://www.youtube.com/watch?v=142d-OF7GeA
1•meganetaaan•47s ago•0 comments

Inventor of Heelys Dies at 71

https://www.nytimes.com/2026/04/16/business/roger-adams-dead.html
1•nxobject•4m ago•0 comments

I Built My Dream Bug Tracking Software in a Week

https://markjardine.com/blog/i-built-my-dream-bug-tracking-software-in-a-week
1•sashk•14m ago•0 comments

AI companies are buying the Slack data of failed startups

https://twitter.com/_iainmartin/status/2044758204773486925
2•harambae•19m ago•0 comments

DARPA builds AI to investigate China's claim it can break military encryption

https://www.scientificamerican.com/article/darpa-built-an-ai-to-fact-check-enemy-weapons-claims/
2•Jimmc414•21m ago•0 comments

New NTFS File-System Driver Submitted for Linux 7.1

https://www.phoronix.com/news/New-NTFS-Driver-Submitted-Linux
1•Bender•21m ago•0 comments

Much Ado about Protein

https://www.theverge.com/column/897715/optimizer-protein-proteinmaxxing-proteinwashing-wellness
1•paulpauper•23m ago•0 comments

EP 172: SuperBox

https://darknetdiaries.com/episode/172/
2•paulpauper•24m ago•0 comments

The Patchwright – AI Assisted Short Film

https://www.youtube.com/watch?v=-Rzl7nUdEs4
1•gradus_ad•24m ago•0 comments

The scientific case for being nice to your chatbot

https://www.platformer.news/chatbot-emotion-research-anthropic-alignment-interpretability/
1•herbertl•24m ago•0 comments

The most dangerous student on campus

https://hollisrobbinsanecdotal.substack.com/p/the-most-dangerous-student-on-campus
1•HR01•25m ago•0 comments

Rust 1.95 Released with Several Improvements

https://www.phoronix.com/news/Rust-1.95-Released
2•Bender•26m ago•0 comments

The tech jobs bust is real. Don't blame AI (yet)

https://www.economist.com/finance-and-economics/2026/04/13/the-tech-jobs-bust-is-real-dont-blame-...
1•pseudolus•26m ago•1 comments

MAGA Indians Went All in on Trump. Many Right-Wingers Can't Stand Them

https://www.wired.com/story/maga-indians-went-all-in-on-trump/
7•aanet•26m ago•2 comments

Datastar v1 Released – The hypermedia framework

https://github.com/starfederation/datastar
1•vyrotek•28m ago•1 comments

Pixar Movies, Definitively Ranked

https://www.gq.com/story/the-best-pixar-movies-definitively-ranked
1•mooreds•28m ago•0 comments

It's Time to End the War on Salt (2011)

https://www.scientificamerican.com/article/its-time-to-end-the-war-on-salt/
3•downbad_•33m ago•1 comments

Show HN: LabelCompass, a new website to check for record labels

https://labelcompass.pages.dev/
1•telui•39m ago•0 comments

Bond Graph

https://en.wikipedia.org/wiki/Bond_graph
1•downboots•42m ago•0 comments

Show HN: Free API and widget to look up US representatives

https://repscontact.com/
1•waterproof•44m ago•0 comments

A new chapter for Ruby Central

https://rubycentral.org/news/a-new-chapter-for-ruby-central/
1•vincentchau•44m ago•0 comments

Redesigned Claude Code Desktop

https://claude.com/blog/claude-code-desktop-redesign
1•gadiyar•48m ago•0 comments

Plex.tv Is Down

https://status.plex.tv/
1•jjordan•49m ago•0 comments

White House moves to give us agencies Anthropic mythos access

https://www.bloomberg.com/news/articles/2026-04-16/white-house-moves-to-give-us-agencies-anthropi...
2•cma•51m ago•0 comments

It seems Washington needs to be reminded of the Nuclear Non-Proliferation Treaty

https://thebulletin.org/2026/04/it-seems-washington-needs-to-be-reminded-of-the-nuclear-non-proli...
2•doener•51m ago•1 comments

Show HN: Spice simulation → oscilloscope → verification with Claude Code

https://lucasgerads.com/blog/lecroy-mcp-spice-demo/
7•_fizz_buzz_•51m ago•2 comments

Atlassian is changing how we use customer data on August 17, 2026

https://www.atlassian.com/trust/ai/data-contribution
4•michaefe•57m ago•0 comments

Apple's $599 MacBook Neo Sold Out Through April Amid Surging Demand

https://www.macrumors.com/2026/04/16/macbook-neo-demand-surging/
2•mgh2•59m ago•3 comments

Zero-copy protobuf and ConnectRPC for Rust

https://medium.com/@iainmcgin/zero-copy-protobuf-and-connectrpc-for-rust-69bda8ac0f02
1•PaulHoule•1h ago•1 comments

Eat Your Words

https://om.co/2026/04/16/eat-your-words/
1•herbertl•1h ago•0 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•12mo ago

Comments

karmakaze•12mo 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•12mo 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•12mo 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•12mo 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•11mo 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•12mo 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•12mo 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•12mo ago
Hey Mark, I actually found this post via yours so thanks!