1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
|
==================
Transactions Tests
==================
.. contents::
----
Introduction
============
The YAML and JSON files in the ``legacy`` and ``unified`` sub-directories are
platform-independent tests that drivers can use to prove their conformance to
the Transactions Spec. The tests in the ``legacy`` directory are designed with
the intention of sharing some test-runner code with the CRUD Spec tests and the
Command Monitoring Spec tests. The format for these tests and instructions for
executing them are provided in the following sections. Tests in the
``unified`` directory are written using the `Unified Test Format
<../../unified-test-format/unified-test-format.rst>`_.
Several prose tests, which are not easily expressed in YAML, are also presented
in this file. Those tests will need to be manually implemented by each driver.
Server Fail Point
=================
failCommand
```````````
Some tests depend on a server fail point, expressed in the ``failPoint`` field.
For example the ``failCommand`` fail point allows the client to force the
server to return an error. Keep in mind that the fail point only triggers for
commands listed in the "failCommands" field. See `SERVER-35004`_ and
`SERVER-35083`_ for more information.
.. _SERVER-35004: https://jira.mongodb.org/browse/SERVER-35004
.. _SERVER-35083: https://jira.mongodb.org/browse/SERVER-35083
The ``failCommand`` fail point may be configured like so::
db.adminCommand({
configureFailPoint: "failCommand",
mode: <string|document>,
data: {
failCommands: ["commandName", "commandName2"],
closeConnection: <true|false>,
errorCode: <Number>,
writeConcernError: <document>,
appName: <string>,
blockConnection: <true|false>,
blockTimeMS: <Number>,
}
});
``mode`` is a generic fail point option and may be assigned a string or document
value. The string values ``"alwaysOn"`` and ``"off"`` may be used to enable or
disable the fail point, respectively. A document may be used to specify either
``times`` or ``skip``, which are mutually exclusive:
- ``{ times: <integer> }`` may be used to limit the number of times the fail
point may trigger before transitioning to ``"off"``.
- ``{ skip: <integer> }`` may be used to defer the first trigger of a fail
point, after which it will transition to ``"alwaysOn"``.
The ``data`` option is a document that may be used to specify options that
control the fail point's behavior. ``failCommand`` supports the following
``data`` options, which may be combined if desired:
- ``failCommands``: Required, the list of command names to fail.
- ``closeConnection``: Boolean option, which defaults to ``false``. If
``true``, the command will not be executed, the connection will be closed, and
the client will see a network error.
- ``errorCode``: Integer option, which is unset by default. If set, the command
will not be executed and the specified command error code will be returned as
a command error.
- ``appName``: A string to filter which MongoClient should be affected by
the failpoint. `New in mongod 4.4.0-rc2 <https://jira.mongodb.org/browse/SERVER-47195>`_.
- ``blockConnection``: Whether the server should block the affected commands.
Default false.
- ``blockTimeMS``: The number of milliseconds the affect commands should be
blocked for. Required when blockConnection is true.
`New in mongod 4.3.4 <https://jira.mongodb.org/browse/SERVER-41070>`_.
Speeding Up Tests
=================
See `Speeding Up Tests <../../retryable-reads/tests/README.rst#speeding-up-tests>`_ in the retryable reads spec tests.
Test Format
===========
Each YAML file has the following keys:
- ``runOn`` (optional): An array of server version and/or topology requirements
for which the tests can be run. If the test environment satisfies one or more
of these requirements, the tests may be executed; otherwise, this file should
be skipped. If this field is omitted, the tests can be assumed to have no
particular requirements and should be executed. Each element will have some or
all of the following fields:
- ``minServerVersion`` (optional): The minimum server version (inclusive)
required to successfully run the tests. If this field is omitted, it should
be assumed that there is no lower bound on the required server version.
- ``maxServerVersion`` (optional): The maximum server version (inclusive)
against which the tests can be run successfully. If this field is omitted,
it should be assumed that there is no upper bound on the required server
version.
- ``topology`` (optional): An array of server topologies against which the
tests can be run successfully. Valid topologies are "single", "replicaset",
and "sharded". If this field is omitted, the default is all topologies (i.e.
``["single", "replicaset", "sharded"]``).
- ``serverless``: Optional string. Whether or not the test should be run on
serverless instances imitating sharded clusters. Valid values are "require",
"forbid", and "allow". If "require", the test MUST only be run on serverless
instances. If "forbid", the test MUST NOT be run on serverless instances. If
omitted or "allow", this option has no effect.
The test runner MUST be informed whether or not serverless is being used in
order to determine if this requirement is met (e.g. through an environment
variable or configuration option). Since the serverless proxy imitates a
mongos, the runner is not capable of determining this by issuing a server
command such as ``buildInfo`` or ``hello``.
- ``database_name`` and ``collection_name``: The database and collection to use
for testing.
- ``data``: The data that should exist in the collection under test before each
test run.
- ``tests``: An array of tests that are to be run independently of each other.
Each test will have some or all of the following fields:
- ``description``: The name of the test.
- ``skipReason``: Optional, string describing why this test should be
skipped.
- ``useMultipleMongoses`` (optional): If ``true``, the MongoClient for this
test should be initialized with multiple mongos seed addresses. If ``false``
or omitted, only a single mongos address should be specified. This field has
no effect for non-sharded topologies.
- ``clientOptions``: Optional, parameters to pass to MongoClient().
- ``failPoint``: Optional, a server failpoint to enable expressed as the
configureFailPoint command to run on the admin database. This option and
``useMultipleMongoses: true`` are mutually exclusive.
- ``sessionOptions``: Optional, map of session names (e.g. "session0") to
parameters to pass to MongoClient.startSession() when creating that session.
- ``operations``: Array of documents, each describing an operation to be
executed. Each document has the following fields:
- ``name``: The name of the operation on ``object``.
- ``object``: The name of the object to perform the operation on. Can be
"database", "collection", "session0", "session1", or "testRunner". See
the "targetedFailPoint" operation in `Special Test Operations`_.
- ``collectionOptions``: Optional, parameters to pass to the Collection()
used for this operation.
- ``databaseOptions``: Optional, parameters to pass to the Database()
used for this operation.
- ``command_name``: Present only when ``name`` is "runCommand". The name
of the command to run. Required for languages that are unable preserve
the order keys in the "command" argument when parsing JSON/YAML.
- ``arguments``: Optional, the names and values of arguments.
- ``error``: Optional. If true, the test should expect an error or
exception. This could be a server-generated or a driver-generated error.
- ``result``: The return value from the operation, if any. This field may
be a single document or an array of documents in the case of a
multi-document read. If the operation is expected to return an error, the
``result`` is a single document that has one or more of the following
fields:
- ``errorContains``: A substring of the expected error message.
- ``errorCodeName``: The expected "codeName" field in the server
error response.
- ``errorLabelsContain``: A list of error label strings that the
error is expected to have.
- ``errorLabelsOmit``: A list of error label strings that the
error is expected not to have.
- ``expectations``: Optional list of command-started events.
- ``outcome``: Document describing the return value and/or expected state of
the collection after the operation is executed. Contains the following
fields:
- ``collection``:
- ``data``: The data that should exist in the collection after the
operations have run, sorted by "_id".
Use as Integration Tests
========================
Run a MongoDB replica set with a primary, a secondary, and an arbiter,
**server version 4.0.0 or later**. (Including a secondary ensures that
server selection in a transaction works properly. Including an arbiter helps
ensure that no new bugs have been introduced related to arbiters.)
A driver that implements support for sharded transactions MUST also run these
tests against a MongoDB sharded cluster with multiple mongoses and
**server version 4.2 or later**. Some tests require
initializing the MongoClient with multiple mongos seeds to ensures that mongos
transaction pinning and the recoveryToken works properly.
Load each YAML (or JSON) file using a Canonical Extended JSON parser.
Then for each element in ``tests``:
#. If the ``skipReason`` field is present, skip this test completely.
#. Create a MongoClient and call
``client.admin.runCommand({killAllSessions: []})`` to clean up any open
transactions from previous test failures. Ignore a command failure with
error code 11601 ("Interrupted") to work around `SERVER-38335`_.
- Running ``killAllSessions`` cleans up any open transactions from
a previously failed test to prevent the current test from blocking.
It is sufficient to run this command once before starting the test suite
and once after each failed test.
- When testing against a sharded cluster run this command on ALL mongoses.
#. Create a collection object from the MongoClient, using the ``database_name``
and ``collection_name`` fields of the YAML file.
#. Drop the test collection, using writeConcern "majority".
#. Execute the "create" command to recreate the collection, using writeConcern
"majority". (Creating the collection inside a transaction is prohibited, so
create it explicitly.)
#. If the YAML file contains a ``data`` array, insert the documents in ``data``
into the test collection, using writeConcern "majority".
#. When testing against a sharded cluster run a ``distinct`` command on the
newly created collection on all mongoses. For an explanation see,
`Why do tests that run distinct sometimes fail with StaleDbVersion?`_
#. If ``failPoint`` is specified, its value is a configureFailPoint command.
Run the command on the admin database to enable the fail point.
#. Create a **new** MongoClient ``client``, with Command Monitoring listeners
enabled. (Using a new MongoClient for each test ensures a fresh session pool
that hasn't executed any transactions previously, so the tests can assert
actual txnNumbers, starting from 1.) Pass this test's ``clientOptions`` if
present.
- When testing against a sharded cluster and ``useMultipleMongoses`` is
``true`` the client MUST be created with multiple (valid) mongos seed
addreses.
#. Call ``client.startSession`` twice to create ClientSession objects
``session0`` and ``session1``, using the test's "sessionOptions" if they
are present. Save their lsids so they are available after calling
``endSession``, see `Logical Session Id`_.
#. For each element in ``operations``:
- If the operation ``name`` is a special test operation type, execute it and
go to the next operation, otherwise proceed to the next step.
- Enter a "try" block or your programming language's closest equivalent.
- Create a Database object from the MongoClient, using the ``database_name``
field at the top level of the test file.
- Create a Collection object from the Database, using the
``collection_name`` field at the top level of the test file.
If ``collectionOptions`` or ``databaseOptions`` is present, create the
Collection or Database object with the provided options, respectively.
Otherwise create the object with the default options.
- Execute the named method on the provided ``object``, passing the
arguments listed. Pass ``session0`` or ``session1`` to the method,
depending on which session's name is in the arguments list.
If ``arguments`` contains no "session", pass no explicit session to the
method.
- If the driver throws an exception / returns an error while executing this
series of operations, store the error message and server error code.
- If the operation's ``error`` field is ``true``, verify that the method
threw an exception or returned an error.
- If the result document has an "errorContains" field, verify that the
method threw an exception or returned an error, and that the value of the
"errorContains" field matches the error string. "errorContains" is a
substring (case-insensitive) of the actual error message.
If the result document has an "errorCodeName" field, verify that the
method threw a command failed exception or returned an error, and that
the value of the "errorCodeName" field matches the "codeName" in the
server error response.
If the result document has an "errorLabelsContain" field, verify that the
method threw an exception or returned an error. Verify that all of the
error labels in "errorLabelsContain" are present in the error or exception
using the ``hasErrorLabel`` method.
If the result document has an "errorLabelsOmit" field, verify that the
method threw an exception or returned an error. Verify that none of the
error labels in "errorLabelsOmit" are present in the error or exception
using the ``hasErrorLabel`` method.
- If the operation returns a raw command response, eg from ``runCommand``,
then compare only the fields present in the expected result document.
Otherwise, compare the method's return value to ``result`` using the same
logic as the CRUD Spec Tests runner.
#. Call ``session0.endSession()`` and ``session1.endSession``.
#. If the test includes a list of command-started events in ``expectations``,
compare them to the actual command-started events using the
same logic as the Command Monitoring Spec Tests runner, plus the rules in
the Command-Started Events instructions below.
#. If ``failPoint`` is specified, disable the fail point to avoid spurious
failures in subsequent tests. The fail point may be disabled like so::
db.adminCommand({
configureFailPoint: <fail point name>,
mode: "off"
});
#. For each element in ``outcome``:
- If ``name`` is "collection", verify that the test collection contains
exactly the documents in the ``data`` array. Ensure this find reads the
latest data by using **primary read preference** with
**local read concern** even when the MongoClient is configured with
another read preference or read concern.
Note the server does not guarantee that documents returned by a find
command will be in inserted order. This find MUST sort by ``{_id:1}``.
.. _SERVER-38335: https://jira.mongodb.org/browse/SERVER-38335
Special Test Operations
```````````````````````
Certain operations that appear in the "operations" array do not correspond to
API methods but instead represent special test operations. Such operations are
defined on the "testRunner" object and documented here:
targetedFailPoint
~~~~~~~~~~~~~~~~~
The "targetedFailPoint" operation instructs the test runner to configure a fail
point on a specific mongos. The mongos to run the ``configureFailPoint`` is
determined by the "session" argument (either "session0" or "session1").
The session must already be pinned to a mongos server. The "failPoint" argument
is the ``configureFailPoint`` command to run.
If a test uses ``targetedFailPoint``, disable the fail point after running
all ``operations`` to avoid spurious failures in subsequent tests. The fail
point may be disabled like so::
db.adminCommand({
configureFailPoint: <fail point name>,
mode: "off"
});
Here is an example which instructs the test runner to enable the failCommand
fail point on the mongos server which "session0" is pinned to::
# Enable the fail point only on the Mongos that session0 is pinned to.
- name: targetedFailPoint
object: testRunner
arguments:
session: session0
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["commitTransaction"]
closeConnection: true
Tests that use the "targetedFailPoint" operation do not include
``configureFailPoint`` commands in their command expectations. Drivers MUST
ensure that ``configureFailPoint`` commands do not appear in the list of logged
commands, either by manually filtering it from the list of observed commands or
by using a different MongoClient to execute ``configureFailPoint``.
assertSessionTransactionState
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The "assertSessionTransactionState" operation instructs the test runner to
assert that the transaction state of the given session is equal to the
specified value. The possible values are as follows: ``none``, ``starting``,
``in_progress``, ``committed``, ``aborted``::
- name: assertSessionTransactionState
object: testRunner
arguments:
session: session0
state: in_progress
assertSessionPinned
~~~~~~~~~~~~~~~~~~~
The "assertSessionPinned" operation instructs the test runner to assert that
the given session is pinned to a mongos::
- name: assertSessionPinned
object: testRunner
arguments:
session: session0
assertSessionUnpinned
~~~~~~~~~~~~~~~~~~~~~
The "assertSessionUnpinned" operation instructs the test runner to assert that
the given session is not pinned to a mongos::
- name: assertSessionPinned
object: testRunner
arguments:
session: session0
assertCollectionExists
~~~~~~~~~~~~~~~~~~~~~~
The "assertCollectionExists" operation instructs the test runner to assert that
the given collection exists in the database::
- name: assertCollectionExists
object: testRunner
arguments:
database: db
collection: test
Use a ``listCollections`` command to check whether the collection exists. Note
that it is currently not possible to run ``listCollections`` from within a
transaction.
assertCollectionNotExists
~~~~~~~~~~~~~~~~~~~~~~~~~
The "assertCollectionNotExists" operation instructs the test runner to assert
that the given collection does not exist in the database::
- name: assertCollectionNotExists
object: testRunner
arguments:
database: db
collection: test
Use a ``listCollections`` command to check whether the collection exists. Note
that it is currently not possible to run ``listCollections`` from within a
transaction.
assertIndexExists
~~~~~~~~~~~~~~~~~
The "assertIndexExists" operation instructs the test runner to assert that the
index with the given name exists on the collection::
- name: assertIndexExists
object: testRunner
arguments:
database: db
collection: test
index: t_1
Use a ``listIndexes`` command to check whether the index exists. Note that it is
currently not possible to run ``listIndexes`` from within a transaction.
assertIndexNotExists
~~~~~~~~~~~~~~~~~~~~
The "assertIndexNotExists" operation instructs the test runner to assert that
the index with the given name does not exist on the collection::
- name: assertIndexNotExists
object: testRunner
arguments:
database: db
collection: test
index: t_1
Use a ``listIndexes`` command to check whether the index exists. Note that it is
currently not possible to run ``listIndexes`` from within a transaction.
Command-Started Events
``````````````````````
The event listener used for these tests MUST ignore the security commands
listed in the Command Monitoring Spec.
Logical Session Id
~~~~~~~~~~~~~~~~~~
Each command-started event in ``expectations`` includes an ``lsid`` with the
value "session0" or "session1". Tests MUST assert that the command's actual
``lsid`` matches the id of the correct ClientSession named ``session0`` or
``session1``.
Null Values
~~~~~~~~~~~
Some command-started events in ``expectations`` include ``null`` values for
fields such as ``txnNumber``, ``autocommit``, and ``writeConcern``.
Tests MUST assert that the actual command **omits** any field that has a
``null`` value in the expected command.
Cursor Id
^^^^^^^^^
A ``getMore`` value of ``"42"`` in a command-started event is a fake cursorId
that MUST be ignored. (In the Command Monitoring Spec tests, fake cursorIds are
correlated with real ones, but that is not necessary for Transactions Spec
tests.)
afterClusterTime
^^^^^^^^^^^^^^^^
A ``readConcern.afterClusterTime`` value of ``42`` in a command-started event
is a fake cluster time. Drivers MUST assert that the actual command includes an
afterClusterTime.
recoveryToken
^^^^^^^^^^^^^
A ``recoveryToken`` value of ``42`` in a command-started event is a
placeholder for an arbitrary recovery token. Drivers MUST assert that the
actual command includes a "recoveryToken" field and SHOULD assert that field
is a BSON document.
Mongos Pinning Prose Tests
==========================
The following tests ensure that a ClientSession is properly unpinned after
a sharded transaction. Initialize these tests with a MongoClient connected
to multiple mongoses.
These tests use a cursor's address field to track which server an operation
was run on. If this is not possible in your driver, use command monitoring
instead.
#. Test that starting a new transaction on a pinned ClientSession unpins the
session and normal server selection is performed for the next operation.
.. code:: python
@require_server_version(4, 1, 6)
@require_mongos_count_at_least(2)
def test_unpin_for_next_transaction(self):
# Increase localThresholdMS and wait until both nodes are discovered
# to avoid false positives.
client = MongoClient(mongos_hosts, localThresholdMS=1000)
wait_until(lambda: len(client.nodes) > 1)
# Create the collection.
client.test.test.insert_one({})
with client.start_session() as s:
# Session is pinned to Mongos.
with s.start_transaction():
client.test.test.insert_one({}, session=s)
addresses = set()
for _ in range(50):
with s.start_transaction():
cursor = client.test.test.find({}, session=s)
assert next(cursor)
addresses.add(cursor.address)
assert len(addresses) > 1
#. Test non-transaction operations using a pinned ClientSession unpins the
session and normal server selection is performed.
.. code:: python
@require_server_version(4, 1, 6)
@require_mongos_count_at_least(2)
def test_unpin_for_non_transaction_operation(self):
# Increase localThresholdMS and wait until both nodes are discovered
# to avoid false positives.
client = MongoClient(mongos_hosts, localThresholdMS=1000)
wait_until(lambda: len(client.nodes) > 1)
# Create the collection.
client.test.test.insert_one({})
with client.start_session() as s:
# Session is pinned to Mongos.
with s.start_transaction():
client.test.test.insert_one({}, session=s)
addresses = set()
for _ in range(50):
cursor = client.test.test.find({}, session=s)
assert next(cursor)
addresses.add(cursor.address)
assert len(addresses) > 1
Q & A
=====
Why do some tests appear to hang for 60 seconds on a sharded cluster?
`````````````````````````````````````````````````````````````````````
There are two cases where this can happen. When the initial commitTransaction
attempt fails on mongos A and is retried on mongos B, mongos B will block
waiting for the transaction to complete. However because the initial commit
attempt failed, the command will only complete after the transaction is
automatically aborted for exceeding the shard's
transactionLifetimeLimitSeconds setting. `SERVER-39726`_ requests that
recovering the outcome of an uncommitted transaction should immediately abort
the transaction.
The second case is when a *single-shard* transaction is committed successfully
on mongos A and then explicitly committed again on mongos B. Mongos B will also
block until the transactionLifetimeLimitSeconds timeout is hit at which point
``{ok:1}`` will be returned. `SERVER-39349`_ requests that recovering the
outcome of a completed single-shard transaction should not block.
Note that this test suite only includes single shard transactions.
To workaround these issues, drivers SHOULD decrease the transaction timeout
setting by running setParameter **on each shard**. Setting the timeout to 3
seconds significantly speeds up the test suite without a high risk of
prematurely timing out any tests' transactions. To decrease the timeout, run::
db.adminCommand( { setParameter: 1, transactionLifetimeLimitSeconds: 3 } )
Note that mongo-orchestration >=0.6.13 automatically sets this timeout to 3
seconds so drivers using mongo-orchestration do not need to run these commands
manually.
.. _SERVER-39726: https://jira.mongodb.org/browse/SERVER-39726
.. _SERVER-39349: https://jira.mongodb.org/browse/SERVER-39349
Why do tests that run distinct sometimes fail with StaleDbVersion?
``````````````````````````````````````````````````````````````````
When a shard receives its first command that contains a dbVersion, the shard
returns a StaleDbVersion error and the Mongos retries the operation. In a
sharded transaction, Mongos does not retry these operations and instead returns
the error to the client. For example::
Command distinct failed: Transaction aa09e296-472a-494f-8334-48d57ab530b6:1 was aborted on statement 0 due to: an error from cluster data placement change :: caused by :: got stale databaseVersion response from shard sh01 at host localhost:27217 :: caused by :: don't know dbVersion.
To workaround this limitation, a driver test runner MUST run a
non-transactional ``distinct`` command on each Mongos before running any test
that uses ``distinct``. To ease the implementation drivers can simply run
``distinct`` before *every* test.
Note that drivers can remove this workaround once `SERVER-39704`_ is resolved
so that mongos retries this operation transparently. The ``distinct`` command
is the only command allowed in a sharded transaction that uses the
``dbVersion`` concept so it is the only command affected.
.. _SERVER-39704: https://jira.mongodb.org/browse/SERVER-39704
Changelog
=========
:2019-05-15: Add operation level ``error`` field to assert any error.
:2019-03-25: Add workaround for StaleDbVersion on distinct.
:2019-03-01: Add top-level ``runOn`` field to denote server version and/or
topology requirements requirements for the test file. Removes the
``topology`` top-level field, which is now expressed within
``runOn`` elements.
:2019-02-28: ``useMultipleMongoses: true`` and non-targeted fail points are
mutually exclusive.
:2019-02-13: Modify test format for 4.2 sharded transactions, including
"useMultipleMongoses", ``object: testRunner``, the
``targetedFailPoint`` operation, and recoveryToken assertions.
|