-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
10 changed files
with
195 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
...pec/connection-monitoring-and-pooling/pool-checkout-custom-maxConnecting-is-enforced.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"version": 1, | ||
"style": "integration", | ||
"description": "custom maxConnecting is enforced", | ||
"runOn": [ | ||
{ | ||
"minServerVersion": "4.4.0" | ||
} | ||
], | ||
"failPoint": { | ||
"configureFailPoint": "failCommand", | ||
"mode": "alwaysOn", | ||
"data": { | ||
"failCommands": [ | ||
"isMaster", | ||
"hello" | ||
], | ||
"closeConnection": false, | ||
"blockConnection": true, | ||
"blockTimeMS": 500 | ||
} | ||
}, | ||
"poolOptions": { | ||
"maxConnecting": 1, | ||
"maxPoolSize": 2, | ||
"waitQueueTimeoutMS": 5000 | ||
}, | ||
"operations": [ | ||
{ | ||
"name": "ready" | ||
}, | ||
{ | ||
"name": "start", | ||
"target": "thread1" | ||
}, | ||
{ | ||
"name": "start", | ||
"target": "thread2" | ||
}, | ||
{ | ||
"name": "checkOut", | ||
"thread": "thread1" | ||
}, | ||
{ | ||
"name": "waitForEvent", | ||
"event": "ConnectionCreated", | ||
"count": 1 | ||
}, | ||
{ | ||
"name": "checkOut", | ||
"thread": "thread2" | ||
}, | ||
{ | ||
"name": "waitForEvent", | ||
"event": "ConnectionReady", | ||
"count": 2 | ||
} | ||
], | ||
"events": [ | ||
{ | ||
"type": "ConnectionCreated" | ||
}, | ||
{ | ||
"type": "ConnectionReady" | ||
}, | ||
{ | ||
"type": "ConnectionCreated" | ||
}, | ||
{ | ||
"type": "ConnectionReady" | ||
} | ||
], | ||
"ignore": [ | ||
"ConnectionCheckOutStarted", | ||
"ConnectionCheckedIn", | ||
"ConnectionCheckedOut", | ||
"ConnectionClosed", | ||
"ConnectionPoolCreated", | ||
"ConnectionPoolReady" | ||
] | ||
} |
50 changes: 50 additions & 0 deletions
50
...spec/connection-monitoring-and-pooling/pool-checkout-custom-maxConnecting-is-enforced.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
version: 1 | ||
style: integration | ||
description: custom maxConnecting is enforced | ||
runOn: | ||
- | ||
minServerVersion: "4.4.0" | ||
failPoint: | ||
configureFailPoint: failCommand | ||
mode: "alwaysOn" | ||
data: | ||
failCommands: ["isMaster","hello"] | ||
closeConnection: false | ||
blockConnection: true | ||
blockTimeMS: 500 | ||
poolOptions: | ||
maxConnecting: 1 | ||
# gives opportunity for the checkout in thread2 to establish a new connection, which it must not do until thread1 establishes one | ||
maxPoolSize: 2 | ||
waitQueueTimeoutMS: 5000 | ||
operations: | ||
- name: ready | ||
# thread1 exists to consume the single permit to open a connection, | ||
# so that thread2 would be blocked acquiring a permit, which results in ordering its ConnectionCreated event after | ||
# the ConnectionReady event from thread1. | ||
- name: start | ||
target: thread1 | ||
- name: start | ||
target: thread2 | ||
- name: checkOut | ||
thread: thread1 | ||
- name: waitForEvent | ||
event: ConnectionCreated | ||
count: 1 | ||
- name: checkOut | ||
thread: thread2 | ||
- name: waitForEvent | ||
event: ConnectionReady | ||
count: 2 | ||
events: | ||
- type: ConnectionCreated | ||
- type: ConnectionReady | ||
- type: ConnectionCreated | ||
- type: ConnectionReady | ||
ignore: | ||
- ConnectionCheckOutStarted | ||
- ConnectionCheckedIn | ||
- ConnectionCheckedOut | ||
- ConnectionClosed | ||
- ConnectionPoolCreated | ||
- ConnectionPoolReady |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters