frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: BlazeRules – YAML rule engine for streaming data, 5M records/SEC

1•jspuri•18s ago•0 comments

AI: Considerations for people who make decisions

https://berthub.eu/articles/posts/ai-for-decision-makers/
1•Fannon•29s ago•0 comments

REO: Revisiting Erase Operation for Improving Lifetime, Performance of NAND SSDs

https://www.mdpi.com/2079-9292/14/4/738
1•rbanffy•3m ago•0 comments

We've got two good theories on sleek. Hope helps you

1•silisleek•7m ago•0 comments

The Grammar of Graphics

https://link.springer.com/book/10.1007/0-387-28695-0
1•Alien1Being•8m ago•0 comments

200 Milliseconds

https://200ms.thenodebook.com
1•dimitarpanov•8m ago•0 comments

How OpenAI Lost Its AI Crown–and the Fight to Win It Back

https://www.wsj.com/tech/ai/how-openai-lost-its-ai-crownand-the-fight-to-win-it-back-7d069695
1•JumpCrisscross•10m ago•0 comments

FTN Clearing Houz

https://clrghouz.bbs.dege.au/about
1•bilegeek•11m ago•0 comments

Migrating Raku DBIish gh actions pipeline to DSCI

https://gemini.google.com/share/1e778423958a
1•melezhik•12m ago•0 comments

The Simple Elegance of the Integrated Timing Belt Loopback Fastener

https://danielmangum.com/posts/integrated-timing-belt-loopback-fastener/
1•hasheddan•12m ago•0 comments

Google search filter by date seems broken

1•camel-cdr•13m ago•0 comments

A Yale AI-cheating dispute became a 13-count federal lawsuit

https://arstechnica.com/tech-policy/2026/07/how-a-yale-ai-cheating-dispute-became-a-13-count-fede...
2•pseudolus•14m ago•1 comments

Anthropic says its AI models also hacked three organizations on their own

https://www.engadget.com/2227630/anthropic-ai-models-hacked-three-organizations-on-their-own/
1•madradavid•15m ago•0 comments

Debian CVE Fixes over Time

https://sigwait.org/~alex/blog/2026/07/30/h1rmR5.html
1•henry_flower•15m ago•0 comments

Gluten Explained: Who Needs a Gluten-Free Diet?

https://ethansmith140833.substack.com/p/gluten-explained-who-really-needs
1•trimoxer•19m ago•0 comments

PTA Science Platform – open-source pulsar timing array analysis pipeline

https://github.com/lijujames311/pta-science-platform
1•Liju311•20m ago•0 comments

Robust-Jobserver Spec

https://codeberg.org/mlugg/robust-jobserver/src/branch/main/spec.md
1•reiniermaas•22m ago•0 comments

Show HN: MCP inspection for live Avalonia, WPF, WinUI and MAUI apps

https://github.com/trrahul/XamlMcp
2•trrahul•23m ago•0 comments

GitHub shadowbanned an NPM package with 37M+ weekly downloads

3•mattlue•23m ago•0 comments

An OpenAI model proves that non-sofic groups exist

https://twitter.com/SebastienBubeck/status/2083456300692979886
1•linzhangrun•26m ago•0 comments

Show HN: Weightlift – the missing package manager for downloading model weights

https://weightlift.dev/
1•wassimgr•30m ago•0 comments

AI coding agents should optimize for less owned code

https://www.openenergytransition.org/posts/ai-coding-agents-should-optimize-for-less-owned-code
1•lyoncy•31m ago•0 comments

Graphics Programming Weekly 448

https://www.jendrikillner.com/post/graphics-programming-weekly-issue-448/
1•wertyk•35m ago•0 comments

AI labels to be compulsory on authentic-looking content under EU rules

https://www.theguardian.com/technology/2026/jul/31/ai-labels-to-be-compulsory-on-authentic-lookin...
1•pseudolus•36m ago•0 comments

Norway became a global salmon behemoth. Now it's facing the consequences

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
1•theanonymousone•38m ago•1 comments

Marketing post 1 for beadedcloud environmental intelligence

https://www.beaded.cloud/
1•erik_from_alask•41m ago•1 comments

Kill Chain: How AI Is Transforming Modern Warfare [video]

https://www.youtube.com/watch?v=xjhywQlzJYo
1•mgh2•42m ago•1 comments

SBCL – Assignment convert all the things

https://github.com/sbcl/sbcl/commit/f45092cdcd34fff9f6fdaa20df972328cee354d0
1•BoingBoomTschak•44m ago•0 comments

Chiavari News – le notizie di oggi dal Tigullio

https://chiavarinews.com/
1•xmorse•46m ago•0 comments

How to speed up the Rust compiler in July 2026

https://nnethercote.github.io/2026/07/31/how-to-speed-up-the-rust-compiler-in-july-2026.html
1•birdculture•50m 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!