frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

FreeBASIC

https://github.com/freebasic/fbc
1•ustad•2m ago•0 comments

Fastmail Down?

1•bsder•8m ago•0 comments

The Museum Can Wait

https://mikaelpawlo.substack.com/p/the-museum-can-wait
1•imartin2k•9m ago•0 comments

Show HN: TextifyALL – AI transcription with zero file size or duration limits

https://textifyall.com
1•Harvey1331•14m ago•0 comments

Devframe: Framework-Neutral Foundation for DevTools

https://devfra.me/
1•kozika•14m ago•0 comments

New York Times Published A.I.-Fabricated Quote Attributed to Pierre Poilievre

https://pxlnv.com/linklog/times-poilievre-fabricated-quote/
1•danaris•15m ago•0 comments

Why were semiconductors invented in the USA? [YouTube]

https://www.youtube.com/watch?v=yJUJztMrUxk
1•johncole•16m ago•1 comments

The Inspiring Journey of Harmandeep Singh Kandhari in Real Estate

https://harmandeepsingh-kandhari.onepage.me
1•KirtiKKapoor•17m ago•0 comments

Amazon staff use AI tool for unnecessary tasks to inflate usage scores

https://www.ft.com/content/8ee0d3ef-9548-422d-8ff1-ebd48ad4b2ca
3•uhfraid•18m ago•1 comments

Artificial Intelligence and Quarterly Earnings Reports

https://ritholtz.com/2026/05/ai-q-earnings/
1•imartin2k•18m ago•0 comments

Arts and cultural engagement 'linked to slower pace of biological ageing'

https://www.theguardian.com/science/2026/may/12/arts-cultural-engagement-linked-slower-pace-biolo...
1•XzetaU8•18m ago•0 comments

Getting the Maximum Out of My Claude Code Subscription

https://jigjoy.ai/blog/getting-the-maximum-out-of-claude-code
1•mijura•19m ago•0 comments

Breez SDK Case Study: Deblock, Instant Bitcoin at Scale

https://breez.technology/case-studies/deblock/
1•janandonly•21m ago•0 comments

California Scrub Jay

https://en.wikipedia.org/wiki/California_scrub_jay
1•vismit2000•22m ago•0 comments

Axavive Results: Real Before and After Pictures (90-Day Skin Test)

https://finance.yahoo.com/sectors/healthcare/articles/axavive-skin-exploding-2026-golden-22590060...
1•tarzlopa•24m ago•0 comments

Is Google down for anyone else?

https://www.google.com/search?q=end+of+times&sca_esv=89f358ba4e2fcd04&rlz=1C5CHFA_enAU1082AU1082&...
1•schappim•25m ago•3 comments

The Underlying Purpose of AI

1•e12e•26m ago•0 comments

May 11: Startup Roundup

https://old.reddit.com/r/Superframeworks/comments/1taj878/startup_roundup_may_11_gusto_hits_1b_re...
1•ayushchat•31m ago•0 comments

Keep Claude working toward a goal – Claude Code Docs

https://code.claude.com/docs/en/goal
1•whtsky•32m ago•0 comments

Password Is 'NeXTStep'

https://hardcoresoftware.learningbyshipping.com/p/009-password-is-nextstep
1•tosh•32m ago•0 comments

GM agrees to pay $12.75M in California driver privacy settlement

https://techcrunch.com/2026/05/09/gm-agrees-to-pay-12-75m-in-california-driver-privacy-settlement/
2•benkan•33m ago•0 comments

Why you're probably going to lose money on Polymarket

https://www.msn.com/en-us/money/investment/why-you-re-probably-going-to-lose-money-on-polymarket/...
1•benkan•33m ago•0 comments

Bright lights: UFO files shed light on sightings but leave interpretation

https://apnews.com/article/trump-ufos-uap-aliens-pentagon-records-investigation-3e658d2cf37424651...
1•benkan•35m ago•2 comments

Tech leaders propose UBI and shorter work week for AI; sounds familiar in Europe

https://www.lemonde.fr/en/economy/article/2026/05/10/universal-income-reduced-work-week-capital-t...
1•vrganj•37m ago•0 comments

Show HN: Agent FM – local, open-source radio for Claude Code and Codex agents

https://github.com/agentfm-ai/agent-fm
7•anideshp•39m ago•0 comments

Jes Staley Asked to Sit for US House Interview over Epstein Ties

https://www.bloomberg.com/news/articles/2026-05-11/jes-staley-asked-to-sit-for-us-house-interview...
1•petethomas•39m ago•0 comments

CMake Support for the Dear ImGui

https://github.com/adembudak/CMakeForImGui
2•adembudak•40m ago•0 comments

We Ran 250 AI Agent Evals to Find Out If Skills Beat Docs

https://www.wix.engineering/post/we-ran-250-ai-agent-evals-to-find-out-if-skills-beat-docs-the-an...
2•doppp•43m ago•0 comments

Adults relive the musical camaraderie of their youth at band camps for grown-ups

https://apnews.com/article/summer-band-camps-adults-music-fc09ccf0261bec0007f5e3b2ebc3570e
1•petethomas•54m ago•0 comments

Speed Month – The Reader Meets the Fediverse

https://activitypub.blog/2026/05/05/radical-speed-month-the-reader-meets-the-fediverse/
1•ZacnyLos•57m 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!