Uploaded image for project: 'Drivers'
  1. Drivers
  2. DRIVERS-2369

Disable causal consistency in implicit sessions

    • Needed
    • Hide

      Drivers should sync the new unified sessions tests in mongodb/specifications@5a15b65. Drivers that enable `causalConsistency` in implicit sessions by default will require code changes. Note that `causalConsistency` must continue to be enabled by default in explicit sessions.

      Show
      Drivers should sync the new unified sessions tests in mongodb/specifications@5a15b65 . Drivers that enable `causalConsistency` in implicit sessions by default will require code changes. Note that `causalConsistency` must continue to be enabled by default in explicit sessions.
    • $i18n.getText("admin.common.words.hide")
      Key Status/Resolution FixVersion
      CDRIVER-4431 Fixed 1.24.0
      CXX-2548 Fixed 3.8.0
      CSHARP-4262 Done 2.19.0
      GODRIVER-2497 Fixed 1.11.2
      JAVA-4681 Fixed 4.9.0
      NODE-4447 Fixed 4.13.0
      MOTOR-997 Duplicate
      PYTHON-3360 Done 4.4
      PHPLIB-915 Backlog
      RUBY-3058 Fixed 2.19.0
      RUST-1414 Fixed 2.8.0
      SWIFT-1605 Won't Do
      $i18n.getText("admin.common.words.show")
      #scriptField, #scriptField *{ border: 1px solid black; } #scriptField{ border-collapse: collapse; } #scriptField td { text-align: center; /* Center-align text in table cells */ } #scriptField td.key { text-align: left; /* Left-align text in the Key column */ } #scriptField a { text-decoration: none; /* Remove underlines from links */ border: none; /* Remove border from links */ } /* Add green background color to cells with FixVersion */ #scriptField td.hasFixVersion { background-color: #00FF00; /* Green color code */ } /* Center-align the first row headers */ #scriptField th { text-align: center; } Key Status/Resolution FixVersion CDRIVER-4431 Fixed 1.24.0 CXX-2548 Fixed 3.8.0 CSHARP-4262 Done 2.19.0 GODRIVER-2497 Fixed 1.11.2 JAVA-4681 Fixed 4.9.0 NODE-4447 Fixed 4.13.0 MOTOR-997 Duplicate PYTHON-3360 Done 4.4 PHPLIB-915 Backlog RUBY-3058 Fixed 2.19.0 RUST-1414 Fixed 2.8.0 SWIFT-1605 Won't Do

      Drivers Changes

      Drivers should sync the new unified sessions tests in mongodb/specifications@5a15b65. Drivers that enable `causalConsistency` in implicit sessions by default will require code changes. Note that `causalConsistency` must continue to be enabled by default in explicit sessions.

      Summary

      Read concerns "linearizable" and "available" cannot be used in causally consistent sessions (see documentation here; see server code here). However, the Causal Consistency spec says that causal consistency should be enabled in sessions by default unless snapshot=true. Enabling causal consistency in implicit sessions can cause server errors when a user sets read concern "linearizable" or "available".

      A specific case where this causes a problem is with retryable reads because they reuse the same session and set an "operation time". As a result, a retried read will send a read concern document that includes afterClusterTime. If a user has also set the read concern to "linearizable" or "available", that retried read will fail with error InvalidOptions(72) with message:

      afterClusterTime field can be set only if level is equal to majority, local, or snapshot

      Update the Causal Consistency spec to prevent read operations that use implicit sessions from sending a read concern document with field afterClusterTime when field level is not "majority", "local", or "snapshot". We can accomplish that by either requiring that drivers set causalConsistency=false for all implicit sessions or for implicit sessions where the read concern is not "majority", "local", or "snapshot".

      Open questions:

      1. Does sending readConcern.afterClusterTime with a retried read make the read result more correct? If so, should we still require that drivers create implicit sessions with causalConsistency=true only if the read concern is "majority", "local", or "snapshot"?
      2. Does using implicit sessions with causalConsistency=true for writes have any effect (positive or negative) on retryable writes?

      Example repro steps

      1. Create a Client that uses read concern "linearizable".
      2. Set a failpoint that returns error code ShutdownInProgress(91) for a "find" operation one time.
      3. Run a "find" operation on a collection.

      We expect that the "find" operation to be retried once and then successfully return results. What actually happens is the server responds the first time with the failpoint error ShutdownInProgress(91), then when the "find" is retried the server responds with error InvalidOptions(72) with message:

      afterClusterTime field can be set only if level is equal to majority, local, or snapshot

      Additional references to causal consistency that may require updating

      The Retryable Reads specification mentions in question Can drivers resend the same wire protocol message on retry attempts?:

      2. If the initial attempt failed with a server error, then the session's operationTime would be advanced and the next read would include a larger readConcern.afterClusterTime.

      If we chose to disable causal consistency in implicit sessions, retried reads will not send readConcern.afterClusterTime. We should update that answer section to describe the updated behavior.

      Motivation

      Who is the affected end user?

      Users who set read concern "linearizable" or "available" and leave retryable reads enabled (enabled by default).

      How does this affect the end user?

      Retried read operations will fail with server error InvalidOptions(72) with message:

      afterClusterTime field can be set only if level is equal to majority, local, or snapshot

      How likely is it that this problem or use case will occur?

      If a user sets read concern "linearizable" or "available" and doesn't explicitly disable retryable reads, any retried read will return an error.

      If the problem does occur, what are the consequences and how severe are they?

      Retried read operations that may have succeeded will always return an error instead of a result. In affected drivers, retryable reads do not work with read concern "linearizable" or "available".

      Is this issue urgent?

      This bug affects at least the Go driver and could affect other drivers as well. The Java driver sets causalConsistency=false for all implicit sessions and is not affected.

      The bug in the Go driver affects the mongosync project and is moderately urgent. The team maintaining mongosync does have a workaround, which is to use explicit sessions for all operations that need to use read concern "linearizable" or "available" and set causalConsistency=false on the session.

      Is this ticket required by a downstream team?

      No.

      Is this ticket only for tests?

      No.

            Assignee:
            daria.pardue@mongodb.com Daria Pardue
            Reporter:
            matt.dale@mongodb.com Matt Dale
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

              Created:
              Updated: