Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-4279

Statement cache deadlock

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 10.0.2.1, 10.1.3.1, 10.2.2.0, 10.3.3.0, 10.4.2.0, 10.5.1.1, 10.8.1.2
    • 10.8.3.0, 10.9.2.2, 10.10.1.1
    • SQL
    • Windows Vista, OS X 10.5+
    • Normal
    • Repro attached
    • Seen in production

    Description

      Due to a design flaw in the statement cache, a deadlock can occur if a prepared statement becomes out-of-date.

      I will illustrate this with the following example:

      The application is using the embedded Derby driver. The application has two threads, and each thread uses its own connection.

      There is a table named MYTABLE with column MYCOLUMN.

      1. A thread prepares and executes the query SELECT MYCOLUMN FROM MYTABLE. The prepared statement is stored in the statement cache (see org.apache.derby.impl.sql.GenericStatement for this logic)
      2. After some time, the prepared statement becomes invalid or out-of-date for some reason (see org.apache.derby.impl.sql.GenericPreparedStatement)
      3. Thread 1 begins a transaction and executes LOCK TABLE MYTABLE IN EXCLUSIVE MODE
      4. Thread 2 begins a transaction and executes SELECT MYCOLUMN FROM MYTABLE. The statement is in the statement cache but it is out-of-date. The thread begins to recompile the statement. To compile the statement, the thread needs a shared lock on MYTABLE. Thread 1 already has an exclusive lock on MYTABLE. Thread 2 waits.
      5. Thread 1 executes SELECT MYCOLUMN FROM MYTABLE. The statement is in the statement cache but it is being compiled. Thread 1 waits on the statement's monitor.
      6. We have a deadlock. Derby eventually detects a lock timeout, but the error message is not descriptive. The stacks at the time of the deadlock are:

      This deadlock is unique because it can still occur in a properly designed database. You are only safe if all of your transactions are very simple and cannot be interleaved in a sequence that causes the deadlock, or if your particular statements do not require a table lock to compile. (For the sake of simplicity, I used LOCK TABLE in my example, but any UPDATE statement would fit.)

      Attachments

        1. Derby4279.java
          3 kB
          Jeff Stuckman
        2. stacktrace.txt
          36 kB
          Mamta A. Satoor
        3. patch4279.txt
          8 kB
          Brett Wooldridge
        4. client_stacktrace_activation_closed.txt
          2 kB
          Kristian Waagan
        5. patch4279_2.txt
          1 kB
          Brett Wooldridge
        6. no-lock-experiment.diff
          2 kB
          Kristian Waagan

        Issue Links

          Activity

            People

              brettw Brett Wooldridge
              stuckman Jeff Stuckman
              Votes:
              7 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: