frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Neural Correlates of Envy and Schadenfreude

https://www.science.org/doi/10.1126/science.1165604
1•toomuchtodo•38s ago•1 comments

One Lib to Rule Them All: Why we build oneringai open source agentic AI library

https://medium.com/superstringtheory/one-library-to-rule-them-all-why-we-built-oneringai-689f9048...
1•jhoxray•38s ago•0 comments

Issues with "C99 implementation of new O(m log^(2/3) n) shortest path algorithm"

https://github.com/danalec/DMMSY-SSSP/issues/1
1•dunmalg•5m ago•0 comments

The Future of Social Media Is Human

https://blog.picheta.me/post/the-future-of-social-media-is-human/
1•dom96•5m ago•0 comments

AWS suffered 'at least two outages' caused by AI tools

https://www.tomsguide.com/computing/aws-suffered-at-least-two-outages-caused-by-ai-tools-and-now-...
1•randycupertino•5m ago•1 comments

Show HN: MachineAuth:open source Google login for your AI Agent

https://github.com/mandarwagh9/MachineAuth
2•mandarwagh•6m ago•0 comments

Is this cloud/local boundary for trading infra reasonable?

1•Sultan_Custodia•6m ago•0 comments

Zoye – The First AI Native Workspace for All Your Business Tools

https://zoye.io/
1•anizeu•6m ago•1 comments

The British get a nosebleed when they get too successful

https://www.reaction.life/p/the-british-get-a-nosebleed-when
1•ossa-ma•9m ago•0 comments

Liver exerkine reverses Alzheimer's-related memory loss via vasculature

https://www.sciencedirect.com/science/article/pii/S009286742600111X
4•PaulHoule•12m ago•0 comments

Show HN: Shibuya – A High-Performance WAF in Rust with eBPF and ML Engine

https://ghostklan.com/shibuya.html
3•germainluperto•13m ago•0 comments

The Era of AI human clone

1•Metalcode•13m ago•0 comments

Show HN: I built a tool track cash flow without the "spreadsheet stress"

https://www.opboard.io/
1•wwxoxo•13m ago•1 comments

Baudbot: Always-on AI assistant for dev teams

https://github.com/modem-dev/baudbot
1•tosh•14m ago•0 comments

Why Frederick Wiseman Was the Greatest Documentary Filmmaker Ever

https://www.newyorker.com/culture/the-front-row/why-frederick-wiseman-was-the-greatest-documentar...
1•mitchbob•15m ago•1 comments

Anthropic announces proof of distillation at scale by MiniMax, DeepSeek,Moonshot

https://twitter.com/anthropicai/status/2025997928242811253
8•Jimmc414•15m ago•5 comments

Lucid cuts 12% of its US workforce in a profitability push

https://sherwood.news/markets/lucid-cuts-12-of-its-us-workforce-in-a-profitability-push/
1•avonmach•18m ago•0 comments

Show HN: I vibe-coded a custom WebGPU engine for my MMO

https://github.com/verekia/voidcore
2•jverrecchia•19m ago•0 comments

Show HN: Code that makes Einstein's equivalence principle bidirectional

https://go.dev/play/p/LtvvBYQN3t7
1•u3829hg•22m ago•0 comments

The "giddy nothingness" of AI coding (from creator of Dapper, OTel, etc.)

https://foggyfuture.substack.com/p/the-giddy-nothingness-of-automatic
2•el_bhs•23m ago•0 comments

The Fundraising Tactic AI Startups Are Using to Juice Valuations

https://www.wsj.com/business/entrepreneurship/the-fundraising-tactic-ai-startups-are-using-to-jui...
1•vshastry•23m ago•0 comments

Lifo – Browser-Native OS for AI Sandboxing

https://lifo.sh
1•twapi•24m ago•1 comments

Webspace Invaders

https://matthiasott.com/articles/webspace-invaders
1•eustoria•24m ago•0 comments

Hate the peer-review process? Einstein did too (2014)

https://theconversation.com/hate-the-peer-review-process-einstein-did-too-27405
1•Tomte•24m ago•0 comments

Show HN: RBAC Algorithm – Pure Python, hybrid RBAC+ABAC, pluggable storage

https://github.com/Maneesh-Relanto/RBAC-algorithm
1•maneeshthakur•25m ago•0 comments

An in-depth guide to customising lists with CSS

https://piccalil.li/blog/an-in-depth-guide-to-customising-lists-with-css/
1•eustoria•26m ago•0 comments

What are your top 5 missing features of OpenClaw?

2•challehallberg•27m ago•0 comments

CEO Phil Spencer and Xbox President Sarah Bond Depart

https://sherwood.news/business/microsoft-makes-dramatic-shakeup-to-its-gaming-division-as-gaming-...
1•avonmach•29m ago•2 comments

Scrapping business class could halve aviation emissions – new study

https://theconversation.com/scrapping-business-class-could-halve-aviation-emissions-new-study-275474
2•DamonHD•30m ago•0 comments

Eac-d – lightweight push-to-deploy for Proxmox LXC (Go, no CI platform)

https://github.com/FratteFlorian/easycd
1•flofra•30m ago•1 comments
Open in hackernews

Decomposing Transactional Systems

https://transactional.blog/blog/2025-decomposing-transactional-systems
132•pongogogo•10mo ago

Comments

karmakaze•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
Hey Mark, I actually found this post via yours so thanks!