frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A total solar eclipse will occur this summer. Everything you need to know

https://www.cnn.com/2026/06/06/science/total-solar-eclipse-path-august
1•tzury•2m ago•0 comments

An Absolutely Diabolical Phishing Email

https://twitter.com/thepatwalls/status/2060367488446017947
1•866-RON-0-FEZ•3m ago•0 comments

OpenCV 5.0 Released with Rewritten DNN Engine, Built-In LLM and VLM Support

https://www.phoronix.com/news/OpenCV-5.0-Released
1•daesorin•3m ago•0 comments

Ape: A New Vulkan Driver Written in the Zig Programming Language

https://www.phoronix.com/news/Vulkan-Ape-Driver
1•daesorin•5m ago•0 comments

Scientists Edit Human Embryo Genes with Startling Precision

https://www.nytimes.com/2026/06/04/science/embryos-gene-editing-crispr.html
1•birriel•6m ago•0 comments

Improving LM Studio's MLX Engine for Agentic Workflows

https://twitter.com/ostensiblyneil/status/2063006720616734835
1•tosh•9m ago•0 comments

There's a 137-Inch Bugatti TV Now, and It Folds

https://www.thedrive.com/news/theres-a-137-inch-bugatti-tv-now-and-it-folds
1•cf100clunk•10m ago•0 comments

Meshtastic Node Explained: Types, Range, Kits, and How to Choose the Best Setup

https://www.seeedstudio.com/blog/2026/03/17/meshtastic-node-guide/
2•RickJWagner•10m ago•2 comments

Computer Lessons

https://technicshistory.com/2026/06/06/computer-lessons/
1•cfmcdonald•13m ago•0 comments

Guardian 100 best novels (stats and errors)

https://mpaldridge.github.io/blog/guardian-novels.html
1•robin_reala•13m ago•0 comments

First Commodore PET sold, June 5, 1977

https://dfarq.homeip.net/first-commodore-pet-sold-june-5-1977/
3•erickhill•15m ago•0 comments

Show HN: Founder VC Horror Stories

https://rocketplace.org/stories
2•remarketme•15m ago•1 comments

K: Remarks on Style (1995) [pdf]

https://nsl.com/papers/style.pdf
1•tosh•16m ago•0 comments

Anthropic_API_key? Anthropic will bill your API account instead of your Max plan

https://old.reddit.com/r/ClaudeAI/comments/1tbaq2d/psa_if_your_project_has_an_anthropic_api_key_in/
2•behnamoh•18m ago•1 comments

DokuWiki Markdown Support

https://www.patreon.com/posts/dokuwiki-support-158080793
1•Tomte•20m ago•0 comments

Event Horizon – a Pihole Companion for non-technical network users

https://old.reddit.com/r/pihole/comments/1q25ekd/introducing_event_horizon_a_pihole_companion_for/
1•taubek•21m ago•0 comments

Reassemble

https://web.archive.org/web/20150311174405/https://web.stanford.edu/class/cs107/assign1.html
1•tosh•22m ago•0 comments

Show HN: How to do outpainting (canvas expansion) on an image [video]

https://www.youtube.com/watch?v=5Cq_grMKKj8
1•julienreszka•22m ago•0 comments

Restoring axon plasticity:chemogenetic activation saves autism-related behaviors

https://www.nature.com/articles/s41419-026-08873-0
2•bookofjoe•23m ago•0 comments

Rationales for Standards

https://www.thomas-huehn.com/rationales-for-standards/
2•Tomte•25m ago•0 comments

Baby botulism outbreak: FDA still doesn't know cause–or how to prevent it

https://arstechnica.com/health/2026/06/baby-botulism-outbreak-fda-still-doesnt-know-cause-or-how-...
1•Brajeshwar•26m ago•0 comments

Are Memories Transferable – Or Edible?

https://www.quantamagazine.org/are-memories-transferable-or-edible-20260605/
2•Brajeshwar•27m ago•0 comments

Show HN: Ccgs – Collaborative Claude Code sessions, stored in Git branches

https://github.com/ingram-technologies/claude-git-sessions
3•scrollaway•27m ago•0 comments

Protein name confusion created antibody mix-up affecting papers

https://www.science.org/content/article/protein-name-confusion-created-antibody-mix-affecting-hun...
2•Brajeshwar•27m ago•0 comments

Stealth Isn't Strategy: Post-Stealth Warfare a "Dirty Mix" of Humans and Robots

https://www.militarystrategymagazine.com/exclusives/stealth-isnt-strategy-post-stealth-warfare-wi...
2•anjel•30m ago•0 comments

Slopper GitHub Action: Fighting AI Slop Contributions on Open Source Projects

https://github.com/malvads/Slopper
1•malvads•33m ago•0 comments

You Can Run

https://magazine.atavist.com/2026/mccann-cocaine-fugitives
2•bryanrasmussen•36m ago•0 comments

The fourth law (on AI-generated supercustomized email marketing)

https://www.robinsloan.com/lab/fourth-law/
1•brandur•36m ago•0 comments

We have decided to make our service FREE. (Bloomberg Terminal for Everyone)

https://www.bullbear.ninja/notes/everything-free-ad-supported
2•haebom•37m ago•1 comments

Claudemux – Run and coordinate multiple Claude Codes reliably

https://github.com/wastedcode/claudemux
1•zeppelin_7•37m 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•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!