Skip to main content

A paper a day keeps the doctor away: FIT A Distributed Database Performance Tradeoff

In distributed systems, the CAP theorem provides a framework for thinking about the consistency, availability, and partition tolerance guarantees a system can provide. In their paper "FIT, a distributed database performance trandeoff", Faleiro and Abadi present a similar framework for thinking about distributed database performance.

The authors start with some intuition about distributed transactions: ones that rely on data that sits in different nodes in a distributed system. For the distributed transaction to guarantee atomicity, coordination between the participating nodes is required, The coordination offers systems designers a tradeoff choice between throughput and strong isolation. Guaranteeing strong isolation impacts the system throughput, and increasing throughput would imply allowing transactions to execute concurrently in spite of the presence of conflicts.

The authors introduce another variable, fairness, that interplays with the tradeoffs between strong isolation and throughput. The idea is that when the system is given license to selectively prioritize or delay transactions, it can improve throughput while still guaranteeing strong isolation. Instead of thinking about the tradeoff between strong isolation and throughput, the authors present the three way tradeoff between fairness, isolation, and throughput "FIT", and postulate that a system that forgoes one of them can guarantee the other two.

The authors provide some of examples of fairness play, such as "group commit" for in-memory databases, where the transaction cost is small, but the cost of writing the logs to durable storage is high and limits the throughput. In "group commit", the database accumulates log records from multiple transactions, and writes them to disk in one batch, working around the disk write bottleneck and increasing the system throughput at the cost of decreasing fairness, since the transactions can't commit until their buffered log records are flushed to disk.

Another example the authors provide is "lazy evaluation", where transactions are deferred to ensure that data dependent transactions are executed together, to amortize the cost of bringing the affected data into the processor cache and main memory across the transactions, improving throughput but decreasing fairness.

The authors categorize systems according to the interplay between fairness, isolation, and throughput, and present three classes of systems, with practical examples of each class:
  • Ones that guarantee strong isolation and fairness at the expense of throughput
    • Spanner--Google's geo-scale distributed database

  • Ones that guarantee strong isolation and good throughput at the expense of fairness
    • G-Store--a key value store with support for multi-key transactions
    • Calvin--a database system designed to reduce the impact of coordination in distributed transactions through imposing a total order on the transactions

  • Ones that guarantee good throughput and fairness at the expense of strong isolation
    • Eventually consistent systems--Cassandra for example
    • RAMP systems--read atomic multi partition transactions
The authors close by pointing that the FIT tradeoff interplay is also applicable to multi-core database systems such as Silo--a main memory database system designed to reduce contention on shared memory, and Doppel--a main memory database system that exploits commutativity to increase concurrency.


Comments

Popular posts from this blog

Emacs on WSL2: From Monochrome Misery to Modern Elegance

Windows Subsystem for Linux (WSL) has come a long way—especially under Windows 11 . WSL2 now offers smooth integration for Linux graphical applications, making it feel less like a compatibility layer and more like a native experience. But if you're an Emacs user, you might have noticed something off. Launching Emacs under WSL can feel like stepping into a time machine. Tiny fonts, washed-out visuals, and a UI that evokes the green-and-amber glow of vintage terminals. Functional? Yes. Pleasant? Absolutely not. But here's the good news: it is easy to make Emacs under WSL2 look just as sharp and modern as it does on Mac OSX . The emacs-pgtk build is designed for better graphical integration under WSL. It uses the Pure GTK interface , which plays nicely with WSL’s GUI support. sudo apt install emacs-pgtk To make Emacs look great, we’ll use Windows’ rich font library. First, edit your font configuration: sudo emacs /etc/fonts/fonts.conf and add the Windows Font directory...

MacOS Catalina, OneDrive, and case sensitive file systems

Over the weekend, I dusted off my old Macbook Air to search for some old family photos. I have not used the laptop for a long time, and it was completely out of charge. I plugged it in, and it quickly booted. Shortly after, I got bombarded with notifications that many of the applications needed updating, and that a new version of the OS was available.   I waited till I found the photos I was looking for, before attempting to upgrade anything. I also wanted to install OneDrive to get my old files to the cloud, so that I can access them from any of my devices, instead of dusting off old computers to get to them. The MacOS upgrade experience has always been fantastic, and this one was no different. The OS upgrade files downloaded quickly and after a restart and a quick install, the Macbook Air was ready to go.   Upgrading the installed applications was also a breeze, however in the process I discovered that a large majority of the applications installed were not compatible ...

Randomized Algorithms: Polynomial equivalence

We are all accustomed to deterministic algorithms; we work with them every day, and feel comfortable in knowing that the results of running them are predictable, barring a coding error of course. The idea of randomized algorithms feels remote and uncomfortable, despite their usefulness and elegance.  There are a couple of great examples in the introductory chapters of the book " Probability and Computing " that are an eye opener. One is verifying polynomial identities: how can you tell that two different representations of polynomials are the same? For example, if we have two polynomials $P(x)$ and $Q(x)$, both of degree $d$ described by the following formulas: \[ P(x) = \Sigma_{i=0}^{i=d} a_i x^i \\ Q(x) = \Pi_{i=1}^{i=d} (x-b_i) \] how can we determine that they are the same polynomial? Intuitively we first check that the degrees are the same, then we could try to transform one form into the other, either by multiplying out the terms for $Q(x)$, collecting like t...