frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

CartLens

https://www.cartlens.co/
1•watat83•5m ago•0 comments

Nvidia CMP170HX driver 64GB RAM unlocking patch

https://github.com/amoghmunikote/cmpunlocker
2•ValdikSS•5m ago•0 comments

Forced System

1•shencry•6m ago•0 comments

Max 20x upgrade not reflected in weekly limits, depleting at Max 5x rate

https://github.com/anthropics/claude-code/issues/79773
1•qwertox•7m ago•0 comments

10000 Classic Movie Posters Digitized and Put Online Free to Browse and Download

https://www.openculture.com/2026/08/5000-classic-movie-posters-digitized-put-online-free-to-brows...
1•mdp2021•8m ago•1 comments

Reddit begins testing a new audio and video experience, similar to TikTok videos

https://techcrunch.com/2026/08/17/reddit-begins-testing-a-new-audio-and-video-experience-similar-...
1•HelloUsername•10m ago•0 comments

Measuring Obedience to Authority Across LLMs with the Milgram Paradigm

https://arxiv.org/abs/2608.16177
1•sbulaev•15m ago•0 comments

OpenAI disbanded the team that assessed catastrophic model risks

https://thenextweb.com/news/openai-preparedness-team-disbanded-ipo-streamlining
1•nyku•15m ago•0 comments

Four Levels of In-Place Initialization

https://blog.yoshuawuyts.com/four-levels-of-in-place-initialization/
2•birdculture•17m ago•0 comments

Europe's heatwave boosted solar by up to 17% on hot days

https://www.euronews.com/2026/08/14/the-real-challenge-starts-after-sundown-europes-heatwave-boos...
1•benkan•17m ago•0 comments

Jellyfish force shutdown of three reactors at French nuclear plant

https://www.lemonde.fr/en/france/article/2026/08/11/jellyfish-force-shutdown-of-three-reactors-at...
1•benkan•18m ago•0 comments

qwen3.8-27B likes bash

https://twitter.com/hxiao/status/2089483485547544959
1•tosh•18m ago•0 comments

Meta faces a $1.4T reckoning in latest trial over social media addiction

https://www.engadget.com/2237547/meta-faces-a-1-4-trillion-reckoning-in-latest-trial-over-social-...
1•benkan•18m ago•0 comments

The End-State Fallacy: Where Is AI Security Headed?

https://endstatefallacy.com/
1•mp3il•20m ago•0 comments

Show HN: Amz-CLI – A command line for Amazon

https://github.com/tamnd/amz-cli
3•tamnd•21m ago•0 comments

Creator of TypeScript: 10x Faster TypeScript, Why AI Won't Replace SWEs [video]

https://www.youtube.com/watch?v=cywK3XYYJ2o
1•tosh•26m ago•0 comments

Linux 7.3 improves performance when running out of vRAM

https://pixelcluster.dev/VRAM-Overcommit/
1•flaburgan•30m ago•0 comments

YouTube: A view counts from the first frame

https://www.heise.de/en/news/YouTube-A-view-counts-from-the-first-frame-11416784.html
1•Topfi•32m ago•0 comments

AI is like farming. (and the purpose behind what I'm building)

2•Ozzie-D•34m ago•0 comments

Show HN: Lilo – a lightweight Markdown notes app built with Rust and egui

https://github.com/HellterEnjoy/Lilo
1•HellterEnjoy•34m ago•0 comments

LLMs Aren't Writing

https://sixcolors.com/post/2026/08/llms-arent-writing/
1•cesarrg•38m ago•0 comments

Linux follows Windows and makes a CPU feature requirement mandatory

https://www.neowin.net/news/linux-finally-follows-windows-and-makes-a-cpu-feature-requirement-man...
1•XzetaU8•39m ago•1 comments

When Search Eats the Web: A Model of Corpus Erosion Under Generative Extraction

https://arxiv.org/abs/2608.15896
1•p4bl0•41m ago•0 comments

Climbing the Wrong Hill (2009)

https://cdixon.org/2009/09/19/climbing-the-wrong-hill/
2•tosh•43m ago•0 comments

Harvesting coldness and solar energy for cooling,electricity, and heating

https://www.cell.com/cell-reports-physical-science/fulltext/S2666-3864(26)00398-X
1•wolfi1•43m ago•0 comments

git git git git git

https://caiustheory.com/git-git-git-git-git/
39•alexmolas•46m ago•14 comments

Debating the role of large language models in the kernel community

https://lwn.net/Articles/1083275/
1•pykello•47m ago•0 comments

Rethinking Database Programming

https://acadia.engineering/blog/rethinking-database-programming
4•honungsburk•53m ago•1 comments

Is Cloudflare reporting abuse system flawed?

2•tuxone•55m ago•0 comments

PurgeHound – Use the power of local LLM to declutter a Maildir folder

https://git.cerberusgames.ca/Starstreak/PurgeHound/
1•QBasicBitch•55m 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!