Serializable Transactions

On this page Carat arrow pointing down
Warning:
CockroachDB v22.1 is no longer supported. For more details, see the Release Support Policy.

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.
Note:

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:

    icon/buttons/copy
    $ brew install postgres
    
  2. Start PostgreSQL:

    icon/buttons/copy
    $ postgres -D /usr/local/var/postgres &
    
  3. Open a SQL connection to PostgreSQL:

    icon/buttons/copy
    $ psql
    
  4. Create the doctors table:

    icon/buttons/copy
    > CREATE TABLE doctors (
        id INT PRIMARY KEY,
        name TEXT
    );
    
  5. Create the schedules table:

    icon/buttons/copy
    > CREATE TABLE schedules (
        day DATE,
        doctor_id INT REFERENCES doctors (id),
        on_call BOOL,
        PRIMARY KEY (day, doctor_id)
    );
    
  6. Add two doctors to the doctors table:

    icon/buttons/copy
    > INSERT INTO doctors VALUES
        (1, 'Abe'),
        (2, 'Betty');
    
  7. Insert one week's worth of data into the schedules table:

    icon/buttons/copy
    > INSERT INTO schedules VALUES
        ('2018-10-01', 1, true),
        ('2018-10-01', 2, true),
        ('2018-10-02', 1, true),
        ('2018-10-02', 2, true),
        ('2018-10-03', 1, true),
        ('2018-10-03', 2, true),
        ('2018-10-04', 1, true),
        ('2018-10-04', 2, true),
        ('2018-10-05', 1, true),
        ('2018-10-05', 2, true),
        ('2018-10-06', 1, true),
        ('2018-10-06', 2, true),
        ('2018-10-07', 1, true),
        ('2018-10-07', 2, true);
    
  8. Confirm that at least one doctor is on call each day of the week:

    icon/buttons/copy
    > SELECT day, count(*) AS doctors_on_call FROM schedules
      WHERE on_call = true
      GROUP BY day
      ORDER BY day;
    
        day     | doctors_on_call
    ------------+-----------------
     2018-10-01 |               2
     2018-10-02 |               2
     2018-10-03 |               2
     2018-10-04 |               2
     2018-10-05 |               2
     2018-10-06 |               2
     2018-10-07 |               2
    (7 rows)
    

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:

    icon/buttons/copy
    > BEGIN;
    
  2. The application checks to make sure at least one other doctor is on call for the requested date:

    icon/buttons/copy
    > SELECT count(*) FROM schedules
      WHERE on_call = true
      AND day = '2018-10-05'
      AND doctor_id != 1;
    
     count
    -------
         1
    (1 row)
    
  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:

    icon/buttons/copy
    $ psql
    
  4. The application starts a transaction:

    icon/buttons/copy
    > BEGIN;
    
  5. The application checks to make sure at least one other doctor is on call for the requested date:

    icon/buttons/copy
    > SELECT count(*) FROM schedules
      WHERE on_call = true
      AND day = '2018-10-05'
      AND doctor_id != 2;
    
     count
    -------
         1
    (1 row)
    
  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:

    icon/buttons/copy
    > UPDATE schedules SET on_call = false
      WHERE day = '2018-10-05'
      AND doctor_id = 1;
    
  7. In the terminal for doctor 2, since the previous check confirmed the same thing, the application tries to update doctor 2's schedule:

    icon/buttons/copy
    > UPDATE schedules SET on_call = false
      WHERE day = '2018-10-05'
      AND doctor_id = 2;
    
  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:

    icon/buttons/copy
    > COMMIT;
    
  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:

    icon/buttons/copy
    > COMMIT;
    

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:

icon/buttons/copy
> SELECT * FROM schedules WHERE day = '2018-10-05';
    day     | doctor_id | on_call
------------+-----------+---------
 2018-10-05 |         1 | f
 2018-10-05 |         2 | f
(2 rows)

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:

icon/buttons/copy
> SHOW TRANSACTION_ISOLATION;
 transaction_isolation
-----------------------
 read committed
(1 row)

Exit each SQL shell with \q and then stop the PostgreSQL server:

icon/buttons/copy
$ pkill -9 postgres

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, install CockroachDB locally.

  2. Use the cockroach start-single-node command to start a one-node CockroachDB cluster in insecure mode:

    icon/buttons/copy
    $ cockroach start-single-node \
    --insecure \
    --store=serializable-demo \
    --listen-addr=localhost \
    --background
    
  3. As the root user, open the built-in SQL client:

    icon/buttons/copy
    $ cockroach sql --insecure --host=localhost
    
  4. Create the doctors table:

    icon/buttons/copy
    > CREATE TABLE doctors (
        id INT PRIMARY KEY,
        name TEXT
    );
    
  5. Create the schedules table:

    icon/buttons/copy
    > CREATE TABLE schedules (
        day DATE,
        doctor_id INT REFERENCES doctors (id),
        on_call BOOL,
        PRIMARY KEY (day, doctor_id)
    );
    
  6. Add two doctors to the doctors table:

    icon/buttons/copy
    > INSERT INTO doctors VALUES
        (1, 'Abe'),
        (2, 'Betty');
    
  7. Insert one week's worth of data into the schedules table:

    icon/buttons/copy
    > INSERT INTO schedules VALUES
        ('2018-10-01', 1, true),
        ('2018-10-01', 2, true),
        ('2018-10-02', 1, true),
        ('2018-10-02', 2, true),
        ('2018-10-03', 1, true),
        ('2018-10-03', 2, true),
        ('2018-10-04', 1, true),
        ('2018-10-04', 2, true),
        ('2018-10-05', 1, true),
        ('2018-10-05', 2, true),
        ('2018-10-06', 1, true),
        ('2018-10-06', 2, true),
        ('2018-10-07', 1, true),
        ('2018-10-07', 2, true);
    
  8. Confirm that at least one doctor is on call each day of the week:

    icon/buttons/copy
    > SELECT day, count(*) AS on_call FROM schedules
      WHERE on_call = true
      GROUP BY day
      ORDER BY day;  
    
                 day            | on_call
    +---------------------------+---------+
      2018-10-01 00:00:00+00:00 |       2
      2018-10-02 00:00:00+00:00 |       2
      2018-10-03 00:00:00+00:00 |       2
      2018-10-04 00:00:00+00:00 |       2
      2018-10-05 00:00:00+00:00 |       2
      2018-10-06 00:00:00+00:00 |       2
      2018-10-07 00:00:00+00:00 |       2
    (7 rows)
    

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:

    icon/buttons/copy
    > BEGIN;
    
  2. The application checks to make sure at least one other doctor is on call for the requested date:

    icon/buttons/copy
    > SELECT count(*) FROM schedules
      WHERE on_call = true
      AND day = '2018-10-05'
      AND doctor_id != 1;
    

    Press enter a second time to have the server return the result:

      count
    +-------+
          1
    (1 row)    
    
  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:

    icon/buttons/copy
    $ cockroach sql --insecure --host=localhost
    
  4. The application starts a transaction:

    icon/buttons/copy
    > BEGIN;
    
  5. The application checks to make sure at least one other doctor is on call for the requested date:

    icon/buttons/copy
    > SELECT count(*) FROM schedules
      WHERE on_call = true
      AND day = '2018-10-05'
      AND doctor_id != 2;
    

    Press enter a second time to have the server return the result:

      count
    +-------+
          1
    (1 row)    
    
  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:

    icon/buttons/copy
    > UPDATE schedules SET on_call = false
      WHERE day = '2018-10-05'
      AND doctor_id = 1;
    
  7. In the terminal for doctor 2, since the previous check confirmed the same thing, the application tries to update doctor 2's schedule:

    icon/buttons/copy
    > UPDATE schedules SET on_call = false
      WHERE day = '2018-10-05'
      AND doctor_id = 2;
    
  8. In the terminal for doctor 1, the application tries to commit the transaction:

    icon/buttons/copy
    > COMMIT;
    

    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:

    pq: restart transaction: TransactionRetryWithProtoRefreshError: TransactionRetryError: retry txn (RETRY_SERIALIZABLE): id=373bbefe key=/Table/53/1/17809/1/0 rw=true pri=0.03885012 stat=PENDING epo=0 ts=1569638527.268184000,1 orig=1569638507.593587000,0 min=1569638507.593587000,0 max=1569638507.593587000,0 wto=false seq=2
    
    Tip:

    For this kind of error, CockroachDB recommends a client-side transaction retry loop 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 Build an App tutorials.

  9. In the terminal for doctor 2, the application tries to commit the transaction:

    icon/buttons/copy
    > COMMIT;
    

    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:

    icon/buttons/copy
    > SELECT * FROM schedules WHERE day = '2018-10-05';
    
                 day            | doctor_id | on_call
    +---------------------------+-----------+---------+
      2018-10-05 00:00:00+00:00 |         1 |  true
      2018-10-05 00:00:00+00:00 |         2 |  false
    (2 rows)
    
  2. Again, the write skew anomaly was prevented by CockroachDB using the SERIALIZABLE isolation level:

    icon/buttons/copy
    > SHOW TRANSACTION_ISOLATION;
    
      transaction_isolation
    +-----------------------+
      serializable
    (1 row)
    
  3. Exit the SQL shell in each terminal:

    icon/buttons/copy
    > \q
    
  4. Exit each SQL shell with \q and then stop the node:

    Get the process ID of the node:

    icon/buttons/copy
    ps -ef | grep cockroach | grep -v grep
    
      501 21691     1   0  6:19PM ttys001    0:01.15 cockroach start-single-node --insecure --store=serializable-demo --listen-addr=localhost
    

    Gracefully shut down the node, specifying its process ID:

    icon/buttons/copy
    kill -TERM 21691
    
    initiating graceful shutdown of server
    server drained and shutdown completed
    

    If you do not plan to restart the cluster, you may want to remove the node's data store:

    icon/buttons/copy
    $ rm -rf serializable-demo
    

What's next?

Explore other core CockroachDB benefits and features:

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


Yes No
On this page

Yes No