frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Data Compression Explained

https://mattmahoney.net/dc/dce.html
1•mtdewcmu•25s ago•0 comments

I Built Our Data Lake on DynamoDB Streams Instead of Kafka

https://medium.com/@yalovoy/i-built-our-entire-data-lake-on-dynamodb-streams-instead-of-kafka-218...
1•zero-ground-445•28s ago•0 comments

The Rain Spell

https://notas.grod.es/the-rain-spell
1•grodes•4m ago•0 comments

OpenAI's leaked financials reveal soaring losses as it prepares to go public

https://groups.google.com/a/netflix.com/g/ios-ui-kickoffs/c/772e4-hycBE
1•andsoitis•6m ago•2 comments

DOJ assists Musk's xAI in NAACP air pollution suit, asks court to toss case

https://www.cnbc.com/2026/06/16/usdepartment-of-justice-calls-for-dismissal-of-naacp-xai-lawsuit-...
1•ChrisArchitect•7m ago•0 comments

Workday isn't 75% of the ATS market. I checked 337 companies

https://withresumeai.com/blog/workday-ats-market-share-myth-2026
1•kzahiri•7m ago•0 comments

Drone Physics

https://iahmed.me/post/drone-physics/
3•hazrmard•11m ago•0 comments

Show HN: Steam City – Your Steam game library as a 3D city

https://thesteamcity.com
1•m1rsh0•12m ago•0 comments

Welcoming Our Newest Core Team Members

https://ziglang.org/news/welcoming-new-team-members/
1•yurivish•12m ago•0 comments

Swift-OS – operating system written in Embedded Swift for aarch64

https://github.com/asaptf/swift-os/tree/main
1•de_aztec•14m ago•0 comments

Eno – General Purpose Humanoid Robot

https://www.genesis.ai/
1•cheeko1234•15m ago•0 comments

UK Government Goes All-In on Digital Surveillance, Censorship and Control

https://www.nakedcapitalism.com/2026/06/the-uks-most-unpopular-government-on-record-just-went-all...
4•boticello•17m ago•1 comments

Software Is Not a Single-Player Game

https://www.davidpoll.com/2026/06/software-is-not-a-single-player-game/
2•depoll•17m ago•0 comments

How to Demolish a Bridge [video]

https://www.youtube.com/watch?v=7oi4yMr8Rjk
1•mhb•22m ago•0 comments

Ten Years of Just (and Lists)

1•rodarmor•23m ago•0 comments

Seattle Underground

https://en.wikipedia.org/wiki/Seattle_Underground
1•axelfontaine•25m ago•0 comments

AMD Pulls Memory Encryption from Ryzen CPUs

https://www.technology.org/2026/06/16/amd-strips-memory-encryption-consumer-ryzen-cpus/
4•KAMSPioneer•26m ago•0 comments

Update: Acabei de abrir O SDK no GitHub → github.com/mathhMadureira/orka

1•matteusmadu•28m ago•0 comments

The Battle with Anthropic Is the Start of a New Kind of Conflict

https://www.nytimes.com/2026/06/16/opinion/anthropic-fable-ai-trump-administration.html
1•furcyd•30m ago•0 comments

I built a fail-closed execution gate for AI agents

https://kronyqldemo.netlify.app/demo/ase-proof
1•Auditome•31m ago•0 comments

Total Iran Economic Damage Estimate

https://www.fdd.org/analysis/2026/04/23/total-iran-economic-damage-estimate/
4•littlexsparkee•33m ago•0 comments

Qode – The first AI agent that can generate 50k line codebases in one prompt

https://github.com/akshaylakkur/Q
1•akshayl284•34m ago•1 comments

Silicon Motion exec: Retail SSD market has almost disappeared

https://www.tomshardware.com/pc-components/ssds/the-retail-ssd-market-has-almost-disappeared-says...
7•Lihh27•39m ago•0 comments

Guardrails for Reuse in AI from ClimateSOS Foundational Charter

1•safiume•39m ago•0 comments

An Interview with Eugene Jarvis of Robotron, Defender and Stargate Fame

https://www.gamedeveloper.com/production/eugeneology-an-interview-with-eugene-jarvis
1•evo_9•42m ago•0 comments

VibeThinker-3B achieves 80.2 on LCBv6

https://twitter.com/WeiboLLM/status/2066870851841274249
4•moondistance•43m ago•1 comments

Mathup

https://mathup.xyz/
1•runarberg•43m ago•0 comments

GLM-5.2: Frontier Intelligence, Open Weights

https://twitter.com/Zai_org/status/2066938937344495629
6•zixuanlimit•45m ago•1 comments

Hacking group claims major hack of Novo Nordisk and attempted $25M extortion

https://www.reuters.com/legal/government/hacking-group-claims-major-hack-novo-nordisk-attempted-2...
4•nnmg•45m ago•0 comments

Anthropic "pauses" token-based billing for its Claude Agent SDK

https://arstechnica.com/ai/2026/06/anthropic-pauses-token-based-billing-for-its-claude-agent-sdk/
3•cdrnsf•45m 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!