Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 5dbc4a1

Browse files
committed
Add benchmark to test peer selection performance
1 parent 097ce85 commit 5dbc4a1

File tree

4 files changed

+271
-171
lines changed

4 files changed

+271
-171
lines changed

benchmarks/test_peer_selection.py

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# Copyright (c) 2015 Uber Technologies, Inc.
2+
#
3+
# Permission is hereby granted, free of charge, to any person obtaining a copy
4+
# of this software and associated documentation files (the "Software"), to deal
5+
# in the Software without restriction, including without limitation the rights
6+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
# copies of the Software, and to permit persons to whom the Software is
8+
# furnished to do so, subject to the following conditions:
9+
#
10+
# The above copyright notice and this permission notice shall be included in
11+
# all copies or substantial portions of the Software.
12+
#
13+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
# THE SOFTWARE.
20+
21+
from __future__ import absolute_import, unicode_literals, print_function
22+
23+
import mock
24+
import random
25+
26+
from tchannel.tornado.peer import (
27+
Peer as _Peer,
28+
PeerGroup as _PeerGroup,
29+
)
30+
31+
32+
NUM_PEERS = 1000
33+
34+
35+
class FakeConnection(object):
36+
37+
def __init__(self, hostport):
38+
self.hostport = hostport
39+
self.closed = False
40+
41+
@classmethod
42+
def outgoing(cls, hostport, process_name=None, serve_hostport=None,
43+
handler=None, tchannel=None):
44+
return FakeConnection(hostport)
45+
46+
def add_done_callback(self, cb):
47+
return cb(self)
48+
49+
def exception(self):
50+
return None
51+
52+
def result(self):
53+
return self
54+
55+
56+
class Peer(_Peer):
57+
connection_class = FakeConnection
58+
59+
60+
class PeerGroup(_PeerGroup):
61+
peer_class = Peer
62+
63+
64+
def hostport():
65+
host = b'.'.join(bytes(random.randint(0, 255)) for i in xrange(4))
66+
port = random.randint(1000, 30000)
67+
return b'%s:%d' % (host, port)
68+
69+
70+
def peer(tchannel, hostport):
71+
return Peer(tchannel, hostport)
72+
73+
74+
def test_choose(benchmark):
75+
tchannel = mock.MagicMock()
76+
group = PeerGroup(tchannel)
77+
78+
# Register 1000 random peers
79+
for i in xrange(NUM_PEERS):
80+
peer = group.get(hostport())
81+
82+
connected_peers = set()
83+
84+
# Add one outgoing connection to a random peer.
85+
peer = group.peers[random.randint(0, NUM_PEERS-1)]
86+
peer.connect()
87+
connected_peers.add(peer.hostport)
88+
89+
# Add incoming connections from 50 random peers.
90+
while len(connected_peers) < 50:
91+
peer = group.peers[random.randint(0, NUM_PEERS-1)]
92+
if peer.hostport in connected_peers:
93+
continue
94+
peer.register_incoming(FakeConnection(peer.hostport))
95+
connected_peers.add(peer.hostport)
96+
97+
benchmark(group.choose)

hooks/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if [[ ! -x "$LICENSE_EXEC" ]]; then
3636
popd &>/dev/null
3737
fi
3838

39-
for d in tchannel tests examples; do
39+
for d in tchannel tests benchmarks examples; do
4040
pushd "$ROOT/$d" &>/dev/null
4141
ensure_license
4242
popd &>/dev/null

requirements-test.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pytest<2.8.0
33
pytest-cov
44
pytest-timeout
55
pytest-tornado
6+
pytest-benchmark[histogram]==3.0.0rc1
67

78
# Property based tests
89
hypothesis-pytest==0.12.0

0 commit comments

Comments
 (0)