frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New Codex and Chat GPT app is a bit confusing to use?

https://learn.chatgpt.com/docs/app
1•strax01•37s ago•0 comments

Scientists Say a Critical Ocean Current System May Be Past Point of No Return

https://gizmodo.com/scientists-say-a-critical-ocean-current-system-may-already-be-past-the-point-...
1•pseudolus•2m ago•0 comments

All-New Aito M9 Surpasses 10K Deliveries in 3 Weeks,Total Deliveries Exceed 300K

https://english.news18a.com/m/news/english_272310.html
1•teleforce•3m ago•0 comments

How do you use Vim in the era of AI?

2•rstagi•3m ago•0 comments

We Put an L7 Firewall in the Kernel

https://yeet.cx/blog/l7-firewall-in-the-kernel
1•ok_major_9889•3m ago•0 comments

A Plan to Stop Solar Storms from Sending Us Back to the Stone Age

https://www.wsj.com/science/space-astronomy/solar-storm-what-is-stormwall-e2ca1823
2•fortran77•3m ago•1 comments

StubHub's 'marketplace for fans' is run by a mass scalper, SEC filings reveal

https://www.cbc.ca/lite/story/9.7265230
2•colinprince•3m ago•0 comments

AI Transport v0.5.0: durable execution with Steps

https://ably.com/blog/ai-transport-durable-execution-steps
1•zknill•6m ago•0 comments

Show HN: Runloom – Go-style coroutines for Python free-threaded

https://github.com/robertsdotpm/runloom
2•Uptrenda•7m ago•0 comments

Ryanair Passenger Partly Sucked Out of Jet as Window Breaks

https://www.seattletimes.com/business/passenger-partly-sucked-out-of-boeing-jet-as-window-dislodges/
1•alpha_squared•8m ago•0 comments

Fighting Fires with Figures, Experts Are Trying to Stop Europe from Burning

https://www.nytimes.com/2026/07/10/world/europe/fire-climate-change-heat-wave-global-warming.html
1•mitchbob•9m ago•1 comments

Society for the Diffusion of Useful Knowledge

https://en.wikipedia.org/wiki/Society_for_the_Diffusion_of_Useful_Knowledge
1•nstents•10m ago•0 comments

Show HN: LanceDB VS Code Extension

https://github.com/eozsahin1993/lancedb-explorer
2•emrecodes•10m ago•0 comments

Why Do You Suck at Juggling?

https://pgadey.ca/notes/suck-at-juggling/
2•surprisetalk•14m ago•0 comments

A 4x4 MIMO SDR tile for spatial RF vision and beamforming

https://www.crowdsupply.com/scale-rf/quadrf
2•supermdguy•14m ago•0 comments

Europe's Largest Unions Demand Right to Cancel Work on Days Above 30C

https://novaramedia.com/2026/07/09/europes-largest-unions-demand-right-to-cancel-work-on-days-abo...
2•robtherobber•15m ago•1 comments

If Microsoft sold off Xbox, who would even buy it?

https://www.theverge.com/games/962837/microsoft-xbox-spin-off-sell-divest-layoffs-asha-sharma
1•cavemandaveman•20m ago•0 comments

Show HN: Eveagents.dev

https://www.eveagents.dev/
3•elwingo1•20m ago•0 comments

Give Your AI Assistant a Private Memory

https://hister.org/posts/give-your-ai-assistant-a-private-memory
4•mstef•22m ago•0 comments

"Rights for robots" and the AI slavery fantasy

https://pluralistic.net/2026/07/10/posthuman-as-in-no-humans/
1•hn_acker•24m ago•0 comments

Man nearly sucked out of window mid-air on Ryanair plane

https://www.bbc.co.uk/news/articles/cgk65knkyzdo
3•philbo•24m ago•0 comments

Conviviality in Computational Science

https://blog.khinsen.net/posts/2026/07/06/conviviality.html
1•birdculture•25m ago•0 comments

Moving a Rust WebRTC SFU to thread-per-core: 70ms → 10ms P99.99 latency

https://pulsebeam.dev/blog/moving-to-thread-per-core
1•lherman•26m ago•1 comments

The Language of AI Could Change How Humans Speak

https://www.schneier.com/blog/archives/2026/07/the-language-of-ai-could-change-how-humans-speak.html
1•caisah•26m ago•0 comments

China lands reusable rocket for the first time

https://www.theverge.com/science/963861/china-lands-reusable-rocket-for-first-time
1•barbacoa•27m ago•0 comments

AI has lost all meaning

https://newslttrs.com/ai-has-lost-all-meaning/
3•spzb•30m ago•0 comments

Show HN: Hallint – lint AI-generated code for security issues

https://github.com/Asyncinnovator/hallint
1•coder_xyz•31m ago•1 comments

The Small Steps Trick That Works EveryTime

https://lazydevcoder.medium.com/the-small-steps-trick-that-works-every-time-74cf3e092429
1•rammy1234•32m ago•0 comments

Bringing back Eisenhower's process for getting rid of process

https://www.governance.fyi/p/bringing-back-eisenhowers-process
2•bigbobbeeper•33m ago•0 comments

The Ring That Wouldn't Shrink: Building Musklr's Rest Timer Animation in SwiftUI

https://musklr.com/blog/2026/swiftui-matchedgeometryeffect-hero-animation/
2•badgag•35m ago•1 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!