frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Working Async – The new wave of remote work is async-first

https://workingasync.io
1•Log007•52s ago•0 comments

Don't feel like a developer anymore after AI

https://economictimes.indiatimes.com/news/new-updates/dont-feel-like-a-developer-anymore-after-ai...
1•getbowtied•1m ago•0 comments

Lost headphones returned 4 years later

https://onemileatatime.com/news/qatar-airways-returns-headphones-lost-plane-four-years-later/
1•gregorvand•1m ago•0 comments

Stop Debugging Python with Print

https://en.andros.dev/blog/e380cf75/stop-debugging-python-with-print/
1•ibobev•2m ago•0 comments

First Look at Epic Games Lore VCS

https://asawicki.info/news_1803_first_look_at_epic_games_lore_vcs
1•ibobev•2m ago•0 comments

Connecting Peripherals to Atari 8-bit Computers

https://www.goto10retro.com/p/connecting-peripherals-to-atari-8
1•ibobev•3m ago•0 comments

AI agents are a confused deputy with the keys to your kingdom

https://stackoverflow.blog/2026/06/17/ai-agents-expose-the-security-checks-you-never-actually-wrote/
1•fabsalvadori•4m ago•0 comments

CrankGPT - a fully offline, off-the-grid AI box

https://squeezlabs.github.io/handcrank/
1•the-mitr•4m ago•0 comments

Can you draw a 3 wheeled bicycle?

https://doodle.wtf/?prompt=a%203%20wheeled%20bicycle
1•pompomsheep•4m ago•0 comments

Reverse engineering the Qualcomm NPU compiler

https://datavorous.github.io/writing/qairt/
1•ledoge•5m ago•0 comments

Show HN: Knoku – cited AI answers from docs, files, and team knowledge

https://knoku.com/
1•knoku•8m ago•0 comments

Hyperblam lets you make music with HTML

https://hyperblam.how/
1•tobr•8m ago•0 comments

The profound meaning and mystery of deathbed visions

https://www.washingtonpost.com/lifestyle/2026/06/19/deep-meaning-mystery-deathbed-visions/
1•wallflower•8m ago•0 comments

The Athens Music Scene

https://gardenandgun.com/athens-georgia-music
1•speckx•9m ago•0 comments

From AGI to ASI

https://arxiv.org/abs/2606.12683
1•gmays•10m ago•0 comments

Spending money on GPU's was my best investment

https://gurugen.in/spending-money-on-gpu-s-was-my-best-investment
3•andrewstetsenko•10m ago•0 comments

Elastic agrees to buy CRV-backed DeductiveAI for up to $85M

https://techcrunch.com/2026/06/18/source-elastic-agrees-to-buy-crv-backed-deductiveai-for-up-to-85m/
1•pranay01•11m ago•0 comments

ASML denies selling EUV chipmaking tool to China after report of US concern

https://www.reuters.com/world/china/us-tells-asml-it-is-concerned-china-may-have-top-chip-tool-bl...
2•gorbypark•12m ago•0 comments

Algebraic Attack

https://en.wikipedia.org/wiki/Algebraic_attack
2•binyu•13m ago•0 comments

Scaling a content agency using AI – 2 ppl managing 20 accounts now

https://www.postingmachine.ai
3•_mad_eye_•15m ago•3 comments

The future of cognitive security and the new sixth battleground

https://iai.tv/articles/psychological-warfare-was-once-an-afterthought-its-now-the-primary-battle...
2•pandoro•18m ago•0 comments

Finding an Asian Wife as a Western Man

https://indignified.com/finding-your-wife-life-partner-in-asia/
3•ZguideZ•18m ago•0 comments

Why the Human Genome's Tangled Physicality May Confound AI

https://www.quantamagazine.org/why-the-human-genomes-tangled-physicality-may-confound-ai-20260618/
2•pseudolus•19m ago•0 comments

Uptime.com's New MCP

https://github.com/uptime-com/uptime-mcp
2•uptime-com-mcp•21m ago•1 comments

Nearly 80% of data center capacity at elevated risk to climate hazards, study

https://www.cnbc.com/2026/06/18/data-center-climate-change-study.html
2•1vuio0pswjnm7•21m ago•0 comments

Windows NT for GameCube/Wii

https://github.com/Wack0/entii-for-workcubes
2•zdw•23m ago•0 comments

How many of the 170k English words do you know?

https://vocabowl-870366514258.us-west1.run.app/
2•abnry•23m ago•0 comments

Ask HN: Can Monte Carlo Tree Search Improve AI Outputs?

2•silent_butagrim•25m ago•0 comments

The average SpaceX buyer post-IPO is almost under water after two-day slide

https://www.cnbc.com/2026/06/18/the-average-spacex-buyer-post-ipo-is-almost-under-water-after-two...
2•1vuio0pswjnm7•26m ago•0 comments

I still don't think you need to vacuum every week

https://kevinmunger.substack.com/p/a-messy-experiment
2•surprisetalk•29m 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!