512 lines
13 KiB
JSON
512 lines
13 KiB
JSON
{
|
|
"runOn": [
|
|
{
|
|
"minServerVersion": "4.1.8",
|
|
"topology": [
|
|
"sharded"
|
|
],
|
|
"serverless": "forbid"
|
|
}
|
|
],
|
|
"database_name": "transaction-tests",
|
|
"collection_name": "test",
|
|
"data": [],
|
|
"tests": [
|
|
{
|
|
"description": "commitTransaction explicit retries include recoveryToken",
|
|
"useMultipleMongoses": true,
|
|
"operations": [
|
|
{
|
|
"name": "startTransaction",
|
|
"object": "session0"
|
|
},
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"document": {
|
|
"_id": 1
|
|
}
|
|
},
|
|
"result": {
|
|
"insertedId": 1
|
|
}
|
|
},
|
|
{
|
|
"name": "commitTransaction",
|
|
"object": "session0"
|
|
},
|
|
{
|
|
"name": "commitTransaction",
|
|
"object": "session0"
|
|
},
|
|
{
|
|
"name": "commitTransaction",
|
|
"object": "session0"
|
|
}
|
|
],
|
|
"expectations": [
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
],
|
|
"ordered": true,
|
|
"readConcern": null,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": true,
|
|
"autocommit": false,
|
|
"writeConcern": null
|
|
},
|
|
"command_name": "insert",
|
|
"database_name": "transaction-tests"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": null,
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": {
|
|
"w": "majority",
|
|
"wtimeout": 10000
|
|
},
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": {
|
|
"w": "majority",
|
|
"wtimeout": 10000
|
|
},
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
}
|
|
],
|
|
"outcome": {
|
|
"collection": {
|
|
"data": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"description": "commitTransaction retry succeeds on new mongos",
|
|
"useMultipleMongoses": true,
|
|
"operations": [
|
|
{
|
|
"name": "startTransaction",
|
|
"object": "session0",
|
|
"arguments": {
|
|
"options": {
|
|
"writeConcern": {
|
|
"w": "majority"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"document": {
|
|
"_id": 1
|
|
}
|
|
},
|
|
"result": {
|
|
"insertedId": 1
|
|
}
|
|
},
|
|
{
|
|
"name": "targetedFailPoint",
|
|
"object": "testRunner",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"failPoint": {
|
|
"configureFailPoint": "failCommand",
|
|
"mode": {
|
|
"times": 1
|
|
},
|
|
"data": {
|
|
"failCommands": [
|
|
"commitTransaction"
|
|
],
|
|
"writeConcernError": {
|
|
"code": 91,
|
|
"errmsg": "Replication is being shut down",
|
|
"errorLabels": [
|
|
"RetryableWriteError"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "commitTransaction",
|
|
"object": "session0"
|
|
}
|
|
],
|
|
"expectations": [
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
],
|
|
"ordered": true,
|
|
"readConcern": null,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": true,
|
|
"autocommit": false,
|
|
"writeConcern": null
|
|
},
|
|
"command_name": "insert",
|
|
"database_name": "transaction-tests"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": {
|
|
"w": "majority"
|
|
},
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": {
|
|
"w": "majority",
|
|
"wtimeout": 10000
|
|
},
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
}
|
|
],
|
|
"outcome": {
|
|
"collection": {
|
|
"data": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"description": "commitTransaction retry fails on new mongos",
|
|
"useMultipleMongoses": true,
|
|
"clientOptions": {
|
|
"heartbeatFrequencyMS": 30000
|
|
},
|
|
"operations": [
|
|
{
|
|
"name": "startTransaction",
|
|
"object": "session0"
|
|
},
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"document": {
|
|
"_id": 1
|
|
}
|
|
},
|
|
"result": {
|
|
"insertedId": 1
|
|
}
|
|
},
|
|
{
|
|
"name": "targetedFailPoint",
|
|
"object": "testRunner",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"failPoint": {
|
|
"configureFailPoint": "failCommand",
|
|
"mode": {
|
|
"times": 7
|
|
},
|
|
"data": {
|
|
"failCommands": [
|
|
"commitTransaction",
|
|
"isMaster",
|
|
"hello"
|
|
],
|
|
"closeConnection": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "commitTransaction",
|
|
"object": "session0",
|
|
"result": {
|
|
"errorLabelsContain": [
|
|
"TransientTransactionError"
|
|
],
|
|
"errorLabelsOmit": [
|
|
"UnknownTransactionCommitResult"
|
|
],
|
|
"errorCodeName": "NoSuchTransaction"
|
|
}
|
|
}
|
|
],
|
|
"expectations": [
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
],
|
|
"ordered": true,
|
|
"readConcern": null,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": true,
|
|
"autocommit": false,
|
|
"writeConcern": null
|
|
},
|
|
"command_name": "insert",
|
|
"database_name": "transaction-tests"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": null,
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"commitTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": {
|
|
"w": "majority",
|
|
"wtimeout": 10000
|
|
},
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "commitTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
}
|
|
],
|
|
"outcome": {
|
|
"collection": {
|
|
"data": []
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"description": "abortTransaction sends recoveryToken",
|
|
"useMultipleMongoses": true,
|
|
"operations": [
|
|
{
|
|
"name": "startTransaction",
|
|
"object": "session0"
|
|
},
|
|
{
|
|
"name": "insertOne",
|
|
"object": "collection",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"document": {
|
|
"_id": 1
|
|
}
|
|
},
|
|
"result": {
|
|
"insertedId": 1
|
|
}
|
|
},
|
|
{
|
|
"name": "targetedFailPoint",
|
|
"object": "testRunner",
|
|
"arguments": {
|
|
"session": "session0",
|
|
"failPoint": {
|
|
"configureFailPoint": "failCommand",
|
|
"mode": {
|
|
"times": 1
|
|
},
|
|
"data": {
|
|
"failCommands": [
|
|
"abortTransaction"
|
|
],
|
|
"closeConnection": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "abortTransaction",
|
|
"object": "session0"
|
|
}
|
|
],
|
|
"expectations": [
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"insert": "test",
|
|
"documents": [
|
|
{
|
|
"_id": 1
|
|
}
|
|
],
|
|
"ordered": true,
|
|
"readConcern": null,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": true,
|
|
"autocommit": false,
|
|
"writeConcern": null
|
|
},
|
|
"command_name": "insert",
|
|
"database_name": "transaction-tests"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"abortTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": null,
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "abortTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
},
|
|
{
|
|
"command_started_event": {
|
|
"command": {
|
|
"abortTransaction": 1,
|
|
"lsid": "session0",
|
|
"txnNumber": {
|
|
"$numberLong": "1"
|
|
},
|
|
"startTransaction": null,
|
|
"autocommit": false,
|
|
"writeConcern": null,
|
|
"recoveryToken": 42
|
|
},
|
|
"command_name": "abortTransaction",
|
|
"database_name": "admin"
|
|
}
|
|
}
|
|
],
|
|
"outcome": {
|
|
"collection": {
|
|
"data": []
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|