frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'Game of Thrones' George RR Martin speaks out about depression amid book delays

https://www.theguardian.com/books/2026/aug/05/getting-old-is-no-fun-game-of-thrones-author-george...
1•bookofjoe•51s ago•0 comments

FDA makes Lipfendra poster child of CNPV program for first PCSK9 pill

https://www.fiercepharma.com/pharma/fda-makes-lipfendra-poster-child-cnpv-pilot-merck-charts-long...
1•brandonb•2m ago•0 comments

Italy to place all 27 of its major cities on highest heat alert

https://www.theguardian.com/environment/2026/aug/05/italy-heatwave-major-cities-highest-heat-alert
2•ndsipa_pomu•2m ago•0 comments

Email Bulk Sender Requirements (Google/Yahoo /Microsoft) [video]

https://www.youtube.com/watch?v=TRwAO0Td_qA
1•c0nrad•2m ago•0 comments

What's behind the $4B funding cut for California's high-speed rail?

https://www.cbsnews.com/news/california-high-speed-rail-train-procurement-newsom/
1•peter_stokes•2m ago•0 comments

Public Service Decline and the Populist Right: Evidence from England's NHS [pdf]

https://catherinedevries.eu/NHS.pdf
1•pseudalopex•3m ago•0 comments

Five Rust teams adopt LLM rules to protect human code review

https://runtimewire.com/article/rust-teams-adopt-llm-contribution-policy
1•ryanmerket•4m ago•0 comments

Read HN twice a day for the last decade. Here's my list of S-Tier HN links

1•vivzkestrel•4m ago•0 comments

Wordle but small AI mini challanges

https://shorts.bridge-jobs.com/
1•SaazM•4m ago•0 comments

Has the New Cocaine Arrived?

https://www.playboy.com/read/politics/they-say-its-better-than-coke-its-also-more-addictive
1•speckx•5m ago•0 comments

KIDS Act would put Washington in charge of how we can communicate online

https://expression.fire.org/p/the-kids-act-would-put-washington
1•timr•5m ago•0 comments

Show HN: What if one fund held tokenized Gold, tech stocks and digital assets?

https://wealtii.com/funds/wealtii-tech-digital-asset-growth-fund
3•zayd7861•5m ago•0 comments

Show HN: ResizeKit – Browser-only image resizer for developer asset packs

https://resizekit.app
1•mhova•7m ago•0 comments

Google Assistant will disappear from your phone next month

https://www.theverge.com/tech/975516/google-assistant-android-phones-tablets-shutdown
1•Brajeshwar•7m ago•0 comments

Show HN: AgentTerm – open tools to replace the terminal for any coding-agent CLI

https://github.com/albertwujj/agent-term
1•aywu•7m ago•0 comments

Spend More Time Talking to Humans

https://www.honeycomb.io/blog/spend-more-time-talking-to-humans
1•gpi•7m ago•0 comments

The Winners of Trump's A.I. Safety Plan

https://www.nytimes.com/2026/08/05/business/dealbook/winners-trump-ai-policy.html
3•sbulaev•9m ago•0 comments

Moving Forward from Hot Fable Summer

https://alexstamos.com/p/moving-forward-from-hot-fable-summer
1•secalex•10m ago•0 comments

Aristotle quotes on virtue, knowledge, and happiness

https://www.campion.edu.au/blog/top-25-aristotle-quotes-on-virtue-knowledge-and-happiness/
3•teleforce•10m ago•1 comments

Show HN: Vocab Top – AI-powered vocabulary builder that helps you retain words

https://www.vocab.top/
3•LandoLorinse•10m ago•0 comments

I'm Publishing Every Medical Record I Have [video]

https://www.youtube.com/watch?v=krP9EGyLCRE
3•imtany•11m ago•0 comments

Google Is in Talks for a $1.5B-Plus Deal with Mechanize

https://www.businessinsider.com/google-mechanize-deal-talent-tech-ai-coding-2026-8
1•gmays•11m ago•0 comments

Will IVR Still Exists?

https://www.roycehaynes.com/articles/will-ivr-still-exists/
1•roycehaynes•11m ago•0 comments

Review: Job-Less Utopia

https://borretti.me/article/review-job-less-utopia
1•ibobev•12m ago•0 comments

Got a hot date? A secondhand SK Hynix jacket is perfect as bonuses raise cachet

https://www.koreajoongangdaily.com/business/got-a-hot-date-this-secondhand-sk-hynix-jacket-is-per...
1•Bluestein•12m ago•0 comments

The Wild West: Planning for a more multipolar and volatile world

https://www.lynalden.com/june-2026-newsletter/
1•rzk•12m ago•0 comments

Rubin Observatory's first LSST Camera release: 500k galaxies in the COSMOS field

https://rubinobservatory.org/news/rubin-new-window-cosmos-field
2•MarcoDewey•12m ago•0 comments

Intelligence Is Not the Main Bottleneck

https://www.writingruxandrabio.com/p/intelligence-is-not-the-main-bottleneck
1•rruxandra_l•13m ago•0 comments

Purely functional digital circuit simulator (SICP 3.3)

https://entropicthoughts.com/sicp-3-3-pure-digital-circuit-simulator
1•ibobev•13m ago•0 comments

EWW, the Emacs browser you underestimate

https://en.andros.dev/blog/e0e00b4b/eww-the-emacs-browser-you-underestimate/
1•ibobev•13m 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!