frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Pqp, an open-source Discord alternative with watch parties

https://github.com/rafaelcg/pqp
1•rafgg•3m ago•0 comments

Ctenophores: Wonders of Biology

https://www.quantamagazine.org/ctenophores-arent-just-beautiful-theyre-biological-wonders-20260916/
1•randomImmigrant•5m ago•0 comments

Understanding Why You'd Use Effect TS

https://cm.xyz/blog/understanding-why-youd-use-effect-ts
1•handfuloflight•6m ago•0 comments

Show HN: Spendalyst – tells you when a recurring charge changes price

https://app.spendalyst.com/demo
1•Fsmith10•8m ago•0 comments

CV Forge – tailor your resume to any job with AI

https://shop.lumnika.com/compliancesnap/
1•deusautoai725•11m ago•0 comments

Where Rust Ends and the Kernel Begins

https://cacm.acm.org/blogcacm/where-rust-ends-and-the-kernel-begins/
1•sohkamyung•13m ago•0 comments

Mission Kit

https://missionkit.io/
1•dadado•16m ago•1 comments

Evaluating S2S Model Quality with Human Preference Data

https://research.withdavid.ai/blog/st-s2s-eval
1•EliasLittle•21m ago•0 comments

"Start with a Monolith" Was Good Advice. AI Is Changing That

https://medium.com/scalar-engineering/architecture-in-the-ai-era-part-1-summary-start-with-a-mono...
1•feeblefakie•22m ago•1 comments

Snap launches $2,195 Specs smart glasses

https://finance.yahoo.com/technology/article/snap-launches-2195-specs-smart-glasses-234000058.html
2•geoffbp•23m ago•0 comments

DeepSeek-v4.1 Flash: Pushing the Limits of KV Cache Compression

https://zartbot.github.io/blog/model_arch/dsv41flash_arch/en.html
2•mfiguiere•24m ago•0 comments

What regulatory capture actually looks like

https://marginalrevolution.com/marginalrevolution/2026/09/what-regulatory-capture-actually-looks-...
1•maxutility•24m ago•0 comments

Tin: full-text search for Postgres

https://planetscale.com/blog/introducing-tin
1•gtCameron•29m ago•0 comments

Part-human part-mouse brain developed in science breakthrough

https://www.bbc.com/news/articles/c60m3k28j81mo
2•marc__1•30m ago•0 comments

Show HN: FastRecall, ultra-cheap memory across AI models

https://fastrecall.ai/
1•tomrose•32m ago•0 comments

Michael Burry slams OpenAI, Anthropic for 'self-serving' calls to slow AI

https://nypost.com/2026/09/14/business/big-short-trader-michael-burry-slams-openai-anthropic-for-...
6•nsagent•33m ago•0 comments

Spanish data watchdog publicises first AI agent-linked data breach report

https://www.reuters.com/business/spanish-data-watchdog-publicises-first-ai-agent-linked-data-brea...
2•geoffbp•35m ago•0 comments

Xcode-Project-Format

https://github.com/apple/xcode-project-format
2•interpol_p•35m ago•0 comments

Flowchart: How pixels become an Apple Reference Image

https://claude.ai/artifact/BcyyGRDRimvZgza7d9ts1c
1•alwillis•42m ago•0 comments

Supply Chain Compromise of Korean-Language Windows 11 Installation Media

https://www.logpresso.com/en/blog/2026-09-08-windows11-report-eng
2•ledoge•48m ago•1 comments

Pangram – AI detector for text and images

https://www.pangram.com
1•doodlesdev•50m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
3•abraham•51m ago•1 comments

Game UI Database

https://www.gameuidatabase.com
2•andsoitis•54m ago•0 comments

Found a B2B billing stack for my agency that doesn't feel like 2010

https://cordhq.app/
1•andrevalleo•54m ago•0 comments

Pro UI: native grade components for pro software

https://pro-ui.dev/
2•handfuloflight•55m ago•0 comments

Page Shield ML caught 4 storefront malware campaigns scanners missed

https://blog.cloudflare.com/client-side-security-finds-4-malicious-campaigns/
2•iamsyr•55m ago•0 comments

Why the Postpandemic Tech Bust Sent Billionaires to Trump

https://www.wired.com/story/against-tech-oligarchy-book-excerpt-trump-billionaries/
3•jacobolus•56m ago•0 comments

Hacker puts 'full redundancy' code-hosting firm out of business (2014)

https://www.pcworld.com/article/439918/hacker-puts-full-redundancy-codehosting-firm-out-of-busine...
1•doodlesdev•1h ago•0 comments

OpenAI Discloses Six New Incidents of ‘Concerning’ A.I. Behavior

https://www.nytimes.com/2026/09/16/technology/openai-model-safety-guardrails.html
32•jbegley•1h ago•19 comments

Math challenges a 2k-year-old story about Parthenon's optical illusions

https://phys.org/news/2026-09-mathematician-year-legend-parthenon-optical.html
1•wglb•1h 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!