frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How the suffering system works in Hollow

https://ninjahawk.github.io/blog/posts/suffering-system.html
1•ninjahawk1•1m ago•0 comments

Show HN: BoxLite – the micro-VM runtime for embedded, local dev, and cloud prod

https://github.com/boxlite-ai/boxlite
1•dorianzheng•2m ago•0 comments

NASA's Nancy Grace Roman telescope will offer an 'atlas of the universe'

https://www.msn.com/en-us/news/technology/nasas-incredible-new-telescope-will-offer-an-atlas-of-t...
1•slow_typist•3m ago•0 comments

Git Rev News Edition 134 (April 30th, 2026)

https://git.github.io/rev_news/2026/04/30/edition-134/
1•chmaynard•7m ago•0 comments

Improved testing logic in od.nvim, added a serializers module to ocote

1•Okerew•11m ago•0 comments

Deepfakes Are Coming for Your Bank Account

https://www.theatlantic.com/technology/2026/05/chatgpt-images-deepfakes-fraud/687023/
1•JumpCrisscross•13m ago•0 comments

Free Mercurial Hg Hosting at Hglab.io

https://www.hglab.io/
1•harrisonerd•17m ago•1 comments

Show HN: Editor, Browser, Terminal, Mail, Agents. AI Sharing Context

https://github.com/raiyanyahya/kit
2•RaiyanYahya•19m ago•2 comments

PocketOS AI Fiasco – Lesson in Automation Access

https://onlytech.boo/incident/pocketos-ai-fiasco-lesson-in-automation-access-mokdojol
1•vednig•21m ago•0 comments

How to Test AI Agents When They Never Give the Same Answer Twice

https://adlrocha.substack.com/p/adlrocha-the-eval-problem-how-to
1•adlrocha•28m ago•0 comments

Quickheap: The fastest comparison-based heap?

https://curiouscoding.nl/posts/quickheap/
1•Peter5•29m ago•0 comments

Claude Code and Obsidian – build a second brain <3

https://canatak.substack.com/p/i-dont-need-to-know-everything-i
1•cango35•30m ago•0 comments

What's New in Git 2.54.0?

https://about.gitlab.com/blog/whats-new-in-git-2-54-0/
1•chmaynard•37m ago•0 comments

The Last Principle We Learn to Use

https://gpt.gekko.de/the-last-principle-we-learn-to-use/
1•ekadagami•41m ago•0 comments

Show HN: Enoch – Control Plane for Autonomous AI Research

https://github.com/alias8818/enoch-agentic-research-system
2•aliasocracy•45m ago•0 comments

Grok 'drive an iron nail through the mirror while reciting Psalm 91 backwards'

https://www.theguardian.com/technology/2026/apr/24/musk-grok-x-ai-researchers-delusional-advice-i...
2•iamflimflam1•50m ago•1 comments

Revived Mozilla's BrowserQuest game on popular demand play online for free

https://threej.in/games/browserquest/index.html
1•cryptpal•50m ago•0 comments

Why Did Huawei Build Its Own Programming Language? [video]

https://www.youtube.com/watch?v=ujpl5_TmAaE
2•melchizedek6809•52m ago•0 comments

Why TUIs Are Back

https://wiki.alcidesfonseca.com/blog/why-tuis-are-back/
1•vinhnx•55m ago•0 comments

BTC Pulse – 4-factor composite model · Bitcoin Real-time macro signals

https://btcpulse.vercel.app/
1•tvvocold•56m ago•0 comments

Online Signature Generator

https://www.online-unterschriftgenerator.de/
1•Hamaq•56m ago•0 comments

Who Killed Spirit Airlines?

https://www.thebignewsletter.com/p/who-killed-spirit-airlines
1•chmaynard•56m ago•0 comments

Word Clouds Considered Harmful (2011)

https://jacobharr.is/published/word-clouds
1•Tomte•58m ago•0 comments

Show HN: A modern Git based age-encrypted secrets manager for teams

https://github.com/sayanarijit/cottage
1•sayanarijit•58m ago•0 comments

Local-first Kubernetes UI in a single Go binary

https://github.com/skyhook-io/radar
7•nadaverell•59m ago•2 comments

Executable installer will stop being released with Python 3.16

https://www.python.org/downloads/release/pymanager-261/
4•ankitg12•1h ago•0 comments

Learning Pseudorandom Numbers with Transformers

https://arxiv.org/abs/2510.26792
2•pizza•1h ago•0 comments

Cajal – Local AI that writes peer-reviewed papers with simulated peer review

https://huggingface.co/Agnuxo/CAJAL-4B-P2PCLAW
1•Frank1976•1h ago•0 comments

Quantum computers will break RSA-2048 by February 2032

https://gagliardoni.net/#20260503_rsa_broken_2032
1•tomgag•1h ago•0 comments

Has anyone tried using Hyperframes?

https://github.com/heygen-com/hyperframes
1•nastrofa•1h 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!