frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Incus 7.0 LTS has been released

https://discuss.linuxcontainers.org/t/incus-7-0-lts-has-been-released/26641
1•ropyeett•4m ago•1 comments

Two alleged murder plots brought India, US and Canada to a diplomatic crisis

https://www.bloomberg.com/features/2025-india-sikh-separatist-deaths/
1•areoform•4m ago•0 comments

Makúh Residencial – buy land in Yucatán with an online quote tool and financing

https://makuhresidencial.com/
1•Sabu87•5m ago•0 comments

From Nand to Tetris

https://www.nand2tetris.org
1•lopespm•11m ago•0 comments

Perspectival Ball Mixing

https://www.mint-teapot.com/balls/perspective/
1•mint-teapot•14m ago•0 comments

Chinese court rules firms can't lay off workers on AI grounds

https://fortune.com/2026/05/03/chinese-court-layoffs-workers-ai-replacement-labor-market/
2•latexr•18m ago•1 comments

CollectorVision Part 8: The Sol Ring Benchmark –Testing Hardest Card Recognition

https://blog.hanclin.to/posts/gh-26/
3•fragmede•19m ago•0 comments

Codex's precision and attention to detail is *crazy* when set up correctly

3•ditchfieldcaleb•20m ago•0 comments

Whole-body ultrasound captures full cross-sections in 10 seconds

https://medicalxpress.com/news/2026-04-body-ultrasound-captures-full-sections.html
3•PaulHoule•31m ago•0 comments

DeepSeek V4 Pro: The First Chinese Model at the Frontier

https://foodtruckbench.com/blog/deepseek-v4-pro
2•nnx•33m ago•0 comments

Show HN: Better Design – 28 Shadcn design systems (OSS, MCP: Cursor/Claude Code)

https://github.com/marvkr/better-design
3•marvinkr•35m ago•0 comments

The Physics Behind the Thumb on Hose Trick

https://practical.engineering/blog/2026/5/5/the-physics-behind-the-thumb-trick
3•sohkamyung•36m ago•0 comments

VECT: Ransomware by Design, Wiper by Accident

https://research.checkpoint.com/2026/vect-ransomware-by-design-wiper-by-accident/
2•gnabgib•36m ago•0 comments

Apache HTTP Server: HTTP2: double free and possible RCE on early reset

https://www.cve.org/CVERecord?id=CVE-2026-23918
2•IncandescentGas•37m ago•0 comments

We Analyzed 20 Most Common Fake WordPress Plugins. Here's What They Do

https://blog.imunify360.com/20-most-common-fake-wordpress-plugins
2•shaunpud•39m ago•0 comments

Izeria.com a website/app to discover spots and gamify visiting your local area

https://www.izeria.com/en
3•eltados•40m ago•3 comments

Human brain changes after first psilocybin use

https://www.nature.com/articles/s41467-026-71962-3
5•karma_daemon•43m ago•2 comments

Ubuntu Is Run by "N00bs" (and It Shows)

https://techrights.org/n/2026/05/05/Ubuntu_is_Run_by_N00bs_and_It_Shows.shtml
3•amcclure•44m ago•0 comments

How much of the scientific literature is generated by AI?

https://www.nature.com/articles/d41586-025-03504-8
2•warbaker•46m ago•0 comments

IronMap – Self-hosted fitness tracker with community gym equipment database

https://github.com/bhman792/ironmap
2•bhman79•46m ago•0 comments

An atmosphere around a tiny, icy world beyond Pluto

https://apnews.com/article/pluto-atmosphere-kuiper-belt-c6b0ec2e0631f47c25ce18479b14e1ed
4•tcp_handshaker•54m ago•0 comments

AI tools could enable bioterrorism

https://www.economist.com/science-and-technology/2026/05/05/how-ai-tools-could-enable-bioterrorism
5•pseudolus•54m ago•1 comments

AI Has America's Oldest Monopoly Problem – Part 1

https://easydays.substack.com/p/ai-has-americas-oldest-monopoly-problem
5•marcammann•57m ago•0 comments

How SSA Makes Long Context Practical

https://subq.ai/how-ssa-makes-long-context-practical
3•sirobg•58m ago•0 comments

Ukrainian forces test direct-to-device satellite imagery for frontline troops

https://spacenews.com/ukrainian-forces-test-direct-to-device-satellite-imagery-for-frontline-troops/
4•tcp_handshaker•58m ago•0 comments

When a Search Stack Starts to Strain

https://www.searchplex.net/blog/when-a-search-stack-starts-to-strain
3•eskimo87•58m ago•0 comments

Beware the Man of One Study (2014)

https://www.slatestarcodexabridged.com/Beware-The-Man-Of-One-Study
3•caminanteblanco•1h ago•0 comments

CommFuse: Hiding Tail Latency via Communication Decomposition and Fusion

https://arxiv.org/abs/2604.24013
3•matt_d•1h ago•0 comments

Google Confirms Critical Android 0-Click Vulnerability

https://www.forbes.com/sites/daveywinder/2026/05/05/google-confirms-critical-android-0-click-vuln...
4•turrini•1h ago•0 comments

Firefox Gets FIPS 140-3 Power: WolfPKCS11 Unleashes WolfCrypt in NSS

https://www.wolfssl.com/firefox-gets-fips-140-3-power-wolfpkcs11-unleashes-wolfcrypt-in-nss/
3•aidangarske•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!