frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Babies should not use screens at all in the first two years, major review finds

https://www.euronews.com/health/2026/07/02/babies-should-not-use-screens-at-all-in-the-first-two-...
1•Markoff•40s ago•0 comments

Show HN: Arda Translate, free private on-device (iOS) translation

https://apps.apple.com/us/app/arda-translate/id6778970560
1•cjjuice•1m ago•0 comments

Ask HN: What is the best version of full Linux in the browser?

1•smalltorch•1m ago•0 comments

Show HN: An interactive, interlinked city exploration project (St. Louis)

https://stlouing.com/
1•stlouing•3m ago•0 comments

Deploying Python serverless functions to Scaleway

https://codeberg.org/soup-dev/scaleway-serverless-python
1•MirceaOprea•4m ago•1 comments

Januscape: Guest-to-Host Escape in KVM/x86 (CVE-2026-53359)

https://openwall.com/lists/oss-security/2026/07/06/7
1•aberoham•6m ago•0 comments

Why 3D TVs failed and the trouble with 3D in Hollywood

https://www.engadget.com/2206391/why-3d-tvs-failed/
2•bookofjoe•10m ago•1 comments

Cirrus Introduces the TRAC10: A Purpose-Built Aircraft for Flight Training

https://cirrusaircraft.com/story/cirrus-trac10/
1•lisper•10m ago•0 comments

How to call Linux code from a Wine process

https://arcanenibble.com/how-to-call-linux-code-from-a-wine-process.html
1•TazeTSchnitzel•11m ago•0 comments

I Survived Europe's Heat Wave Without AC

https://reason.com/2026/06/29/i-survived-europes-heat-wave-without-ac-no-thanks-to-regulation/
1•mancerayder•13m ago•0 comments

Threadplane: Angular agent UI framework graded A for supply-chain trust

https://threadplane.ai/blog/threadplane-earns-grade-a-hvtrust
1•brian_love•13m ago•0 comments

Simple AI agent in POSIX shell

https://github.com/patrickjh/ssa
1•pianopatrick•14m ago•1 comments

Linux on the Atari Jaguar. No, really.

https://cakehonolulu.github.io/linux-for-jaguar/
1•cakehonolulu•15m ago•1 comments

kinopio.club

https://kinopio.club
1•helloplanets•16m ago•0 comments

List of Screw Drives

https://en.wikipedia.org/wiki/List_of_screw_drives
1•tosh•17m ago•0 comments

VeriRedact – Redact sensitive PDFs and photos in seconds

https://veriredact.com/
1•amscotti•17m ago•0 comments

Show HN: Grinta –local-first AI coding agent that passed 106-minute stress test

https://github.com/josephsenior/Grinta-Coding-Agent
1•JosephSenior•18m ago•0 comments

I bundled a few regex sidecars into a regex app to fix the "works on my machine"

https://regexpilot.com/
1•stofke72•19m ago•1 comments

Trust and Safety Remotely: Shared Threat Models

https://tgthorley.com/blog/f/trust-safety-remotely-shared-threat-models
2•mooreds•21m ago•1 comments

Meteor 3.5 is out: Change Streams and Performance improvements

https://forums.meteor.com/t/meteor-3-5-is-out-change-streams-performance-improvements/64461
1•y7r4m•23m ago•0 comments

Pros and Cons of Solo Development

https://johnjeffers.com/pros-and-cons-of-solo-development/
31•johnj-hn•26m ago•5 comments

Companies hire more after AI adoption

https://ramp.com/data/heavy-ai-adopters-hire-more
2•mooreds•26m ago•0 comments

Google pulls the plug on Tenor API, killing GIF pickers around the web

https://9to5google.com/2026/06/30/google-tenor-api-gif-updates/
2•mooreds•27m ago•1 comments

Adding SEO fields to your Filament resources in 5 minutes

2•umun•27m ago•0 comments

The only volume stabilizer with a human touch

https://sites.google.com/view/adbuster-winapp
2•Bo_Amigo_910•27m ago•1 comments

What Is Partiful Selling?

https://www.theverge.com/report/960635/partiful-app-event-planning-data-palantir
3•aarvin_roshin•27m ago•0 comments

OpenWrt One – Open Hardware Router

https://openwrt.org/toh/openwrt/one
37•peter_d_sherman•27m ago•9 comments

Germany suspends Cispa cybersecurity director over China technology transfer

https://www.upday.com/uk/germany-suspends-cispa-cybersecurity-director-over-china-technology-tran...
3•titaniumrain•28m ago•0 comments

Show HN: Skeights – Serialize sklearn models to safetensors and JSON, no pickle

https://github.com/carbon-re/skeights
3•alxhslm•32m ago•0 comments

Claude has the worst pricing – but people want it

3•amukbils•34m ago•2 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!