frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Tick That Hunts Down Its Hosts–Including Us

https://www.newyorker.com/magazine/2026/07/06/the-tick-that-hunts-down-its-hosts-including-us
1•randycupertino•1m ago•0 comments

Venice's access fee doesn't reduce tourism: it selects who can afford it

https://andreafontana.it/en/venice-entry-ticket-overtourism.html
1•trikko•2m ago•0 comments

Microsoft commits $2.5B, 6k employees AI implementation unit

https://www.cnbc.com/2026/07/02/microsoft-commits-2point5-billion-6000-employees-ai-implementatio...
1•rbanffy•2m ago•0 comments

Quantum-Augmented Databases Study Aims to Break Bottlenecks Slowing Data Systems

https://viterbischool.usc.edu/news/2026/07/toward-quantum-augmented-databases-new-usc-study-could...
1•rbanffy•2m ago•0 comments

Brazilian woman held as a slave for 38 years (2021)

https://www.dw.com/en/brazilian-woman-held-as-a-slave-for-38-years/a-56177797
1•toilet•2m ago•0 comments

Human settlement of East Polynesia coincident with prolonged S. Pacific drought

https://www.pnas.org/doi/10.1073/pnas.1920975117
1•janalsncm•5m ago•0 comments

Welcome to the Modern World. Is The Most Unhelpful Thing You Can Say to a Dev

https://codemonkey.studio/welcome-to-the-modern-world-why-that-might-be-the-most-unhelpful-thing-...
1•rmason•5m ago•0 comments

Brain-inspired hardware brings faster, low-power anomaly detection to AI systems

https://techxplore.com/news/2026-07-brain-hardware-faster-power-anomaly.html
1•rbanffy•6m ago•0 comments

I built a domain name discovery tool I don't hate

https://domaame.com
1•cybrjoe•6m ago•1 comments

Meta's AI Glasses Will Activate the Camera Without the Camera Indicator Light

https://www.privacyguides.org/news/2026/07/13/the-next-version-of-metas-ai-glasses-will-activate-...
1•Cider9986•6m ago•0 comments

Evelyn Berezin: instamatic for UAL, then first word processor

https://www.invent.org/inductees/evelyn-berezin
1•stmw•8m ago•0 comments

Apple sues OpenAI after ex-engineer allegedly used bug to steal trade secrets

https://arstechnica.com/tech-policy/2026/07/apple-sues-openai-after-ex-engineer-allegedly-used-bu...
1•bookmtn•8m ago•0 comments

New York City's chief technologist launches team to transform city's technology

https://www.fastcompany.com/91571965/new-york-citys-chief-technologist-is-launching-a-new-team-to...
1•hn_acker•10m ago•1 comments

Department of War Suspends CMMC Phase II Requirements

https://www.war.gov/News/Releases/Release/Article/4542329/forging-the-arsenal-of-freedom-departme...
2•ckrailo•13m ago•0 comments

We gave open models root on broken servers and graded them on the machine

https://glassmkr.com/blog/open-model-ladder-blind-remediation
1•glassmkr•18m ago•0 comments

Making Fable Cheaper Than Opus

https://cognition.com/blog/making-fable-cheaper-than-opus
1•aarvin_roshin•20m ago•0 comments

Harness Engineering for Self-Improvement – Lil'Log

https://lilianweng.github.io/posts/2026-07-04-harness/
1•haritha1313•22m ago•0 comments

Measuring Agents in Production – ICML

https://arxiv.org/abs/2512.04123
1•haritha1313•24m ago•0 comments

Web Client SDK

1•atoapaymentsapp•25m ago•0 comments

Coluber: Language Written in Nim. Speaks Nim, C, Vlang, Python, and JavaScript

https://codeberg.org/distantfar/coluber
1•baranul•27m ago•0 comments

Consumer Resources – CFPB

https://www.consumerfinance.gov/consumer-tools/
1•enjoyyourlife•28m ago•0 comments

V. vulnificus infection has extreme mortality and lacks a treatment protocol

https://en.wikipedia.org/wiki/Vibrio_vulnificus
1•burnt-resistor•28m ago•0 comments

Just Let Me Write Digits

https://gendx.dev/blog/2026/07/13/input-digits.html
1•gendx•28m ago•0 comments

AI buildout poses latest inflation threat

https://apnews.com/article/ai-inflation-federal-reserve-434f02e62a02f9b92e57995d9375df57
3•billybuckwheat•30m ago•1 comments

Show HN: GrindProof – accountability app that roasts your plan-vs-reality gap

https://www.grindproof.co/
1•Codefred•30m ago•0 comments

Apple Plans AirPods-Like Pairing for Meta's Glasses and Quest

https://www.macrumors.com/2026/07/13/apple-plans-airpods-like-pairing-for-meta/
1•nate•31m ago•0 comments

ARPA-H launches $160M effort to develop custom gene editing drugs

https://www.statnews.com/2026/07/09/arpa-h-160-million-custom-gene-editing-funding-rare-disease/
2•brandonb•32m ago•0 comments

I Found the Data Source for Insider Trading

https://insidertradealerts.com/
1•Chrisbabayans1•32m ago•1 comments

A decade of Cloudflare in production: 50 products rated

https://orangecloud.report/
4•CherryJimbo•36m ago•0 comments

What Is Class?

https://www.peoplespolicyproject.org/2026/07/12/what-is-class/
2•g0xA52A2A•36m 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!