|
| 1 | +# Copyright 2015-present MongoDB, Inc. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +"""Test AsyncMongoClient's mongos load balancing using a mock.""" |
| 16 | +from __future__ import annotations |
| 17 | + |
| 18 | +import asyncio |
| 19 | +import sys |
| 20 | +import threading |
| 21 | +from test.asynchronous.helpers import ConcurrentRunner |
| 22 | + |
| 23 | +from pymongo.operations import _Op |
| 24 | + |
| 25 | +sys.path[0:0] = [""] |
| 26 | + |
| 27 | +from test.asynchronous import AsyncMockClientTest, async_client_context, connected, unittest |
| 28 | +from test.asynchronous.pymongo_mocks import AsyncMockClient |
| 29 | +from test.utils import async_wait_until |
| 30 | + |
| 31 | +from pymongo.errors import AutoReconnect, InvalidOperation |
| 32 | +from pymongo.server_selectors import writable_server_selector |
| 33 | +from pymongo.topology_description import TOPOLOGY_TYPE |
| 34 | + |
| 35 | +_IS_SYNC = False |
| 36 | + |
| 37 | + |
| 38 | +class SimpleOp(ConcurrentRunner): |
| 39 | + def __init__(self, client): |
| 40 | + super().__init__() |
| 41 | + self.client = client |
| 42 | + self.passed = False |
| 43 | + |
| 44 | + async def run(self): |
| 45 | + await self.client.db.command("ping") |
| 46 | + self.passed = True # No exception raised. |
| 47 | + |
| 48 | + |
| 49 | +async def do_simple_op(client, ntasks): |
| 50 | + tasks = [SimpleOp(client) for _ in range(ntasks)] |
| 51 | + for t in tasks: |
| 52 | + await t.start() |
| 53 | + |
| 54 | + for t in tasks: |
| 55 | + await t.join() |
| 56 | + |
| 57 | + for t in tasks: |
| 58 | + assert t.passed |
| 59 | + |
| 60 | + |
| 61 | +async def writable_addresses(topology): |
| 62 | + return { |
| 63 | + server.description.address |
| 64 | + for server in await topology.select_servers(writable_server_selector, _Op.TEST) |
| 65 | + } |
| 66 | + |
| 67 | + |
| 68 | +class TestMongosLoadBalancing(AsyncMockClientTest): |
| 69 | + @async_client_context.require_connection |
| 70 | + @async_client_context.require_no_load_balancer |
| 71 | + async def asyncSetUp(self): |
| 72 | + await super().asyncSetUp() |
| 73 | + |
| 74 | + def mock_client(self, **kwargs): |
| 75 | + mock_client = AsyncMockClient( |
| 76 | + standalones=[], |
| 77 | + members=[], |
| 78 | + mongoses=["a:1", "b:2", "c:3"], |
| 79 | + host="a:1,b:2,c:3", |
| 80 | + connect=False, |
| 81 | + **kwargs, |
| 82 | + ) |
| 83 | + self.addAsyncCleanup(mock_client.aclose) |
| 84 | + |
| 85 | + # Latencies in seconds. |
| 86 | + mock_client.mock_rtts["a:1"] = 0.020 |
| 87 | + mock_client.mock_rtts["b:2"] = 0.025 |
| 88 | + mock_client.mock_rtts["c:3"] = 0.045 |
| 89 | + return mock_client |
| 90 | + |
| 91 | + async def test_lazy_connect(self): |
| 92 | + # While connected() ensures we can trigger connection from the main |
| 93 | + # thread and wait for the monitors, this test triggers connection from |
| 94 | + # several threads at once to check for data races. |
| 95 | + nthreads = 10 |
| 96 | + client = self.mock_client() |
| 97 | + self.assertEqual(0, len(client.nodes)) |
| 98 | + |
| 99 | + # Trigger initial connection. |
| 100 | + await do_simple_op(client, nthreads) |
| 101 | + await async_wait_until(lambda: len(client.nodes) == 3, "connect to all mongoses") |
| 102 | + |
| 103 | + async def test_failover(self): |
| 104 | + ntasks = 10 |
| 105 | + client = await connected(self.mock_client(localThresholdMS=0.001)) |
| 106 | + await async_wait_until(lambda: len(client.nodes) == 3, "connect to all mongoses") |
| 107 | + |
| 108 | + # Our chosen mongos goes down. |
| 109 | + client.kill_host("a:1") |
| 110 | + |
| 111 | + # Trigger failover to higher-latency nodes. AutoReconnect should be |
| 112 | + # raised at most once in each thread. |
| 113 | + passed = [] |
| 114 | + |
| 115 | + async def f(): |
| 116 | + try: |
| 117 | + await client.db.command("ping") |
| 118 | + except AutoReconnect: |
| 119 | + # Second attempt succeeds. |
| 120 | + await client.db.command("ping") |
| 121 | + |
| 122 | + passed.append(True) |
| 123 | + |
| 124 | + tasks = [ConcurrentRunner(target=f) for _ in range(ntasks)] |
| 125 | + for t in tasks: |
| 126 | + await t.start() |
| 127 | + |
| 128 | + for t in tasks: |
| 129 | + await t.join() |
| 130 | + |
| 131 | + self.assertEqual(ntasks, len(passed)) |
| 132 | + |
| 133 | + # Down host removed from list. |
| 134 | + self.assertEqual(2, len(client.nodes)) |
| 135 | + |
| 136 | + async def test_local_threshold(self): |
| 137 | + client = await connected(self.mock_client(localThresholdMS=30)) |
| 138 | + self.assertEqual(30, client.options.local_threshold_ms) |
| 139 | + await async_wait_until(lambda: len(client.nodes) == 3, "connect to all mongoses") |
| 140 | + topology = client._topology |
| 141 | + |
| 142 | + # All are within a 30-ms latency window, see self.mock_client(). |
| 143 | + self.assertEqual({("a", 1), ("b", 2), ("c", 3)}, await writable_addresses(topology)) |
| 144 | + |
| 145 | + # No error |
| 146 | + await client.admin.command("ping") |
| 147 | + |
| 148 | + client = await connected(self.mock_client(localThresholdMS=0)) |
| 149 | + self.assertEqual(0, client.options.local_threshold_ms) |
| 150 | + # No error |
| 151 | + await client.db.command("ping") |
| 152 | + # Our chosen mongos goes down. |
| 153 | + client.kill_host("{}:{}".format(*next(iter(client.nodes)))) |
| 154 | + try: |
| 155 | + await client.db.command("ping") |
| 156 | + except: |
| 157 | + pass |
| 158 | + |
| 159 | + # We eventually connect to a new mongos. |
| 160 | + async def connect_to_new_mongos(): |
| 161 | + try: |
| 162 | + return await client.db.command("ping") |
| 163 | + except AutoReconnect: |
| 164 | + pass |
| 165 | + |
| 166 | + await async_wait_until(connect_to_new_mongos, "connect to a new mongos") |
| 167 | + |
| 168 | + async def test_load_balancing(self): |
| 169 | + # Although the server selection JSON tests already prove that |
| 170 | + # select_servers works for sharded topologies, here we do an end-to-end |
| 171 | + # test of discovering servers' round trip times and configuring |
| 172 | + # localThresholdMS. |
| 173 | + client = await connected(self.mock_client()) |
| 174 | + await async_wait_until(lambda: len(client.nodes) == 3, "connect to all mongoses") |
| 175 | + |
| 176 | + # Prohibited for topology type Sharded. |
| 177 | + with self.assertRaises(InvalidOperation): |
| 178 | + await client.address |
| 179 | + |
| 180 | + topology = client._topology |
| 181 | + self.assertEqual(TOPOLOGY_TYPE.Sharded, topology.description.topology_type) |
| 182 | + |
| 183 | + # a and b are within the 15-ms latency window, see self.mock_client(). |
| 184 | + self.assertEqual({("a", 1), ("b", 2)}, await writable_addresses(topology)) |
| 185 | + |
| 186 | + client.mock_rtts["a:1"] = 0.045 |
| 187 | + |
| 188 | + # Discover only b is within latency window. |
| 189 | + async def predicate(): |
| 190 | + return {("b", 2)} == await writable_addresses(topology) |
| 191 | + |
| 192 | + await async_wait_until( |
| 193 | + predicate, |
| 194 | + 'discover server "a" is too far', |
| 195 | + ) |
| 196 | + |
| 197 | + |
| 198 | +if __name__ == "__main__": |
| 199 | + unittest.main() |
0 commit comments