Sha256: 6353523d25d0d84fa6eceac324ada6c73e30bc9ef760cfe8a086ce8628fc53e2

Contents?: true

Size: 1.34 KB

Versions: 9

Compression:

Stored size: 1.34 KB

Contents

version: 1
style: integration
description: custom maxConnecting is enforced
runOn:
  - minServerVersion: "4.4.0"
  - topology: [ "single", "replicaset", "sharded" ]
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

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
mongo-2.21.0 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.20.1 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mogno-2.20.0 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mogno-1.0.0 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.20.0 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.19.3 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.19.2 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.19.1 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml
mongo-2.19.0 spec/spec_tests/data/cmap/pool-checkout-custom-maxConnecting-is-enforced.yml