SQLite: The Unbelievable Database Legend

2024-12-30

SQLite, the world's most widely deployed database, is maintained by a three-person team, rejecting external contributions, yet conquering the world with its exceptional performance and stability. Born on a US warship to solve server downtime issues, it has become the cornerstone of trillions of databases. SQLite is not open source, but rather public domain software, with fewer restrictions than any open source license. Its rigorous testing process, even simulating extreme situations like operating system crashes, ensures its incredibly high reliability. However, its unique business model—generating revenue through paid support and memberships—is also noteworthy. The legend of SQLite lies not only in its technical prowess but also in the persistence and innovation behind it.

Read more
(avi.im)
Development legend

Bloom Filters: The Secret to Making SQLite 10x Faster

2024-12-22

Researchers cleverly used Bloom filters to make SQLite analytical queries 10x faster. They discovered that SQLite's nested loop joins were inefficient, with much time spent on B-tree probes. By using a Bloom filter before the join operation to quickly filter out rows unlikely to match, and then performing B-tree probes only on potential matches, the number of probes was significantly reduced. Bloom filters have minimal memory overhead and were easy to integrate into SQLite's existing query engine, resulting in a significant performance boost. This improvement has been integrated into SQLite v3.38.0.

Read more
(avi.im)

Rust-based SQLite Rewrite Achieves 100x Tail Latency Reduction

2024-12-16

Researchers from the University of Helsinki and Cambridge have rewritten SQLite in Rust, creating Limbo, a project leveraging asynchronous I/O and io_uring to drastically improve performance. By utilizing asynchronous I/O and storage disaggregation, Limbo achieves up to a 100x reduction in tail latency, particularly beneficial in multi-tenant serverless environments. The key improvement comes from replacing synchronous bytecode instructions with asynchronous counterparts, eliminating blocking and enhancing concurrency. While improvements are most pronounced at high percentiles, this makes Limbo ideal for applications demanding high reliability.

Read more
(avi.im)
Development Asynchronous I/O