frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Microsoft must face $2.8B UK lawsuit over cloud computing licences

https://www.reuters.com/sustainability/boards-policy-regulation/microsoft-must-face-28-billion-uk...
1•rolph•1m ago•0 comments

Firefox 150 Released

https://lwn.net/Articles/1068839/
1•amcclure•2m ago•1 comments

Schematico discovers, generates, and serves formatted data

https://schematico.app/
1•neeharchow•4m ago•0 comments

Nandan

1•Nandan_J•5m ago•0 comments

Show HN: Image to Explorable 3D Scene

https://huggingface.co/spaces/ggamecrazy/lyra2-explorable-scene
1•ggamecrazy•5m ago•0 comments

aube: A New Dawn for Node Installs (from mise author)

https://aube.en.dev/
1•rsyring•6m ago•1 comments

We Built OpsFabric

https://opsfabric.io/blog/why-we-built-opsfabric.html
1•taubek•6m ago•0 comments

Grok 4.3 Beta

https://grok.com/release-notes
2•DeathArrow•6m ago•0 comments

A network of YouTube accounts is promoting U.S. annexation to Albertans

https://www.thestar.com/news/investigations/a-network-of-youtube-accounts-is-promoting-us-annexat...
2•Teever•8m ago•0 comments

Meta to start capturing employee mouse movements, keystrokes for AI training

https://www.reuters.com/sustainability/boards-policy-regulation/meta-start-capturing-employee-mou...
3•symisc_devel•8m ago•1 comments

Rehumanising our Conflicts with Carm Aufderheide [audio]

https://accidentalgods.life/beyond-zero-sum-rehumanising-our-conflicts-with-carm-aufderheide-of-n...
1•mooreds•8m ago•0 comments

HOPL IV: A History of Clojure (2021)

https://hopl4.sigplan.org/details/hopl-4-papers/9/A-History-of-Clojure
1•adityaathalye•9m ago•0 comments

Is your business idea good?

https://www.inc.com/ben-sherry/is-your-business-idea-actually-good-this-claude-hack-provides-the-...
1•tacon•10m ago•0 comments

Four Horsemen of the AIpocalypse

https://www.wheresyoured.at/four-horsemen-of-the-aipocalypse/
3•7777777phil•11m ago•0 comments

Noah Wyle, Chappell Roan, and the Wretched Rise of Toxic Fandoms

https://www.vanityfair.com/hollywood/story/the-pitt-heated-rivalry-toxic-fans
1•Tomte•11m ago•0 comments

Hyper-DERP: Same throughput as Tailscale's derper, half the cores

https://hyper-derp.dev/blog/hyper-derp-announcement/
1•KRuskowski•12m ago•0 comments

New poker tax laws have forced Erik Seidel into semi-retirement

https://www.cnbc.com/2026/04/21/pro-poker-player-says-new-tax-laws-forced-him-into-semi-retiremen...
1•indigodaddy•12m ago•0 comments

Mitshe open-source platform that gives AI agents isolated Docker workspaces

https://github.com/mitshe/mitshe
1•3uba•12m ago•0 comments

Europe, Wake Up

https://datascienceathome.com/europe-wake-up-you-cant-be-a-superpower-on-someone-elses-servers-ep...
1•frag•12m ago•0 comments

Privacy and Anonymity in Monero

https://risencrypto.github.io/Monero/
1•Cider9986•13m ago•0 comments

Cook Editor: Plain text recipe editor

https://cook.md/editor
1•dubadub•14m ago•0 comments

Palantir manifesto described as 'ramblings of a supervillain' amid contract fear

https://www.theguardian.com/technology/2026/apr/21/palantir-manifesto-uk-contract-fears-mps
3•e12e•16m ago•0 comments

TranslateGemma Running in the Browser

https://artisincode.com/playground/translation/
2•parentheses•17m ago•1 comments

Show HN: Built an open-source dashboarding MCP

1•ss323•17m ago•0 comments

Show HN: Nobulex – Cryptographic receipts for AI agent actions

https://github.com/arian-gogani/nobulex
1•arian_•18m ago•0 comments

Meta to start capturing employee mouse movement, keystrokes for AI training data

https://tech.yahoo.com/ai/meta-ai/articles/exclusive-meta-start-capturing-employee-162745587.html
3•louiereederson•19m ago•0 comments

A Periodic Map of Cheese

https://cheesemap.netlify.app/
2•sfrechtling•20m ago•0 comments

I Feel So Sorry for My A.I. Sunglasses

https://www.nytimes.com/2026/04/14/magazine/ai-sunglasses-meta-zuckerberg.html
1•lxm•20m ago•0 comments

Deep Research Max: a step change for autonomous research agents

https://blog.google/innovation-and-ai/models-and-research/gemini-models/next-generation-gemini-de...
1•meetpateltech•21m ago•0 comments

Google's Internal Politics Leave It Playing Catch-Up on AI Coding

https://www.bloomberg.com/news/articles/2026-04-21/google-struggles-to-gain-ground-in-ai-coding-a...
4•htrp•22m ago•1 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•12mo 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!