frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SQLite is all you need for durable workflows

https://obeli.sk/blog/sqlite-is-all-you-need-for-durable-workflows/
1•tomasol•30s ago•0 comments

A call for secure coding standards across the Canada government

https://bsky.app/profile/shehackspurple.bsky.social/post/3mmz25aplk52a
1•mooreds•43s ago•0 comments

Nvidia Twitter Post Teasing: A New Era of PC

https://twitter.com/nvidia/status/2060390710797328574
1•HeyMeco•2m ago•1 comments

Multiplayer Harness for Agents and Humans

https://thruwire.ai
1•noashavit•2m ago•0 comments

The Greatest Show on Earth: The Evidence for Evolution

https://en.wikipedia.org/wiki/The_Greatest_Show_on_Earth:_The_Evidence_for_Evolution
1•chistev•3m ago•0 comments

Tesla's AI trainers don't trust its self-driving tech – or its safety stats

https://www.reuters.com/investigations/why-teslas-ai-trainers-dont-trust-its-self-driving-tech-or...
2•grassfedgeek•4m ago•1 comments

What if remote working, not AI, is to blame for weak junior hiring?

https://www.ft.com/content/2205e2d0-50dc-4e80-9bf7-78d0272276c0
1•uxhacker•5m ago•0 comments

Google DeepMind's AlphaProof Nexus solves decades-old math problems

https://the-decoder.com/google-deepminds-alphaproof-nexus-solves-decades-old-math-problems-for-a-...
1•gmays•8m ago•0 comments

Robinhood now lets your AI agents trade stocks

https://techcrunch.com/2026/05/27/robinhood-now-lets-your-ai-agents-trade-stocks/
9•wapasta•8m ago•4 comments

Sample Music with Chrome

https://www.tabsampler.com/
1•asolis0105•9m ago•0 comments

Mosquitoes seem to be getting over insect repellent

https://www.economist.com/science-and-technology/2026/05/28/mosquitoes-seem-to-be-getting-over-in...
1•Brajeshwar•9m ago•1 comments

Windows PC Industry Reacts to MacBook Neo

https://www.macrumors.com/2026/05/29/windows-pc-industry-reacts-to-macbook-neo/
1•tosh•9m ago•1 comments

National Design Service Websites Registry

https://thedreydossier.github.io/NDS_servers_map/
1•ravenical•10m ago•0 comments

Normalized Compression Distance

https://en.wikipedia.org/wiki/Normalized_compression_distance
1•woliveirajr•10m ago•0 comments

Another tech company says it will cut jobs amid pivot to AI

https://www.latimes.com/business/story/2026-05-29/another-tech-company-says-it-will-cut-hundreds-...
1•1vuio0pswjnm7•10m ago•0 comments

Zero Evidence of AI-Related Job Losses

https://www.apollo.com/wealth/the-daily-spark/zero-evidence-of-ai-related-job-losses
1•akyuu•11m ago•0 comments

Generative Unix CTF for RL

https://vmax.ai/team/unix-ctf-procedural-environments-for-unix-competence-reinforcement-learning
1•ronald_raygun•12m ago•0 comments

Open-source security mess: IBM and Red Hat bet $5B and 20k engineers can fix it

https://www.zdnet.com/article/open-source-security-is-a-mess-ibm-and-red-hat-bet-5-billion-to-fix...
1•CrankyBear•12m ago•0 comments

AionOS – self-healing microkernel in Zig (boots on real hardware)

https://github.com/rodancz/aion
1•rodancz•12m ago•0 comments

The origin of quorum systems in distributed computing [pdf]

https://vukolic.com/QuorumsOrigin.pdf
2•fanf2•13m ago•0 comments

Are all BSDs created equally? OpenBSD vs. NetBSD vs. FreeBSD (2018) [video]

https://www.youtube.com/watch?v=AvSPqo3_3vM
2•Caarticles•15m ago•0 comments

To see to it that the forces of Napoleon are driven out of Spain (1809)

https://wellsoc.org/society-member-pages/anecdotes-of-wellington/
2•backuprestore•15m ago•0 comments

Show HN: Train Claude Code's replacement (ds4 and pi and aoe)

https://github.com/njbrake/dotpi/tree/main
1•river_otter•16m ago•0 comments

But It Happened [video]

https://www.youtube.com/watch?v=tlQ7EoJDTQY
2•stock_toaster•18m ago•0 comments

The Religion of Speed

https://graybearding.bearblog.dev/the-religion-of-speed/
1•rglover•18m ago•1 comments

Waymo launches cheaper robotaxis in Los Angeles

https://www.latimes.com/business/story/2026-05-28/waymo-launches-services-with-cheaper-robotaxis-...
1•gamblor956•19m ago•0 comments

Any Cloud. Locally – New floci's brothers

https://floci.io
1•hectorvent•19m ago•0 comments

SiteGround's Icky Approach to AI in WordPress 7.0

https://www.rhyswynne.co.uk/sitegrounds-icky-approach-to-ai-in-wordpress-7-0/
1•speckx•23m ago•0 comments

Tokyo rent map: ¥70k gap between cheapest and priciest 1K (May 2026 data)

https://housingassist.com/blog/tokyo-rent-report-may-2026/
3•momentmaker•24m ago•0 comments

SpaceX skeptics' added reason for concern: Musk comments diverge from IPO filing

https://www.cnbc.com/2026/05/29/spacex-skeptics-concerned-as-musk-comments-diverge-from-ipo-filin...
5•1vuio0pswjnm7•25m 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!