frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Frontier Engineering

https://kiro.dev/topics/frontier-engineering/
1•emersonmacro•9m ago•0 comments

Nscale S-1 IPO

https://www.sec.gov/Archives/edgar/data/2110365/000119312526395475/ck0002110365-20260918.htm
2•marc__1•9m ago•0 comments

Why fitting a logistic is nearly impossible from early data

https://www.johndcook.com/blog/2026/09/18/logistic-fit-sensitivity/
1•ibobev•10m ago•0 comments

How did Apple Silicon get 50% faster in three years? – Daniel Lemire's blog

https://lemire.me/blog/2026/09/19/how-did-apple-silicon-get-50-faster-in-three-years/
1•ibobev•11m ago•0 comments

Show HN: Rubrol – Sub-10ms PDF engine using Typst instead of Headless Chrome

https://rubrol.com/
1•halfradaition•11m ago•0 comments

Notes on discrete-time Fourier series and transform

https://eli.thegreenplace.net/2026/notes-on-discrete-time-fourier-series-and-transform/
1•ibobev•12m ago•0 comments

Show HN: Jev-align, a CLI to calibrate Jev to your judgement

https://github.com/sutro-sh/jev-align
1•sethkim•14m ago•0 comments

Claudecookie – convert, check, and mint Claude Code credentials from a cookie

https://claudecookie.com/
1•matt_hollins•16m ago•0 comments

Authenticity's Triumph

https://blog.smalleycreative.com/authenticitys-triumph/
1•stuntmachine•17m ago•0 comments

Can you tell which images are AI-generated?

https://slop-sense.labtoagi.com/games/is-this-image-ai/
1•hckr78•17m ago•0 comments

Relation Algebra ≠ Relational Algebra

https://remy.wang/blog/ra-ra.html
1•remywang•17m ago•0 comments

An open source roguelike adventure through dungeons

https://crawl.develz.org/
1•Bluestein•24m ago•0 comments

AI in schools – The choice we keep making

https://friendsschoolboulder.org/the-choice-we-keep-making/
1•MetallicCloud•24m ago•0 comments

OneZoom: Tree of Life Explorer

https://www.onezoom.org/
1•thunderbong•27m ago•0 comments

Tadao Ando Designed&Donated a Floating Library That Delivers Books to Children

https://spoon-tamago.com/tadao-ando-kagawa-floating-library/
1•bookofjoe•28m ago•0 comments

Ask HN: Anyone using DeepSeek Harness (dsh) as part of a customer-facing agent?

1•mmartindevelope•33m ago•0 comments

Joy's Law (Management)

https://en.wikipedia.org/wiki/Joy%27s_law_(management)
1•brewmarche•34m ago•0 comments

Academic Doomerism

http://muratbuffalo.blogspot.com/2026/09/academic-doomerism.html
1•zdw•38m ago•0 comments

Communicating schwa is impossible in written English

https://ashishb.net/linguistics/schwa/
2•ashishb•38m ago•0 comments

Research that compiles: typed claims, conflict detection and next actions

https://grainulator.app/playground/
3•aid-ninja•39m ago•1 comments

PyPy v8.0.0 Release

https://pypy.org/posts/2026/09/pypy-v800-release.html
2•lumpa•39m ago•0 comments

Humanism Without (All) Humans

https://contraptions.venkateshrao.com/p/humanism-without-all-humans
1•zdw•40m ago•0 comments

Semantic end-to-end agent testing for iOS, Android, and web using Jev

https://www.tryconvoy.xyz
1•gokulnair2001•43m ago•1 comments

India Outsourcing Shifts Upmarket as AI Reshapes Jobs, ING Says

https://www.bloomberg.com/news/articles/2026-09-17/india-outsourcing-shifts-upmarket-as-ai-reshap...
1•porridgeraisin•43m ago•1 comments

V Language Review (2023)

https://n-skvortsov-1997.github.io/reviews/
2•lr0•43m ago•0 comments

An old systems problem with a new AI twist: data movement

https://twitter.com/nk_developer1/status/2101028456083677524
2•limestoneai•44m ago•0 comments

Show HN: I am vibe coding a drone

https://ai-eng-design-production.up.railway.app/login
1•couAUIA•48m ago•0 comments

Show HN: CAS-X – An automated compliance matrix for the Amaya Axioms (v5.0)

1•richardaamaya•48m ago•0 comments

Politician's Syllogism

https://en.wikipedia.org/wiki/Politician%27s_syllogism
1•shmistory•50m ago•0 comments

Engineering for Slow Internet (2024)

https://brr.fyi/posts/engineering-for-slow-internet
2•initramfs•53m 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!