> Whenever corruption occurred, we had to stop the control plane process on the shard while we repaired or restored the database. This was painful for tailnets on that shard, because their entire control plane disappeared during that recovery window. Gotta love single points of failure...
Tracking down the 16-year-old WAL-reset SQLite bug
11–20 of 263 posts
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#12Re: Tracking down the 16-year-old WAL-reset SQLite bug
#13While technically true as written, it seems to downplay the significance: > The bug is a data race with tight timing constraints. It is unlikely to occur in common use. A large customer did experience this corruption, so it's important for people with tailscale's setup update immediately. > The developers have never been able to reproduce the bug organically and had to add special testing logic to SQLite that deliber…
> They also explained why we were more likely to hit the bug than other SQLite users: we take manual control of the checkpointing process, and we checkpoint very aggressively. Even a bug triggered by a rare condition was bound to hit us eventually.
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#14> We funded the open-source SQLite VFS shim that helped isolate the race condition almost immediately, and will help track down similar bugs in the future. Interesting example of a company funding open source - in this case paying for the development of a new and very specific debugging tool.
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#15> We funded the open-source SQLite VFS shim that helped isolate the race condition almost immediately, and will help track down similar bugs in the future. Interesting example of a company funding open source - in this case paying for the development of a new and very specific debugging tool.
Yeah, tailscale seems to have leadership with their head on right, I agree with the way they handle a lot of things.
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#16I know their proprietary testing framework is their secret sauce so we may never know...
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#17Which SQLite driver for Go does Tailscale use?
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#18Well written post, really enjoyed reading it. > A single Go process exclusively accesses that database, and serves the control plane for those tailnets. This single-writer design is exactly how SQLite is meant to be used. This line led me to believe that the writer and checkpointing logic lived on the same database connection, so I was curious to find out how the data race occurred. However, the bug details on the SQ…
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#19This is the feeling I chase as a software engineer. It's the greatest motivator.
Re: Tracking down the 16-year-old WAL-reset SQLite bug
#201: https://www.usenix.org/legacy/event/fast08/tech/full_papers/...