frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Open Science, open-source alternative to Claude Science

https://github.com/ai4s-research/open-science
1•aiboost•1m ago•0 comments

Show HN: I made the Chrome Dino Game editable by your AI prompts

https://vibedino.com
1•johnnyapple•3m ago•0 comments

Twain Town, USA

https://theamericanscholar.org/twain-town-u-s-a/
1•prismatic•8m ago•0 comments

Study: AI Writing Strips Mystery and Complexity from Stories

https://neurosciencenews.com/ai-writing-mystery-complexity-creativity-30978/
1•giuliomagnifico•10m ago•0 comments

ClaimMate AI – We'd Love Your Feedback

https://claimmateai.pro/
1•hfhfdhf•11m ago•1 comments

Show HN: CertLeaf helps event organizers issue verifiable E-certificates

https://certleaf.com/
1•vachanmn123•12m ago•0 comments

AI Workflows Need Topological Sort

https://arpitbhayani.me/blogs/ai-topological-sort/
1•aishwarydongre•14m ago•0 comments

Meta's AI Storage Blueprint at Scale

https://engineering.fb.com/2026/07/01/data-infrastructure/metas-ai-storage-blueprint-at-scale/
1•MasterScrat•17m ago•0 comments

Show HN: Block Blast Solver – Android app for when you get stuck

https://onlineblockblastsolver.com/block-blast-apk/
1•huzaifasinan•17m ago•0 comments

SkillOpt: Executive Strategy for Self-Evolving Agent Skills

https://github.com/microsoft/SkillOpt
1•cheekyant•19m ago•0 comments

HTTP API Design Guide

https://geemus.gitbooks.io/http-api-design/content/en/
1•jcbhmr•32m ago•0 comments

Home made GPU escalated quickly [video]

https://www.youtube.com/watch?v=qMR3IXF2sWw
1•bane•32m ago•0 comments

The Evolution of Agents: From Context Engineering to Long-Running Harnesses

https://jinyansu1.github.io/blog/2026/07/agent-context-engineering-long-running-harness/
1•vinhnx•35m ago•0 comments

Tea App Checker

https://teaappchecker.com
2•thefirstname322•39m ago•0 comments

Cisco Killed Smartlook – Good Riddance for Expensive Pricing

https://www.cisco.com/c/en/us/products/collateral/software/smartlook-com-eol.html
1•mrr7337•43m ago•0 comments

ChorusGraph – Agent graph runtime (not a LangGraph wrapper) with built-in cache

https://github.com/insightitsGit/ChorusGraph
1•insightits•44m ago•0 comments

Cargo-nextest: 3x faster than cargo test, per-test isolation, first-class CI

https://nexte.st/
1•nateb2022•55m ago•0 comments

Adam is the top OpenCode contributor by line count visualized

https://app.principal-ade.com/anomalyco/opencode
1•fernando-ram•58m ago•0 comments

The Oldest Problem That Was Never Solved

https://www.nirajgohil.com/essay/the-oldest-problem/
1•Niraj1513•1h ago•0 comments

What Is AI Native Development?

https://brunelly.com/articles/what-is-ai-native-development
2•rihabzt•1h ago•0 comments

No Cost EMI: Full Guide, Eligibility, Benefits and Details – SMFG India Credit

https://www.smfgindiacredit.com/knowledge-center/what-is-no-cost-emi.aspx
1•saumyaraut11•1h ago•0 comments

Underspecification Does Not Imply Incoherence in LLM Code Generation

https://arxiv.org/abs/2607.01953
1•ilreb•1h ago•0 comments

Who runs this propaganda machine?

https://clocktowerx.com/
1•smalltorch•1h ago•1 comments

How to Follow a Drummer

https://drummate.app/blog/how-to-follow-a-drummer
1•sashyo•1h ago•0 comments

FIFA lifts Balogun's World Cup suspension after Trump calls Infantino

https://www.france24.com/en/sport/20260705-fifa-lifts-balogun-world-cup-suspension-trump-call
3•Tomte•1h ago•0 comments

Learn Faster with Your Personal AI Teacher

https://aischoolbuilder.com/school/school-1786
1•bokeke1•1h ago•0 comments

The final voyage of USS Nimitz

https://news.usni.org/2026/07/03/uss-nimitz-an-aircraft-carriers-final-journey
5•Gaishan•1h ago•1 comments

4D-printing method creates lighter, faster-spinning wind turbine blades

https://www.concordia.ca/cunews/encs/2026/07/02/research-new-4d-printing-method-creates-lighter-f...
1•geox•1h ago•0 comments

How AI Poisons Creativity [video]

https://www.youtube.com/watch?v=WeCSzEtZcUw
3•g-andrade•1h ago•0 comments

Cewsco – a multimodal AI assistant powered by Dravik

https://cewsco.com/
1•kalkalka•1h 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!