bson/testdata/retryable-writes/legacy/insertOne-serverErrors.yml
2025-03-17 20:58:26 +01:00

528 lines
17 KiB
YAML

runOn:
-
minServerVersion: "4.0"
topology: ["replicaset"]
-
minServerVersion: "4.1.7"
topology: ["sharded", "load-balanced"]
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
tests:
-
description: "InsertOne succeeds after connection failure"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
closeConnection: true
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne fails after connection failure when retryWrites option is false"
clientOptions:
retryWrites: false
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
closeConnection: true
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
# If retryWrites is false, the driver should not add the
# RetryableWriteError label to the error.
errorLabelsOmit: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
-
description: "InsertOne succeeds after NotWritablePrimary"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 10107
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after NotPrimaryOrSecondary"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 13436
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after NotPrimaryNoSecondaryOk"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 13435
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after InterruptedDueToReplStateChange"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 11602
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after InterruptedAtShutdown"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 11600
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after PrimarySteppedDown"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 189
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after ShutdownInProgress"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 91
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after HostNotFound"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 7
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after HostUnreachable"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 6
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after SocketException"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 9001
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after NetworkTimeout"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 89
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after ExceededTimeLimit"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 262
errorLabels: ["RetryableWriteError"]
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne fails after Interrupted"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
errorCode: 11601
closeConnection: false
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
errorLabelsOmit: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
-
description: "InsertOne succeeds after WriteConcernError InterruptedAtShutdown"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 11600
errmsg: Replication is being shut down
errorLabels: ["RetryableWriteError"]
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after WriteConcernError InterruptedDueToReplStateChange"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 11602
errmsg: Replication is being shut down
errorLabels: ["RetryableWriteError"]
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after WriteConcernError PrimarySteppedDown"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 189
errmsg: Replication is being shut down
errorLabels: ["RetryableWriteError"]
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne succeeds after WriteConcernError ShutdownInProgress"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 91
errmsg: Replication is being shut down
errorLabels: ["RetryableWriteError"]
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
result:
insertedId: 3
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 }
-
description: "InsertOne fails after multiple retryable writeConcernErrors"
failPoint:
configureFailPoint: failCommand
mode: { times: 2 }
data:
failCommands: ["insert"]
writeConcernError:
code: 91
errmsg: Replication is being shut down
errorLabels: ["RetryableWriteError"]
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
errorLabelsContain: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 } # The write was still applied.
-
description: "InsertOne fails after WriteConcernError Interrupted"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 11601
errmsg: operation was interrupted
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
errorLabelsOmit: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 } # The write was still applied.
-
description: "InsertOne fails after WriteConcernError WriteConcernFailed"
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["insert"]
writeConcernError:
code: 64
codeName: WriteConcernFailed
errmsg: waiting for replication timed out
errInfo: {wtimeout: True}
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
errorLabelsOmit: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }
- { _id: 3, x: 33 } # The write was still applied.
-
description: "InsertOne fails with a RetryableWriteError label after two connection failures"
failPoint:
configureFailPoint: failCommand
mode: { times: 2 }
data:
failCommands: ["insert"]
closeConnection: true
operation:
name: "insertOne"
arguments:
document: { _id: 3, x: 33 }
outcome:
error: true
result:
errorLabelsContain: ["RetryableWriteError"]
collection:
data:
- { _id: 1, x: 11 }
- { _id: 2, x: 22 }