frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

800 Canadian wildfires burning as air quality alerts extend to US

https://www.bbc.com/news/articles/c0m7n427xd8o
1•geox•42s ago•0 comments

GenCeption: Video Generation Models Are General-Purpose Vision Learners

https://genception.github.io/
1•zzulanas•1m ago•0 comments

Show HN: Leaves – a text-UI disk usage treemap visualizer

https://github.com/patonw/leaves
1•patonw•1m ago•0 comments

NASA Never Said Sanskrit Was the Best Programming Language

https://medium.com/@datavector/nasa-never-said-sanskrit-was-the-best-programming-language-7d08d7e...
1•momentmaker•1m ago•0 comments

Show HN: Traceforce (YC S26) – Secure AI apps, one device at a time

1•xiahua26•2m ago•0 comments

Show HN: I built an open source alternative to Workflowy

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

AppLess – Generative UI at 1800 tokens per sec

https://github.com/thesysdev/appless
1•zahlekhan•3m ago•0 comments

The rate at which Earth is absorbing energy is alarming climate scientists

https://www.economist.com/science-and-technology/2026/07/15/the-rate-at-which-earth-is-absorbing-...
1•doubleg•4m ago•1 comments

SnippAI – Screenshot, speak, straight into your Claude Code session

https://snippai.dev
1•brothaakhee•7m ago•1 comments

Akamai (Linode) Changed How It Bills New Compute – What It Meant for Our Dataset

https://webbynode.com/articles/akamai-changed-how-it-bills-new-compute-this-month-july-2026-heres...
1•gsgreen•7m ago•0 comments

Pong Wars on the Commodore 64

https://imrannazar.com/articles/c64-pongwars
1•homarp•8m ago•1 comments

Slashfriends – A Directory of /Friends Pages

https://slashfriends.org/
1•herbertl•10m ago•0 comments

#1 Standup on my projet progress

https://twitter.com/ab44997/status/2077782776275718429
1•atomiomi•11m ago•1 comments

Show HN: Open-source AI app builder you can embed into your own SaaS

https://github.com/totalumlabs/ai-app-builder-open
1•francescjuille•12m ago•0 comments

Show HN: PokeTokenBar – Raise a Pokémon with your AI token usage

https://github.com/chattymin/PokeTokenBar
1•chattymin•16m ago•1 comments

Chip Motors

https://chipmotors.com/
1•skadamat•17m ago•0 comments

Everything I googled in a week as a professional software engineer (2019)

https://localghost.dev/blog/everything-i-googled-in-a-week-as-a-professional-software-engineer/
1•downbad_•18m ago•0 comments

Ubuntu Kernel Team Warns of Temporary AMD GPU Performance Regression Up to 42x

https://www.phoronix.com/news/Ubuntu-7.0-AMDGPU-Regress
3•dabinat•19m ago•0 comments

Financial advice I can give you is to sell your car

https://yourbrainonmoney.substack.com/p/the-best-financial-advice-i-can-give
2•herbertl•19m ago•0 comments

Reducing Layer Overhead in LBSE

https://blogs.igalia.com/nzimmermann/posts/2026-07-14-lbse-conditional-layers/
2•ksec•20m ago•0 comments

Ask HN: Best meeting transcription daemon for macOS?

1•tomelliot•20m ago•0 comments

Google Earth Desktop Client to Be Retired in 2027

https://hackaday.com/2026/07/16/google-earth-desktop-client-to-be-retired-in-2027/
2•anonymousiam•21m ago•0 comments

I auto-published 2,300 AI articles and Google buried 90% of my traffic

https://martin-schenk.es/blog/2300-ai-articles-google-buried-my-traffic/
1•martin_schenk•23m ago•0 comments

What would a rainbow be like on Tatooine? [video]

https://www.youtube.com/watch?v=BO8rOs05v48
1•arbesman•24m ago•0 comments

Building a High Performance Order matching system from scratch

https://harshiyer.in/blog/farzi-exchange
1•proximuz•25m ago•0 comments

Yann LeCun on AMI Labs, JEPA, and the AI World of 2030

https://nebius.science/stories/meet-yann-lecuns-lab-and-the-ai-world-of-2030?shem=rimspwouohc,
2•natali_gray•26m ago•0 comments

Show HN: Token Gobbler – the goofy game where you're the LLM

https://tokengobbler.vercel.app/
1•dschwede•26m ago•0 comments

Launching vorfluxai: The autopilot for software engineering

https://twitter.com/myprasanna/status/2077069901546852688
1•samaysharma•27m ago•0 comments

Show HN: A commerce Network built on UCP for agents to discover and Pay

https://kifly.ai
1•roberttk1•28m ago•1 comments

Stateless API middleware to auto-throttle digital menus based on live POS volume

https://eighty6ai.onrender.com/index.html
1•jayaindran4•28m 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!