frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Clojure Hosted on Go

https://github.com/glojurelang/glojure
2•dnlo•2m ago•0 comments

Show HN: ML condenses billions of logs into a tiny snapshot your LLM can debug

https://github.com/Rocketgraph/rocketgraph
1•kvaranasi_•2m ago•0 comments

A Secret Microsoft Tool Fixed Windows Performance [video]

https://www.youtube.com/watch?v=jH0BYAkPj78
1•tambourine_man•4m ago•0 comments

Build in Lovable, from Claude

https://xcancel.com/Lovable/status/2067326328110494129
1•doener•4m ago•0 comments

Tensordyne is making AI compute more efficient using logarithms

https://www.zach.be/p/tensordyne-is-making-ai-compute-more
1•hasheddan•7m ago•0 comments

The Free and Open Web Is Under Attack at the IETF

https://www.eff.org/deeplinks/2026/06/free-and-open-web-under-attack-ietf
3•hn_acker•12m ago•0 comments

The (real) dead economy theory

https://pluralistic.net/2026/06/17/its-the-stupid-economy-stupid/
4•hn_acker•12m ago•0 comments

The No Fakes Act Could Silence Satire, Commentary, and News

https://www.eff.org/deeplinks/2026/06/no-fakes-act-could-silence-satire-commentary-and-news
2•hn_acker•14m ago•0 comments

Salvager, Undo for AI agents that edit your files

https://www.salvager.sh/
1•gorkamb•16m ago•0 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app/
2•olievans•17m ago•1 comments

Hydra – a one-line Gradle RASP that seals app secrets until the device is clean

https://github.com/iamjosephmj/hydra
1•iamjosephmj1•18m ago•0 comments

Treating Agent Reasoning as a Span

https://forestmars.substack.com/p/ai-agents-run-to-completion
1•polynomial•21m ago•1 comments

Compiles any HuggingFace model into a single persistent megakernel

https://twitter.com/Akashi203/status/2067379010762338681
2•OsamaJaber•21m ago•0 comments

Apple Reveals Plans to Raise Prices

https://www.wsj.com/tech/apple-reveals-plans-to-raise-prices-1fbcc1d4
4•mfiguiere•22m ago•0 comments

Show HN: Righthand – Autonomous AI assistants with skills, goals, and a CLI

https://www.rigthhand.ai
2•notanaiagent•24m ago•0 comments

Vyrse – Social Bible reader for skeptics

https://vyrse.app
1•StudioHeat•25m ago•0 comments

Play Snake in Your Favicon

https://franciscouzo.github.io/favisnake/
1•toilet•27m ago•0 comments

China: Free AI for developing world; G7: who gets access to American models?

https://thenextweb.com/news/china-ai-global-cooperation-vs-g7-export-controls
1•skeledrew•29m ago•0 comments

Show HN: WaylandClientKit – a Swift Wayland client substrate for Linux

https://github.com/conxlgtm/WaylandClientKit
2•Nocerg•31m ago•0 comments

List of video game console color palettes

https://en.wikipedia.org/wiki/List_of_video_game_console_palettes
2•kibwen•33m ago•0 comments

HandoffKit: Coordinate agents by passing messages, not sharing memory

https://platformpilot.ai/blog/open-sourcing-handoffkit
1•ricardo-larosa•36m ago•1 comments

America's bull market has entered its manic phase

https://www.economist.com/finance-and-economics/2026/06/16/americas-bull-market-has-entered-its-m...
2•andsoitis•37m ago•1 comments

BytePack: Header-only message serialization library for C++17

https://github.com/alkonosst/BytePack
1•sohkamyung•37m ago•0 comments

Border Enforcement Does Affect American Workers' Wallets

https://www.wsj.com/opinion/border-enforcement-does-affect-american-workers-wallets-cc45d6b0
2•PKop•39m ago•0 comments

A Chrome extension for AI routing that reduces friction when selecting AI models

https://chromewebstore.google.com/detail/promptrouter/bojhdblkfdngamonhpbpofcnjonjbkff
1•rheorix•39m ago•0 comments

Chinese open source model better than Fable [video][13 mins]

https://www.youtube.com/watch?v=plcuiOXn_Pk
1•Bender•39m ago•0 comments

Report on Titan Submarine Destruction

https://www.tsb.gc.ca/eng/rapports-reports/marine/2023/m23a0169/m23a0169.html
2•bluenose69•41m ago•0 comments

Rust Foundation Welcomes OpenAI as Platinum Member, Announces Donation to Rust

https://rustfoundation.org/media/rust-foundation-welcomes-openai-as-platinum-member-announces-don...
1•ndesaulniers•41m ago•0 comments

Show HN: Canipls – see caniuse.com global support percentages as you type

https://github.com/taylorplewe/canipls
1•taylorplewe•41m ago•0 comments

Italian noble investigated over Sarajevo 'human Safari' killings

https://www.thetimes.com/world/europe/article/italian-noble-investigated-over-sarajevo-human-safa...
1•cwwc•44m 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!