frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hand Gesture Verification Captcha by Google

https://docs.cloud.google.com/recaptcha/docs/hand-gesture-verification
1•hmokiguess•49s ago•0 comments

German court holds Google liable for fake AI answers

https://www.dw.com/en/german-court-holds-google-liable-for-fake-ai-answers/a-77527661
1•Topfi•1m ago•0 comments

Wolfram Mathematica 15

https://www.wolfram.com/mathematica/quick-revision-history/
1•rubin55•1m ago•0 comments

Acquire a Inexpensive Computer During This Time of Historically High Prices

https://cheapskatesguide.org/articles/low-priced-hardware.html
1•worldofmatthew•2m ago•0 comments

Autonomous Long-Running Coding Agents

https://nlp.elvissaravia.com/p/autonomous-long-running-coding-agents
1•omarsar•3m ago•0 comments

Show HN: I built an email agent for founders who are stuck in email

https://www.dirac.app/
1•Peterz_shu•3m ago•0 comments

Jax: Commitment Issues

https://www.gilesthomas.com/2026/06/jax-commitment-issues
1•gpjt•8m ago•0 comments

Tired of chaos, investors retreat from oil market at record pace

https://www.reuters.com/business/energy/tired-chaos-investors-retreat-oil-market-record-pace-2026...
1•mriet•9m ago•1 comments

TerraWatch,GitHub App that scans Terraform PRs and posts exact fix in comment

https://terrawatch.dev
1•alejny•9m ago•0 comments

Is it feasible to self host OSS EU productivity suite? [A Mijn Bureau Review]

https://techstackups.com/articles/is-it-feasible-to-self-host-an-open-source-eu-sovereign-product...
1•sixhobbits•11m ago•0 comments

The WWII Invention That Changed Simulation Forever

https://www.halldale.com/defence/the-forgotten-wwii-invention-that-changed-simulation-forever
1•e12e•12m ago•0 comments

B-52 bomber crashes shortly after takeoff at California's Edwards Air Force Base

https://www.cnn.com/2026/06/15/us/b-52-crash-edwards-california
5•bluedino•14m ago•0 comments

Open Sourcing dbt's latest feature

https://github.com/orchestra-hq/sao-paolo
1•HugoLu88•14m ago•1 comments

The UKs Smartphone Nude Filter Plan Is Insane

https://worldofmatthew.com/blog/nudefilter/
1•worldofmatthew•16m ago•0 comments

'The Phoenix' magazine to cease publication

https://www.independent.ie/business/irish-business/the-phoenix-magazine-to-cease-publication/a/15...
2•austinallegro•17m ago•0 comments

Show HN: Transpilatron – an AI tool that converts Python code into C binaries

https://github.com/NoodlixProject/transpilatron
2•johnnytech•17m ago•0 comments

Commander Keen Games (free book)

https://forgottenbytes.net/
2•tzury•18m ago•0 comments

Clojure is almost as fast as C (with some help)

https://ertu.dev/posts/4_clojure-reaching-c-performance/
2•ertucetin•19m ago•0 comments

The Grain of Thought

https://asker.dev/grain-of-thought
2•caminmccluskey•19m ago•1 comments

I built a chess trainer. Looking for beta testers

https://chesstrain.net
2•Blaskooo•20m ago•0 comments

Anthropic pauses credit change for Claude Code

5•fabianlindfors•20m ago•0 comments

Show HN: All 194 YC Spring 2026 startups scored from public data

https://fluenta.space/resources/reports/yc-spring-2026-batch-scored
2•OlegIvanov•20m ago•0 comments

US battery manufacturing output continues to break records

https://fred.stlouisfed.org/series/IPG33591S
10•epistasis•20m ago•0 comments

We built a PaaS that survives AWS region outages by default

https://platform.kubernetix.ai
2•iamafounder•21m ago•0 comments

Show HN: Does a vibe leak? Fine-tuning an LLM on an attitude it never states

https://github.com/leo-dcfa/ai-latent-bias-transfer
2•neurodivergent•22m ago•0 comments

Kedgr – AI code scanner that never stores your source code

2•kedgr•23m ago•0 comments

JWT Decoder

https://fusionauth.io/docs/dev-tools/jwt-decoder
2•mooreds•24m ago•0 comments

Gen Z Doesn't Trust Anyone

https://www.graphsaboutreligion.com/p/gen-z-doesnt-trust-anyone
3•toomuchtodo•24m ago•2 comments

June 2026 Stealer Logs Data Breach

https://haveibeenpwned.com/Breach/June2026StealerLogs
2•sanqui•24m ago•0 comments

Show HN: Macro – unified system for email, chat, tasks, docs, agents (AGPL/Rust)

https://github.com/macro-inc/macro
5•jbecke•24m 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!