Skip to main content
In contrast to most databases, CockroachDB always uses SERIALIZABLE isolation, which is the strongest of the four transaction isolation levels defined by the SQL standard and is stronger than the SNAPSHOT isolation level developed later. SERIALIZABLE isolation guarantees that even though transactions may execute in parallel, the result is the same as if they had executed one at a time, without any concurrency. This ensures data correctness by preventing all “anomalies” allowed by weaker isolation levels. In this tutorial, you’ll work through a hypothetical scenario that demonstrates the importance of SERIALIZABLE isolation for data correctness.
  1. You’ll start by reviewing the scenario and its schema.
  2. You’ll then execute the scenario at one of the weaker isolation levels, READ COMMITTED, observing the write skew anomaly and its implications. Because CockroachDB always uses SERIALIZABLE isolation, you’ll run this portion of the tutorial on PostgreSQL, which defaults to READ COMMITTED.
  3. You’ll finish by executing the scenario at SERIALIZABLE isolation, observing how it guarantees correctness. You’ll use CockroachDB for this portion.
For a deeper discussion of transaction isolation and the write skew anomaly, see the Real Transactions are Serializable and What Write Skew Looks Like blog posts.

Overview

Scenario

  • A hospital has an application for doctors to manage their on-call shifts.
  • The hospital has a rule that at least one doctor must be on call at any one time.
  • Two doctors are on-call for a particular shift, and both of them try to request leave for the shift at approximately the same time.
  • In PostgreSQL, with the default READ COMMITTED isolation level, the write skew anomaly results in both doctors successfully booking leave and the hospital having no doctors on call for that particular shift.
  • In CockroachDB, with the SERIALIZABLE isolation level, write skew is prevented, one doctor is allowed to book leave and the other is left on-call, and lives are saved.

Write skew

When write skew happens, a transaction reads something, makes a decision based on the value it saw, and writes the decision to the database. However, by the time the write is made, the premise of the decision is no longer true. Only SERIALIZABLE and some implementations of REPEATABLE READ isolation prevent this anomaly.

Schema

Schema for serializable transaction tutorial

Step 1. Set up the scenario on PostgreSQL

  1. If you haven’t already, install PostgreSQL locally. On Mac, you can use Homebrew:
  2. Start PostgreSQL:
  3. Open a SQL connection to PostgreSQL:
  4. Create the doctors table:
  5. Create the schedules table:
  6. Add two doctors to the doctors table:
  7. Insert one week’s worth of data into the schedules table:
  8. Confirm that at least one doctor is on call each day of the week:

Step 2. Run the scenario on PostgreSQL

  1. Doctor 1, Abe, starts to request leave for 10/5/18 using the hospital’s schedule management application. The application starts a transaction:
  2. The application checks to make sure at least one other doctor is on call for the requested date:
  3. Around the same time, doctor 2, Betty, starts to request leave for the same day using the hospital’s schedule management application. In a new terminal, start a second SQL session:
  4. The application starts a transaction:
  5. The application checks to make sure at least one other doctor is on call for the requested date:
  6. In the terminal for doctor 1, since the previous check confirmed that another doctor is on call for 10/5/18, the application tries to update doctor 1’s schedule:
  7. In the terminal for doctor 2, since the previous check confirmed the same thing, the application tries to update doctor 2’s schedule:
  8. In the terminal for doctor 1, the application commits the transaction, despite the fact that the previous check (the SELECT query) is no longer true:
  9. In the terminal for doctor 2, the application commits the transaction, despite the fact that the previous check (the SELECT query) is no longer true:

Step 3. Check data correctness on PostgreSQL

So what just happened? Each transaction started by reading a value that, before the end of the transaction, became incorrect. Despite that fact, each transaction was allowed to commit. This is known as write skew, and the result is that 0 doctors are scheduled to be on call on 10/5/18. To check this, in either terminal, run:
Again, this anomaly is the result of PostgreSQL’s default isolation level of READ COMMITTED, but note that this would happen with any isolation level except SERIALIZABLE and some implementations of REPEATABLE READ:
Exit each SQL shell with \q and then stop the PostgreSQL server:

Step 4. Set up the scenario on CockroachDB

When you repeat the scenario on CockroachDB, you’ll see that the anomaly is prevented by CockroachDB’s SERIALIZABLE transaction isolation.
  1. If you haven’t already, locally.
  2. Use the command to start a one-node CockroachDB cluster in insecure mode:
  3. In a new terminal window, open the and connect to localhost:
  4. Create the doctors table:
  5. Create the schedules table:
  6. Add two doctors to the doctors table:
  7. Insert one week’s worth of data into the schedules table:
  8. Confirm that at least one doctor is on call each day of the week:

Step 5. Run the scenario on CockroachDB

  1. Doctor 1, Abe, starts to request leave for 10/5/18 using the hospital’s schedule management application. The application starts a transaction:
  2. The application checks to make sure at least one other doctor is on call for the requested date:
    Press enter a second time to have the server return the result:
  3. Around the same time, doctor 2, Betty, starts to request leave for the same day using the hospital’s schedule management application. In a new terminal, start a second SQL session:
  4. The application starts a transaction:
  5. The application checks to make sure at least one other doctor is on call for the requested date:
    Press enter a second time to have the server return the result:
  6. In the terminal for doctor 1, since the previous check confirmed that another doctor is on call for 10/5/18, the application tries to update doctor 1’s schedule:
  7. In the terminal for doctor 2, since the previous check confirmed the same thing, the application tries to update doctor 2’s schedule:
  8. In the terminal for doctor 1, the application tries to commit the transaction:
    Since CockroachDB uses SERIALIZABLE isolation, the database detects that the previous check (the SELECT query) is no longer true due to a concurrent transaction. It therefore prevents the transaction from committing, returning a retry error that indicates that the transaction must be attempted again:
For this kind of error, CockroachDB recommends a that would transparently observe that the one doctor cannot take time off because the other doctor already succeeded in asking for it. You can find generic transaction retry functions for various languages in our tutorials.
  1. In the terminal for doctor 2, the application tries to commit the transaction:
    Since the transaction for doctor 1 failed, the transaction for doctor 2 can commit without causing any data correctness problems.

Step 6. Check data correctness on CockroachDB

  1. In either terminal, confirm that one doctor is still on call for 10/5/18:
  2. Again, the write skew anomaly was prevented by CockroachDB using the SERIALIZABLE isolation level:
  3. Exit the SQL shell in each terminal:
  4. Exit each SQL shell with \q and then stop the node: Get the process ID of the node:
    Gracefully shut down the node, specifying its process ID:
    If you do not plan to restart the cluster, you may want to remove the node’s data store:

What’s next?

Explore other CockroachDB benefits and features:
You might also want to learn more about how transactions work in CockroachDB and in general: