frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stop Wasting Brain Power

https://yusufaytas.com/stop-wasting-brainpower
6•london_safari•1m ago•0 comments

An AI-generated image is a finalist in Hasselblad Masters 2026 [video]

https://www.youtube.com/shorts/4MeO2wW5nOs
1•xuf•2m ago•1 comments

200 Journalists Applaud the Internet Archive's Role in Preserving Public Record

https://www.savethearchive.com/journalists/
1•doener•2m ago•0 comments

MSF: Israel uses water as a weapon of collective punishment against Palestinians

https://msf.org.uk/article/gaza-israel-uses-water-weapon-collective-punishment-against-palestinians
2•mef51•2m ago•1 comments

PowerDNS Security Updates – Vulnerabilities Explained CVE-2026-33257

https://tux.re/forum/viewtopic.php?t=179
1•Neteam•4m ago•0 comments

Fastembed – Lightweight Python Embedding Library

https://github.com/qdrant/fastembed
1•firasd•5m ago•0 comments

Escaping SaaS Trap: How Global Retailer Solved Data Sovereignty at 85% Less Cost

https://www.mydecisive.ai/case-study/luxury-retailer-data-sovereignty
1•jratkevic•8m ago•0 comments

Microsoft open sources DOS 1.0 – and it's more than the code

https://www.zdnet.com/article/microsoft-open-sources-dos-1-0-much-more-than-the-code/
2•CrankyBear•8m ago•1 comments

OpenAI Hits Back at Growth Fears, Says 'Firing on All Cylinders'

https://www.bloomberg.com/news/articles/2026-04-28/openai-hits-back-at-growth-fears-says-firing-o...
1•SilverElfin•8m ago•1 comments

One Man Broke the Marathon's Holy Grail

https://www.thefp.com/p/how-one-man-broke-the-marathons-holy
1•sorenKaram•10m ago•1 comments

Super fly: can an electric aircraft spark a quiet revolution in New York travel?

https://www.theguardian.com/us-news/2026/apr/28/electric-aircraft-new-york-air-travel
3•billybuckwheat•10m ago•0 comments

Ghostty is leaving GitHub

https://mitchellh.com/writing/ghostty-leaving-github
136•WadeGrimridge•10m ago•5 comments

Computing quantum waves from classical action

https://royalsocietypublishing.org/rspa/article/482/2336/20250413/481461/On-computing-quantum-wav...
1•orbifold•11m ago•1 comments

Lenovo acquires Phoenix Technologies' BIOS business

https://videocardz.com/newz/lenovo-acquires-phoenix-technologies-bios-business
2•LorenDB•13m ago•0 comments

Open-sourced the skills behind 353K views and 5,300 signups for a YC company

https://github.com/ScaleBrick/founder-marketing-skills
2•devgod•14m ago•0 comments

Lidl stirs up mobile market with discount phone plans

https://www.ft.com/content/52b9ba96-e86c-4ddb-ac1f-726051420fd2
1•doener•16m ago•0 comments

Why Everyone Is Obsessed with Claude Code

https://www.youtube.com/watch?v=gzt52Trk9w0
1•pythonic_hell•16m ago•0 comments

Two years without cookies on the site, here's where we ended up

https://blog.sentry.io/two-years-without-cookies-on-the-site/
3•annjose•17m ago•0 comments

Why Multi Window Multi Burn Rate SLO Alerting Sucks

https://eavan.blog/posts/multi-window-burn-rate-sucks.html
1•eavan0•22m ago•1 comments

You Take Notes but Never Get Smarter

https://meda.io/why-you-take-notes-but-never-get-smarter/
4•speckx•23m ago•0 comments

Show HN: CLI to for working with complex Google Docs using Markdown

https://github.com/think41/extrasuite
1•ksri•27m ago•1 comments

Why don't AI coding tools like REST?

3•sshadmand•29m ago•0 comments

It's dumb to study computer science thinking you can make a 'boatload' at Google

https://www.businessinsider.com/replit-ceo-dumb-to-study-computer-science-money-google-2026-4
1•austin-cheney•29m ago•0 comments

Interview with OpenAI and AWS CEOs about Bedrock Managed Agents

https://stratechery.com/2026/an-interview-with-openai-ceo-sam-altman-and-aws-ceo-matt-garman-abou...
16•translocator•30m ago•2 comments

No one can force me to have a secure website [pdf]

https://tom7.org/httpv/httpv.pdf
2•susam•33m ago•1 comments

Beyond Maxxing: New Tech Slang for 2026

https://www.siliconsnark.com/beyond-maxxing-siliconsnark-creates-new-tech-slang-for-2026/
2•SaaSasaurus•33m ago•0 comments

A Model for Economic Freedom on Mars

https://arxiv.org/abs/2406.10380
1•AFF87•36m ago•0 comments

I Got Sick of Remembering Port Numbers

https://gregraiz.com/blog/local-vibe/
5•graiz•36m ago•1 comments

Using a 1978 terminal in 2026 (DEC VT-100)

https://nikhiljha.com/posts/vt100/
3•ninjha•37m ago•0 comments

The AI Product Era You're Building for Might Be Over – Arcturus Labs

http://arcturus-labs.com/blog/2026/03/22/the-ai-product-era-youre-building-for-might-already-be-o...
1•softwaredoug•38m 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!