forked from arvidn/libtorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_benchmarks.py
executable file
·438 lines (365 loc) · 14.4 KB
/
run_benchmarks.py
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#!/usr/bin/env python3
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
from __future__ import print_function
import sys
import os
import resource
import shutil
import shlex
import time
import subprocess
import random
import signal
import hashlib
# this is a disk I/O benchmark script. It runs benchmarks
# over different number of peers.
# to set up the test, build the example directory in release
# and stage client_test and connection_tester to the examples directory:
#
# bjam link=static release debug-symbols=on stage
#
# make sure gnuplot is installed.
# the following lists define the space tests will be run in
peers = [50, 200, 500, 1000]
# builds = ['rtorrent', 'utorrent', 'libtorrent']
builds = ['libtorrent']
# the number of peers for the filesystem test. The
# idea is to stress test the filesystem by using a lot
# of peers, since each peer essentially is a separate
# read location on the platter
default_peers = peers[1]
# the amount of cache for the filesystem test
# 5.5 GiB of cache
default_cache = 400000
# the number of seconds to run each test. It's important that
# this is shorter than what it takes to finish downloading
# the test torrent, since then the average rate will not
# be representative of the peak anymore
# this has to be long enough to download a full copy
# of the test torrent. It's also important for the
# test to be long enough that the warming up of the
# disk cache is not a significant part of the test,
# since download rates will be extremely high while downloading
# into RAM
test_duration = 100
utorrent_version = 'utorrent-server-alpha-v3_3'
# make sure the environment is properly set up
try:
if os.name == 'posix':
resource.setrlimit(resource.RLIMIT_NOFILE, (4000, 5000))
except Exception:
if resource.getrlimit(resource.RLIMIT_NOFILE)[0] < 4000:
print('please set ulimit -n to at least 4000')
sys.exit(1)
def build_stage_dirs():
ret = []
for i in builds[2:3]:
ret.append('stage_%s' % i)
return ret
# make sure we have all the binaries available
binaries = ['client_test', 'connection_tester']
for b in build_stage_dirs():
for i in binaries:
p = os.path.join(b, i)
if not os.path.exists(p):
print('make sure "%s" is available in ./%s' % (i, b))
sys.exit(1)
# make sure we have a test torrent
if not os.path.exists('test.torrent'):
print('generating test torrent')
# generate a 100 GB torrent, to make sure it won't all fit in physical RAM
os.system('./connection_tester gen-torrent -s 100000 -t test.torrent')
# use a new port for each test to make sure they keep working
# this port is incremented for each test run
port = 10000 + random.randint(0, 40000)
try:
os.mkdir('benchmark-dir')
except Exception:
pass
def clear_caches():
if 'linux' in sys.platform:
os.system('sync')
try:
open('/proc/sys/vm/drop_caches', 'w').write('3')
except Exception:
pass
elif 'darwin' in sys.platform:
os.system('purge')
def build_utorrent_commandline(config, port):
num_peers = config['num-peers']
torrent_path = config['torrent']
target_folder = build_target_folder(config)
try:
os.mkdir('utorrent_session')
except Exception:
pass
with open('utorrent_session/settings.dat', 'w+') as cfg:
cfg.write('d')
cfg.write('20:ul_slots_per_torrenti%de' % num_peers)
cfg.write('17:conns_per_torrenti%de' % num_peers)
cfg.write('14:conns_globallyi%de' % num_peers)
cfg.write('9:bind_porti%de' % port)
cfg.write('19:dir_active_download%d:%s' % (len(config['save-path']),
config['save-path']))
cfg.write('19:diskio.sparse_filesi1e')
cfg.write('14:cache.overridei1e')
cfg.write('19:cache.override_sizei%de' % int(config['cache-size'] *
16 / 1024))
cfg.write('17:dir_autoload_flagi1e')
cfg.write('12:dir_autoload8:autoload')
cfg.write('11:logger_maski4294967295e')
cfg.write('1:vi0e')
cfg.write('12:webui.enablei1e')
cfg.write('19:webui.enable_listeni1e')
cfg.write('14:webui.hashword20:' + hashlib.sha1(
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadmin').digest())
cfg.write('10:webui.porti8080e')
cfg.write('10:webui.salt32:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
cfg.write('14:webui.username5:admin')
cfg.write('e')
try:
os.mkdir('utorrent_session/autoload')
except Exception:
pass
try:
shutil.copy(torrent_path, 'utorrent_session/autoload/')
except Exception:
pass
return './%s/utserver -logfile %s/client.log -settingspath ' % \
(utorrent_version, target_folder) + \
'utorrent_session'
def build_rtorrent_commandline(config, port):
num_peers = config['num-peers']
torrent_path = config['torrent']
target_folder = build_target_folder(config)
if os.path.exists(target_folder):
add_command = ''
else:
try:
os.mkdir(target_folder)
except Exception:
pass
# it seems rtorrent may delete the original torrent when it's being added
try:
shutil.copy(torrent_path, target_folder)
except Exception:
pass
add_command = '-O load_start_verbose=%s/%s ' % (target_folder, torrent_path)
return ('rtorrent -d %s -n -p %d-%d -O max_peers=%d -O max_uploads=%d %s -s '
'%s -O max_memory_usage=128000000000') % (
config['save-path'], port, port, num_peers, num_peers, add_command, target_folder)
def build_libtorrent_commandline(config, port):
num_peers = config['num-peers']
torrent_path = config['torrent']
target_folder = build_target_folder(config)
return ('./client_test -k -O -F 500 --enable_upnp=0 --enable_natpmp=0 '
'--enable_dht=0 --mixed_mode_algorithm=0 --peer_timeout=%d '
'--listen_queue_size=%d --unchoke_slots_limit=%d -T %d '
'--connections_limit=%d --cache_size=%d -s "%s" '
'--listen_interfaces="0.0.0.0:%d" --aio_threads=%d '
'-f %s/client.log %s') % (
test_duration, num_peers, num_peers, num_peers, num_peers, config['cache-size'],
config['save-path'], port, config['disk-threads'], target_folder, torrent_path)
def build_commandline(config, port):
if config['build'] == 'utorrent':
return build_utorrent_commandline(config, port)
if config['build'] == 'rtorrent':
return build_rtorrent_commandline(config, port)
if config['build'] == 'libtorrent':
return build_libtorrent_commandline(config, port)
def delete_files(files):
for i in files:
print('deleting %s' % i)
try:
os.remove(i)
except Exception:
try:
shutil.rmtree(i)
except Exception:
try:
if os.path.exists(i):
print('failed to delete %s' % i)
except Exception:
pass
def build_test_config(num_peers=default_peers, cache_size=default_cache,
test='download', build='libtorrent', profile='', disk_threads=16,
torrent='test.torrent', disable_disk=False):
config = {'test': test, 'save-path': os.path.join('.', 'benchmark-dir'), 'num-peers': num_peers,
'cache-size': cache_size, 'build': build, 'profile': profile,
'disk-threads': disk_threads, 'torrent': torrent, 'disable-disk': disable_disk}
return config
def build_target_folder(config):
no_disk = ''
if config['disable-disk']:
no_disk = '_no-disk'
return 'results_%s_%s_%d_%d_%d%s' % (config['build'],
config['test'],
config['num-peers'],
config['cache-size'],
config['disk-threads'],
no_disk)
def find_library(name):
paths = ['/usr/lib64/', '/usr/local/lib64/', '/usr/lib/', '/usr/local/lib/']
for p in paths:
try:
if os.path.exists(p + name):
return p + name
except Exception:
pass
return name
def find_binary(names):
paths = ['/usr/bin/', '/usr/local/bin/']
for n in names:
for p in paths:
try:
if os.path.exists(p + n):
return p + n
except Exception:
pass
return names[0]
def run_test(config):
j = os.path.join
target_folder = build_target_folder(config)
if os.path.exists(target_folder):
print('results already exists, skipping test (%s)' % target_folder)
return
print('\n\n*********************************')
print('* RUNNING TEST *')
print('*********************************\n\n')
print('%s %s' % (config['build'], config['test']))
# make sure any previous test file is removed
# don't clean up unless we're running a download-test, so that we leave the test file
# complete for a seed test.
delete_files(['utorrent_session/settings.dat', 'utorrent_session/settings.dat.old', 'asserts.log'])
if config['test'] == 'download' or config['test'] == 'dual':
delete_files([j(config['save-path'], 'test'),
'.ses_state',
j(config['save-path'], '.resume'),
'utorrent_session',
'.dht_state',
'rtorrent_session'])
try:
os.mkdir(target_folder)
except Exception:
pass
# save off the command line for reference
global port
cmdline = build_commandline(config, port)
binary = cmdline.split(' ')[0]
environment = None
if config['profile'] == 'tcmalloc':
environment = {'LD_PRELOAD': find_library('libprofiler.so.0'),
'CPUPROFILE': j(target_folder, 'cpu_profile.prof')}
if config['profile'] == 'memory':
environment = {'LD_PRELOAD': find_library('libprofiler.so.0'),
'HEAPPROFILE': j(target_folder, 'heap_profile.prof')}
if config['profile'] == 'perf':
cmdline = 'perf record -g --output=' + \
j(target_folder, 'perf_profile.prof') + ' ' + cmdline
with open(j(target_folder, 'cmdline.txt'), 'w+') as f:
f.write(cmdline)
with open(j(target_folder, 'config.txt'), 'w+') as f:
print(config, file=f)
print('clearing disk cache')
clear_caches()
print('OK')
client_output = open(j(target_folder, 'client.output'), 'w+')
client_error = open(j(target_folder, 'client.error'), 'w+')
print('launching: %s' % cmdline)
client = subprocess.Popen(
shlex.split(cmdline),
stdout=client_output,
stdin=subprocess.PIPE,
stderr=client_error,
env=environment)
print('OK')
# enable disk stats printing
if config['build'] == 'libtorrent':
print('x', end=' ', file=client.stdin)
time.sleep(4)
test_dir = 'upload' if config['test'] == 'download' else 'download' if config['test'] == 'upload' else 'dual'
cmdline = './connection_tester %s -c %d -d 127.0.0.1 -p %d -t %s' % (
test_dir, config['num-peers'], port, config['torrent'])
print('launching: %s' % cmdline)
tester_output = open(j(target_folder, 'tester.output'), 'w+')
tester = subprocess.Popen(shlex.split(cmdline), stdout=tester_output)
print('OK')
time.sleep(2)
print('\n')
i = 0
while True:
time.sleep(1)
tester.poll()
if tester.returncode is not None:
print('tester terminated')
break
client.poll()
if client.returncode is not None:
print('client terminated')
break
print('\r%d / %d\x1b[K' % (i, test_duration), end=' ')
sys.stdout.flush()
i += 1
# in download- and dual tests, connection_tester will exit once the
# client is done downloading. In upload tests, we'll upload for
# 'test_duration' number of seconds until we end the test
if config['test'] != 'download' and config['test'] != 'dual' and i >= test_duration:
break
print('\n')
if client.returncode is None:
try:
print('killing client')
client.send_signal(signal.SIGINT)
except Exception:
pass
time.sleep(10)
client.wait()
tester.wait()
tester_output.close()
client_output.close()
terminate = False
if tester.returncode != 0:
print('tester returned %d' % tester.returncode)
terminate = True
if client.returncode != 0:
print('client returned %d' % client.returncode)
terminate = True
try:
shutil.copy('asserts.log', target_folder)
except Exception:
pass
os.chdir(target_folder)
if config['build'] == 'libtorrent':
# parse session stats
print('parsing session log')
os.system('python ../../tools/parse_session_stats.py client.log')
os.chdir('..')
if config['profile'] == 'tcmalloc':
print('analyzing CPU profile [%s]' % binary)
os.system('%s --pdf %s %s/cpu_profile.prof >%s/cpu_profile.pdf' %
(find_binary(['google-pprof', 'pprof']), binary, target_folder, target_folder))
if config['profile'] == 'memory':
for i in range(1, 300):
profile = j(target_folder, 'heap_profile.prof.%04d.heap' % i)
try:
os.stat(profile)
except Exception:
break
print('analyzing heap profile [%s] %d' % (binary, i))
os.system('%s --pdf %s %s >%s/heap_profile_%d.pdf' %
(find_binary(['google-pprof', 'pprof']), binary, profile, target_folder, i))
if config['profile'] == 'perf':
print('analyzing CPU profile [%s]' % binary)
os.system(('perf report --input=%s/perf_profile.prof --threads --demangle --show-nr-samples '
'>%s/profile.txt' % (target_folder, target_folder)))
port += 1
if terminate:
sys.exit(1)
for b in builds:
for test in ['upload', 'download', 'dual']:
config = build_test_config(build=b, test=test, profile='perf')
run_test(config)
for p in peers:
for test in ['upload', 'download', 'dual']:
config = build_test_config(num_peers=p, test=test, profile='perf')
run_test(config)