frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Terraplane: webhook-based Terraform PRs with runners in your network

https://github.com/terraplane-org/terraplane
1•xyzjace•33s ago•0 comments

AI Sapiens K1

https://docs.robotis.com/docs/systems/aisapiens/introduction/
1•iamanatom•4m ago•0 comments

Measure the Queue, Not the Bot

https://amitkvint.com/writing/measure-the-queue-not-the-bot/
1•taubek•6m ago•0 comments

Sometimes the Fastest System Is the One Willing to Stop

https://www.amrishkhan.dev/blog/sometimes-the-fastest-system-is-the-one-willing-to-stop-5a6a
1•amrishkhan05•9m ago•0 comments

Swiss E-ID: Justice Minister Jans prevents secret Amazon deal

https://www.heise.de/en/news/Swiss-E-ID-Justice-Minister-Jans-prevents-secret-Amazon-deal-1143745...
2•kioleanu•10m ago•0 comments

The index was lying and the eval knew

https://gil-neto.com/blog/the-index-was-lying-and-the-eval-knew/
1•gilneto8•10m ago•0 comments

Show HN: An Autonomous Agent for Slay the Spire

https://github.com/AttemorySystem/spire-agent
1•langs•11m ago•0 comments

Show HN: I built a menu-bar app to give Claude access to your Apple macOS apps

https://www.pomeroy.app/
1•joesaunderson•11m ago•1 comments

Scientists Hunting Dark Matter Found Something Strange

https://www.nytimes.com/2026/09/01/science/dark-matter.html
1•jimmytucson•11m ago•2 comments

How to Make a PwC-Style PowerPoint with AI: A Practical Consulting Deck Guide

https://medium.com/@2315610426/how-to-make-a-pwc-style-powerpoint-with-ai-a-practical-consulting-...
1•chenxi030826•12m ago•0 comments

Simon Willison: How AI is changing software development [audio]

https://talkingpostgres.com/episodes/how-ai-is-changing-software-development-with-simon-willison/...
2•skm•13m ago•0 comments

The IBM PC, Part 2: Tsunami – Creatures of Thought

https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/
1•rbanffy•14m ago•0 comments

Turned a $15 eBay "smart NIC" nobody could get working into a real 10GbE card

https://github.com/nicologiuliani6/cavium-cn6640-snic10e-octeon-ii-nic
1•mchan•15m ago•0 comments

C Is Not a Low-Level Language

https://queue.acm.org/detail.cfm?id=3212479
2•tosh•15m ago•0 comments

Watch Netflix / Prime Video with display link in extended monitor

https://github.com/sayantan94/Chrome-Plugins/tree/main/displaylink-video-fix
1•sayantan317•16m ago•0 comments

Google Pics is generally available starting today

https://workspace.google.com/products/pics/
2•Nazzareno•18m ago•0 comments

What's in Your Agent's Context? Context Privilege Escalation Attacks Against AI

https://arxiv.org/abs/2609.01222
1•sbulaev•19m ago•0 comments

Years of AI History

https://pyyan.com/timeline
1•sajithamma•22m ago•0 comments

BDH-CQ: In-Context Learning with Recurrent Latent Reasoning

https://arxiv.org/abs/2608.09888
3•mdp2021•23m ago•1 comments

AI plotted an interstellar journey to Alpha Centauri

https://www.technologyreview.com/2026/09/01/1143247/ai-interstellar-journey-alpha-centauri/
1•joozio•24m ago•0 comments

XLS: Accelerated HW Synthesis by Google for ASIC/FPGA

https://github.com/google/xls
1•paaloeye•28m ago•0 comments

Van Eck Phreaking

https://en.wikipedia.org/wiki/Van_Eck_phreaking
1•thunderbong•28m ago•0 comments

OpenAI: Spinning Up in Deep RL

https://spinningup.openai.com/en/latest/
1•tosh•29m ago•0 comments

Mapping global methane emissions from space with Deep Learning

https://research.google/blog/mapping-global-methane-emissions-from-space-with-deep-learning/
1•xhevahir•30m ago•0 comments

CleanShot 5.0 with Screen Recording

https://cleanshot.com/screen-recording
1•chillax•30m ago•0 comments

Syria was building a nuclear reactor under Assad, UN reports

https://apnews.com/article/iaea-report-syria-nuclear-bashar-assad-b941d7d11da6fb8912ae2bed0b34cec2
1•geox•34m ago•0 comments

Show HN: Structure from Attention

https://mostlyk.substack.com/p/structure-from-attention
1•mostlyk•36m ago•0 comments

Meta's Muse Voice Transcribe handles real-time speech

https://forgeeks.net/meta-muse-voice-transcribe-release/
2•ledoncool•38m ago•0 comments

Qwen3.8-Max

https://www.qwencloud.com/models/qwen3.8-max-0902
2•Bluestein•39m ago•2 comments

Cutting LLM inference costs by 36% with prompt caching

https://www.neradot.com/post/cutting-inference-cost-36-percent-with-prompt-caching
1•lizakatz•39m 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!