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
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe 'Connection pool stress test' do
require_stress
let(:options) do
{ max_pool_size: 5, min_pool_size: 3 }
end
let(:thread_count) { 5 }
let(:documents) do
[].tap do |documents|
10000.times do |i|
documents << { a: i}
end
end
end
let(:operation_threads) do
[].tap do |threads|
thread_count.times do |i|
threads << Thread.new do
100.times do |j|
collection.find(a: i+j).to_a
sleep 0.1
collection.find(a: i+j).to_a
end
end
end
end
end
let(:client) do
authorized_client.with(options)
end
let(:collection) do
client[authorized_collection.name].tap do |collection|
collection.drop
collection.insert_many(documents)
end
end
shared_examples_for 'does not raise error' do
it 'does not raise error' do
collection
expect {
threads.collect { |t| t.join }
}.not_to raise_error
end
end
describe 'when several threads run operations on the collection' do
let(:threads) { operation_threads }
context 'min pool size 0, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 0 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
context 'min pool size 1, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 1 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
context 'min pool size 2, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 2 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
context 'min pool size 3, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 3 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
context 'min pool size 4, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 4 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
context 'min pool size 5, max pool size 5' do
let(:options) do
{ max_pool_size: 5, min_pool_size: 5 }
end
let(:thread_count) { 7 }
it_behaves_like 'does not raise error'
end
end
describe 'when there are many more threads than the max pool size' do
let(:threads) { operation_threads }
context '10 threads, max pool size 5' do
let(:thread_count) { 10 }
it_behaves_like 'does not raise error'
end
context '15 threads, max pool size 5' do
let(:thread_count) { 15 }
it_behaves_like 'does not raise error'
end
context '20 threads, max pool size 5' do
let(:thread_count) { 20 }
it_behaves_like 'does not raise error'
end
context '25 threads, max pool size 5' do
let(:thread_count) { 25 }
it_behaves_like 'does not raise error'
end
end
end
|