-
Notifications
You must be signed in to change notification settings - Fork 1
/
runQuarkusPingContainer.py
705 lines (623 loc) · 32.5 KB
/
runQuarkusPingContainer.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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
# Python script to run pingperf with Quarkus in containers
# The script can run the same configuration multiple times and compute stats
# on performance metrics like: start-up time, throughput for first N minutes
# of load, peak throughput over a period of time, RSS, peak RSS, compCPU
# Each configuration is defined as a container image to run together with
# associated command line arguments or environment variables.
# If command line arguments indicates that the JVM is running in client mode,
# a JITServer will be launched automatically
import shlex, subprocess
import time # for sleep
import re # for regular expressions
import sys # for exit
import logging # https://www.machinelearningplus.com/python/python-logging-guide/
import queue
from collections import deque
import math
############################### CONFIG ###############################################
#level=logging.DEBUG, logging.INFO, logging.WARNING
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s :: %(levelname)s :: (%(threadName)-6s) :: %(message)s',)
docker = "docker" # Select between docker and podman
netOpts = "--network=slirp4netns" if docker == "podman" else "--network=host" # for podman we need to use slirp4netns if running as root. This will be added to Liberty. mongo uses host network. Does JITServer needed it?
################### Benchmark configuration #################
doColdRun = True
appServerMachine = "9.42.142.176"
username = "" # for connecting remotely to the SUT; leave empty to connect without ssh
containerName = "pingperf"
appServerPort = "9090"
cpuLimit = "--cpuset-cpus=0-7 --cpus=2.0" # --cpuset-mems=0
memLimit = "-m=16G"
delayToStart = 10 # seconds; waiting for the AppServer to start before checking for valid startup
extraDockerOpts = "" # extra options to pass to docker run
instantOnRestore= False # Set to true to add --cap-add=CHECKPOINT_RESTORE to docker run command
############### SCC configuration #####################
useSCCVolume = False # set to true to have a SCC mounted in a volume (instead of the embedded SCC)
SCCVolumeName = "scc_volume" # Name of the volume to use for the SCC
sccInstanceDir = "/opt/java/.scc" # Location of the shared class cache in the instance
mountOpts = f"--mount type=volume,src={SCCVolumeName},target={sccInstanceDir}" if useSCCVolume else ""
############### Database configuration #########
mongoMachine = "9.42.142.176"
#mongoUsername = "" # To connect to mongoMachine remotely; leave empty to connect without ssh
#mongoImage = "mongo-acmeair-ee8:5.0.15"
#mongoAffinity = ""
############### wrk CONFIG ###############
wrkMachine = "localhost"
wrkUsername = "" # To connect to JMeter machine; leave empty to connect without ssh
wrkExecutable = "/team/mpirvu/wrk/wrk"
wrkAffinity = "numactl --physcpubind 16-31"
################ Load CONFIG ###############
numRepetitionsOneClient = 0
numRepetitions50Clients = 2
durationOfOneClient = 60 # seconds
durationOfOneRepetition = 180 # seconds
numClients = 100 # Number of wrk threads
delayBetweenRepetitions = 10
numMeasurementTrials = 1 # Last N trials are used in computation of throughput
thinkTime = 0 # ms
################# JITServer CONFIG ###############
# JITServer is automatically launched if the JVM option include -XX:+UseJITServer
JITServerMachine = "9.42.142.176" # if applicable
JITServerUsername = "" # To connect to JITServerMachine; leave empty for connecting without ssh
JITServerImage = "liberty-acmeair-ee8:J17_20240202"
JITServerContainerName = "jitserver"
# List of configs to run
# Each entry is a dictionary with "image" and "args" as keys
# Note that openj9 containers also add: JAVA_TOOL_OPTIONS=-XX:+IgnoreUnrecognizedVMOptions -XX:+PortableSharedCache -XX:+IdleTuningGcOnIdle -Xshareclasses:name=openj9_system_scc,cacheDir=/opt/java/.scc,readonly,nonFatal
# Containers
configs = [
#{"image":"pingperf:openj9", "args":"-Xmx128m -Dquarkus.thread-pool.core-threads=2 -Dquarkus.thread-pool.max-threads=2"},
{"image":"pingperf:temurin", "args":"-Xmx128m -Dquarkus.thread-pool.core-threads=2 -Dquarkus.thread-pool.max-threads=2"},
# {"image":"", "args":""},
]
def nanmean(myList):
total = 0
numValidElems = 0
for i in range(len(myList)):
if not math.isnan(myList[i]):
total += myList[i]
numValidElems += 1
return total/numValidElems if numValidElems > 0 else math.nan
def nanstd(myList):
total = 0
numValidElems = 0
for i in range(len(myList)):
if not math.isnan(myList[i]):
total += myList[i]
numValidElems += 1
if numValidElems == 0:
return math.nan
if numValidElems == 1:
return 0
else:
mean = total/numValidElems
total = 0
for i in range(len(myList)):
if not math.isnan(myList[i]):
total += (myList[i] - mean)**2
return math.sqrt(total/(numValidElems-1))
def nanmin(myList):
min = math.inf
for i in range(len(myList)):
if not math.isnan(myList[i]) and myList[i] < min:
min = myList[i]
return min
def nanmax(myList):
max = -math.inf
for i in range(len(myList)):
if not math.isnan(myList[i]) and myList[i] > max:
max = myList[i]
return max
def tDistributionValue95(degreeOfFreedom):
if degreeOfFreedom < 1:
return math.nan
#import scipy.stats as stats
# stats.t.ppf(0.975, degreesOfFreedom))
tValues = [12.706, 4.303, 3.182, 2.776, 2.571, 2.447, 2.365, 2.306, 2.262, 2.228,
2.201, 2.179, 2.160, 2.145, 2.131, 2.120, 2.110, 2.101, 2.093, 2.086,
2.080, 2.074, 2.069, 2.064, 2.060, 2.056, 2.052, 2.048, 2.045, 2.042,]
if degreeOfFreedom <= 30:
return tValues[degreeOfFreedom-1]
else:
if degreeOfFreedom <= 60:
return 2.042 - 0.001 * (degreeOfFreedom - 30)
else:
return 1.96
# Confidence intervals tutorial
# mean +- t * std / sqrt(n)
# For 95% confidence interval, t = 1.96 if we have many samples
def meanConfidenceInterval95(myList):
n = len(myList)
if n <= 1:
return math.nan
tvalue = tDistributionValue95(n-1)
avg, stdDev = nanmean(myList), nanstd(myList)
marginOfError = tvalue * stdDev / math.sqrt(n)
return 100.0*marginOfError/avg
def computeStats(myList):
avg = nanmean(myList)
stdDev = nanstd(myList)
min = nanmin(myList)
max = nanmax(myList)
ci95 = meanConfidenceInterval95(myList)
return avg, stdDev, min, max, ci95
def meanLastValues(myList, numLastValues):
assert numLastValues > 0
if numLastValues > len(myList):
numLastValues = len(myList)
return nanmean(myList[-numLastValues:])
def getMainPIDFromContainer(host, username, instanceID):
remoteCmd = f"{docker} inspect " + "--format='{{.State.Pid}}' " + instanceID
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
try:
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
return lines[0]
except:
return 0
return 0
# Given a container ID, find all the Java processes running in it
# If there is only one Java process, return its PID
def getJavaPIDFromContainer(host, username, instanceID):
mainPID = getMainPIDFromContainer(host, username, instanceID)
if mainPID == 0:
return 0 # Error
logging.debug("Main PID from container is {mainPID}".format(mainPID=mainPID))
# Find all PIDs running on host
remoteCmd = "ps -eo ppid,pid,cmd --no-headers"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
pattern = re.compile("^\s*(\d+)\s+(\d+)\s+(\S+)")
# Construct a dictionary with key=PPID and value a list of PIDs (for its children)
ppid2pid = {}
pid2cmd = {}
for line in lines:
m = pattern.match(line)
if m:
ppid = m.group(1)
pid = m.group(2)
cmd = m.group(3)
if ppid in ppid2pid:
ppid2pid[ppid].append(pid)
else:
ppid2pid[ppid] = [pid]
pid2cmd[pid] = cmd
# Do a breadth-first search to find all Java processes. Use a queue.
javaPIDs = []
pidQueue = queue.Queue()
pidQueue.put(mainPID)
while not pidQueue.empty():
pid = pidQueue.get()
# If this PID is a Java process, add it to the list
if "/java" in pid2cmd[pid]:
javaPIDs.append(pid)
if pid in ppid2pid: # If my PID has children
for childPID in ppid2pid[pid]:
pidQueue.put(childPID)
if len(javaPIDs) == 0:
logging.error("Could not find any Java process in container {instanceID}".format(instanceID=instanceID))
return 0
if len(javaPIDs) > 1:
logging.error("Found more than one Java process in container {instanceID}".format(instanceID=instanceID))
return 0
return javaPIDs[0]
def removeForceContainer(host, username, instanceName):
remoteCmd = f"{docker} rm -f {instanceName}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
logging.debug("Removing container instance {instanceName}: {cmd}".format(instanceName=instanceName,cmd=cmd))
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
def stopContainersFromImage(host, username, imageName):
# Find all running containers from image
remoteCmd = f"{docker} ps --quiet --filter ancestor={imageName}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
for containerID in lines:
remoteCmd = f"{docker} stop {containerID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
logging.debug(f"Stopping container: {cmd}")
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
def stopAppServerByID(host, username, containerID):
logging.debug("Stopping AppServer container {containerID}".format(containerID=containerID))
# Check that the container is still running
remoteCmd = f"{docker} ps --quiet --filter id={containerID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
if not lines:
logging.warning("AppServer instance {containerID} does not exist. Might have crashed".format(containerID=containerID))
return False
remoteCmd = f"{docker} stop {containerID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
subprocess.check_output(shlex.split(cmd), universal_newlines=True)
return True
def removeContainersFromImage(host, username, imageName):
# First stop running containers
stopContainersFromImage(host, username, imageName)
# Now remove stopped containes
remoteCmd = f"{docker} ps -a --quiet --filter ancestor={imageName}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
for containerID in lines:
remoteCmd = f"{docker} rm {containerID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
logging.debug(f"Removing container: {cmd}")
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
# Restore database from backup
#def restoreDatabase(host, username, mongoImage):
# remoteCmd = f"{docker} exec mongodb mongorestore --drop /AcmeAirDBBackup"
# cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
# logging.debug(f"Restoring database: {cmd}")
# output = subprocess.check_output(shlex.split(cmd), universal_newlines=True, stderr=subprocess.STDOUT)
# logging.debug(output)
# start mongo on a remote machine
#def startMongo(host, username, mongoImage):
# remoteCmd = f"{docker} run --rm -d --net=host --name mongodb {mongoImage} --nojournal"
# cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
# logging.info("Starting mongo: {cmd}".format(cmd=cmd))
# output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
# Given a PID, return RSS and peakRSS in MB for the process
def getRss(host, username, pid):
_scale = {'kB': 1024, 'mB': 1024*1024, 'KB': 1024, 'MB': 1024*1024}
# get pseudo file /proc/<pid>/status
filename = "/proc/" + pid + "/status"
remoteCmd = f"cat {filename}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
try:
s = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
#lines = s.splitlines()
except IOError as ioe:
logging.warning("Cannot open {filename}: {msg}".format(filename=filename,msg=str(ioe)))
return [0, 0] # wrong pid?
i = s.index("VmRSS:") # Find the position of the substring
# Take everything from this position till the very end
# Then split the string 3 times, taking first 3 "words" and putting them into a list
tokens = s[i:].split(None, 3)
if len(tokens) < 3:
return [0, 0] # invalid format
rss = int(tokens[1]) * _scale[tokens[2]] // 1048576 # convert value to bytes and then to MB
# repeat for peak RSS
i = s.index("VmHWM:")
tokens = s[i:].split(None, 3)
if len(tokens) < 3:
return [0, 0] # invalid format
peakRss = int(tokens[1]) * _scale[tokens[2]] // 1048576 # convert value to bytes and then to MB
return [rss, peakRss]
def clearSCC(host, username):
logging.info("Clearing SCC")
remoteCmd = f"{docker} volume rm --force {SCCVolumeName}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.run(shlex.split(cmd), universal_newlines=True, stderr=subprocess.DEVNULL)
# TODO: make sure volume does not exist
def verifyAppServerInContainerIDStarted(instanceID, host, username):
remoteCmd = f"{docker} ps --quiet --filter id={instanceID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
if not lines:
logging.warning("AppServer container {instanceID} is not running").format(instanceID=instanceID)
return False
remoteCmd = f"{docker} logs --tail=100 {instanceID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
errPattern = re.compile('.+\[ERROR')
# pingperf 1.0 on JVM (powered by Quarkus 3.13.2) started in 0.858s. Listening on: http://0.0.0.0:8080'
readyPattern = re.compile("pingperf .+ started in \d+\.\d+s. Listening on")
for iter in range(15):
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
liblines = output.splitlines()
for line in liblines:
m = errPattern.match(line)
if m:
logging.warning("AppServer container {instanceID} errored while starting: {line}").format(instanceID=instanceID,line=line)
return False
m1 = readyPattern.search(line)
if m1:
if logging.root.level <= logging.DEBUG:
print(lines)
return True # True means success
if logging.root.level <= logging.DEBUG:
print(liblines)
time.sleep(1) # wait 1 sec and try again
logging.warning("Checking again")
return False
def startAppServerContainer(host, username, instanceName, image, port, cpus, mem, jvmArgs, mountOpts, mongoMachine):
# vlogs can be created in /tmp/vlogs -v /tmp/vlogs:/tmp/vlogs
#JITOPTS = "\"verbose={compilePerformance},verbose={JITServer}\""
instantONOpts = f"--cap-add=CHECKPOINT_RESTORE --security-opt seccomp=unconfined" if instantOnRestore else ""
remoteCmd = f"{docker} run -d {cpus} {mem} {mountOpts} {instantONOpts} {netOpts} -e _JAVA_OPTIONS='{jvmArgs}' -e TR_PrintCompStats=1 -e TR_PrintCompTime=1 -p {port}:9090 --name {instanceName} {image}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
logging.info("Starting AppServer instance {instanceName}: {cmd}".format(instanceName=instanceName,cmd=cmd))
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
assert lines, "Error: docker run output is empty".format(l=lines)
assert len(lines) == 1, f"Error: docker run output containes several lines: {lines}"
if logging.root.level <= logging.DEBUG:
print(lines)
instanceID = lines[0] # ['2ccae49f3c03af57da27f5990af54df8a81c7ce7f7aace9a834e4c3dddbca97e']
time.sleep(delayToStart)
started = verifyAppServerInContainerIDStarted(instanceID, host, username)
if not started:
logging.error(f"AppServer instance {instanceName} from {image} cannot start in the alloted time")
removeForceContainer(host=host, username=username, instanceName=instanceName)
return None
return instanceID
def checkAppServerForErrors(instanceID, host, username):
remoteCmd = f"{docker} ps --quiet --filter id={instanceID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
if not lines:
logging.warning("AppServer container {instanceID} is not running").format(instanceID=instanceID)
return False
remoteCmd = f"{docker} logs --tail=200 {instanceID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
errPattern = re.compile('^.+ERROR')
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True, stderr=subprocess.STDOUT)
liblines = output.splitlines()
for line in liblines:
if errPattern.match(line):
logging.error("AppServer errored: {line}".format(line=line))
return False
return True
def getCompCPUFromContainer(host, username, instanceID):
logging.debug("Computing CompCPU for Liberty instance {instanceID}".format(instanceID=instanceID))
# Check that the indicated container still exists
remoteCmd = f"{docker} ps -a --quiet --filter id={instanceID}"
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
if not lines:
logging.warning("Liberty instance {instanceID} does not exist.".format(instanceID=instanceID))
return math.nan
threadTime = 0.0
remoteCmd = f"{docker} logs --tail=25 {instanceID}" # I need to capture stderr as well
cmd = f"ssh {username}@{host} \"{remoteCmd}\"" if username else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True, stderr=subprocess.STDOUT)
liblines = output.splitlines()
compTimePattern = re.compile("^Time spent in compilation thread =(\d+) ms")
for line in liblines:
m = compTimePattern.match(line)
if m:
threadTime += float(m.group(1))
return threadTime if threadTime > 0 else math.nan
def startJITServer():
# -v /tmp/vlogs:/tmp/JITServer_vlog -e TR_Options=\"statisticsFrequency=10000,vlog=/tmp/vlogs/vlog.txt\"
#JITOptions = "\"statisticsFrequency=10000,verbose={compilePerformance},verbose={JITServer},vlog=/tmp/vlogs/vlog.txt\""
OTHEROPTIONS= "'-Xdump:directory=/tmp/vlogs'"
JITOptions = ""
# -v /tmp/vlogs:/tmp/vlogs
remoteCmd = f"{docker} run -d -p 38400:38400 -p 38500:38500 --rm --cpus=8.0 --memory=4G {netOpts} -e TR_PrintCompMem=1 -e TR_PrintCompStats=1 -e TR_PrintCompTime=1 -e TR_PrintCodeCacheUsage=1 -e _JAVA_OPTIONS={OTHEROPTIONS} -e TR_Options={JITOptions} --name {JITServerContainerName} {JITServerImage} jitserver"
cmd = f"ssh {JITServerUsername}@{JITServerMachine} \"{remoteCmd}\"" if JITServerUsername else remoteCmd
logging.info(f"Start JITServer: {cmd}")
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
def stopJITServer():
# find the ID of the container, if any
remoteCmd = f"{docker} ps --quiet --filter name={JITServerContainerName}"
cmd = f"ssh {JITServerUsername}@{JITServerMachine} \"{remoteCmd}\"" if JITServerUsername else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
lines = output.splitlines()
for containerID in lines:
remoteCmd = f"{docker} stop {containerID}"
cmd = f"ssh {JITServerUsername}@{JITServerMachine} \"{remoteCmd}\"" if JITServerUsername else remoteCmd
logging.debug(f"Stop JITServer: {cmd}")
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
################################ cleanup ######################################
def cleanup():
for config in configs:
removeContainersFromImage(appServerMachine, username, config["image"])
#stopContainersFromImage(mongoMachine, mongoUsername, mongoImage)
stopContainersFromImage(JITServerMachine, JITServerUsername, JITServerImage)
def applyLoad(duration, numClients):
# Run jmeter remotely
remoteCmd = f"{wrkAffinity} {wrkExecutable} -t{numClients} -c{numClients} -d{duration} http://{appServerMachine}:{appServerPort}/ping/greeting"
cmd = f"ssh {wrkUsername}@{wrkMachine} \"{remoteCmd}\"" if wrkUsername else remoteCmd
logging.info("Apply load: {cmd}".format(cmd=cmd))
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
return output
def getThroughput(output):
logging.debug("Getting throughput info...")
lines = output.splitlines()
#Running 6m test @ http://9.42.142.176:9090/ping/greeting
# 25 threads and 25 connections
# Thread Stats Avg Stdev Max +/- Stdev
# Latency 2.55ms 3.79ms 24.81ms 83.61%
# Req/Sec 1.22k 263.42 3.51k 73.94%
# 10899233 requests in 6.00m, 0.93GB read
#Requests/sec: 30267.47
#Transfer/sec: 2.66MB
pattern = re.compile('Requests/sec:\s+(\d+\.\d+)')
thr = math.nan
for line in lines:
m = pattern.match(line)
if m:
thr = float(m.group(1))
break
return thr
'''
def getJMeterSummary():
logging.debug("Getting throughput info...")
remoteCmd = f"{docker} logs --tail=200 {jmeterContainerName}"
cmd = f"ssh {jmeterUsername}@{jmeterMachine} \"{remoteCmd}\"" if jmeterUsername else remoteCmd
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True, stderr=subprocess.DEVNULL)
lines = output.splitlines()
# Find the last line that contains
# summary = 110757 in 30s = 3688.6/s Avg: 12 Min: 0 Max: 894 Err: 0 (0.00%)
# or
# summary = 233722 in 00:02:00 = 1947.4/s Avg: 0 Min: 0 Max: 582 Err: 0 (0.00%)
elapsedTime = 0
throughput = 0
errs = 0
totalTransactions = 0
lastSummaryLine = ""
slidingWindow = deque([0.0, 0.0, 0.0])
pattern1 = re.compile('summary \+\s+(\d+) in\s+(\d+\.*\d*)s =\s+(\d+\.\d+)/s.+Finished: 0')
pattern2 = re.compile('summary \+\s+(\d+) in\s+(\d\d):(\d\d):(\d\d) =\s+(\d+\.\d+)/s.+Finished: 0')
for line in lines:
# summary + 17050 in 00:00:06 = 2841.7/s Avg: 0 Min: 0 Max: 49 Err: 0 (0.00%) Active: 2 Started: 2 Finished: 0
if line.startswith("summary +"):
if printRampup:
print(line)
m = pattern1.match(line)
if m:
thr = float(m.group(3))
slidingWindow.pop()
slidingWindow.appendleft(thr)
else:
m = pattern2.match(line)
if m:
thr = float(m.group(5))
slidingWindow.pop()
slidingWindow.appendleft(thr)
if line.startswith("summary ="):
lastSummaryLine = line
pattern = re.compile('summary =\s+(\d+) in\s+(\d+\.*\d*)s =\s+(\d+\.\d+)/s.+Err:\s*(\d+)')
m = pattern.match(lastSummaryLine)
if m:
totalTransactions = float(m.group(1)) # First group is the total number of transactions/pages that were processed
elapsedTime = float(m.group(2)) # Second group is the interval of time that passed
throughput = float(m.group(3)) # Third group is the throughput value
errs = int(m.group(4)) # Fourth group is the number of errors
else: # Check the second pattern
pattern = re.compile('summary =\s+(\d+) in\s+(\d\d):(\d\d):(\d\d) =\s+(\d+\.\d+)/s.+Err:\s*(\d+)')
m = pattern.match(lastSummaryLine)
if m:
totalTransactions = float(m.group(1)) # First group is the total number of transactions/pages that were processed
# Next 3 groups are the interval of time that passed
elapsedTime = float(m.group(2))*3600 + float(m.group(3))*60 + float(m.group(4))
throughput = float(m.group(5)) # Fifth group is the throughput value
errs = int(m.group(6)) # Sixth group is the number of errors
# Compute the peak throughput as a sliding window of 3 consecutive entries
peakThr = sum(slidingWindow)/len(slidingWindow)
#print (str(elapsedTime), throughput, sep='\t')
if errs > 0:
logging.error("JMeter Errors: {n}".format(n=errs))
return throughput, elapsedTime, peakThr, errs
'''
'''
def stopJMeter():
remoteCmd = f"{docker} rm {jmeterContainerName}"
cmd = f"ssh {jmeterUsername}@{jmeterMachine} \"{remoteCmd}\"" if jmeterUsername else remoteCmd
logging.debug("Removing jmeter: {cmd}".format(cmd=cmd))
output = subprocess.check_output(shlex.split(cmd), universal_newlines=True)
'''
def runPhase(duration, numClients):
logging.debug("Sleeping for {n} sec".format(n=delayBetweenRepetitions))
time.sleep(delayBetweenRepetitions)
output = applyLoad(duration, numClients)
# Read throughput
thr = getThroughput(output)
if logging.root.level <= logging.DEBUG:
print("Throughput={thr:7.1f}".format(thr=thr))
return thr
def runBenchmarkOnce(image, javaOpts):
# Will apply load in small bursts
maxPulses = numRepetitionsOneClient + numRepetitions50Clients
thrResults = [math.nan for i in range(maxPulses)] # np.full((maxPulses), fill_value=np.nan, dtype=np.float)
rss, peakRss, cpu = math.nan, math.nan, math.nan
#restoreDatabase(mongoMachine, mongoUsername, mongoImage)
instanceID = startAppServerContainer(host=appServerMachine, username=username, instanceName=containerName, image=image, port=appServerPort, cpus=cpuLimit, mem=memLimit, jvmArgs=javaOpts, mountOpts=mountOpts, mongoMachine=mongoMachine)
if instanceID is None:
return thrResults, rss, peakRss, cpu
# We know the app started successfuly
for pulse in range(maxPulses):
if pulse >= numRepetitionsOneClient:
cli = numClients
duration = durationOfOneRepetition
else:
cli = 1
duration = durationOfOneClient
thrResults[pulse] = runPhase(duration, cli)
# Collect RSS at end of run
serverPID = getMainPIDFromContainer(host=appServerMachine, username=username, instanceID=instanceID)
if int(serverPID) > 0:
rss, peakRss = getRss(host=appServerMachine, username=username, pid=serverPID)
logging.debug("Memory: RSS={rss} MB PeakRSS={peak} MB".format(rss=rss,peak=peakRss))
else:
logging.warning("Cannot get server PID. RSS will not be available")
time.sleep(2)
# If there were errors during the run, invalidate throughput results
if not checkAppServerForErrors(instanceID, appServerMachine, username):
thrResults = [math.nan for i in range(maxPulses)] #np.full((maxPulses), fill_value=np.nan, dtype=np.float) # Reset any throughput values
# stop container and read CompCPU
rc = stopAppServerByID(appServerMachine, username, instanceID)
cpu = getCompCPUFromContainer(appServerMachine, username, instanceID)
removeForceContainer(host=appServerMachine, username=username, instanceName=containerName)
# return throughput as an array of throughput values for each burst and also the RSS
return thrResults, float(rss), float(peakRss), float(cpu/1000.0)
####################### runBenchmarksIteratively ##############################
def runBenchmarkIteratively(numIter, image, javaOpts):
# Initialize stats; 2D array of throughput results
numPulses = numRepetitionsOneClient + numRepetitions50Clients
thrResults = [] # List of lists
rssResults = [] # Just a list
peakRssResults = []
cpuResults = []
# clear SCC if needed (by destroying the SCC volume)
if doColdRun:
clearSCC(appServerMachine, username)
useJITServer = "-XX:+UseJITServer" in javaOpts
if useJITServer:
startJITServer()
time.sleep(1) # Give JITServer some time to start
for iter in range(numIter):
thrList, rss, peakRss, cpu = runBenchmarkOnce(image, javaOpts)
lastThr = meanLastValues(thrList, numMeasurementTrials) # average for last N pulses
print("Run {iter}: Thr={lastThr:6.1f} RSS={rss:6.0f} MB PeakRSS={peakRss:6.0f} MB CPU={cpu:6.1f} sec".
format(iter=iter, lastThr=lastThr, rss=rss, peakRss=peakRss, cpu=cpu))
thrResults.append(thrList) # copy all the pulses
rssResults.append(rss)
peakRssResults.append(peakRss)
cpuResults.append(cpu)
# print stats
print(f"\nResults for image: {image} and opts: {javaOpts}")
thrAvgResults = [math.nan for i in range(numIter)] # np.full((numIter), fill_value=np.nan, dtype=np.float)
for iter in range(numIter):
print("Run", iter, end="")
for pulse in range(numPulses):
print("\t{thr:7.1f}".format(thr=thrResults[iter][pulse]), end="")
thrAvgResults[iter] = meanLastValues(thrResults[iter], numMeasurementTrials) #np.nanmean(thrResults[iter][-numMeasurementTrials:])
print("\tAvg={thr:7.1f} RSS={rss:7.0f} MB PeakRSS={peakRss:7.0f} MB CPU={cpu:7.1f} sec".
format(thr=thrAvgResults[iter], rss=rssResults[iter], peakRss=peakRssResults[iter], cpu=cpuResults[iter]))
verticalAverages = [] #verticalAverages = np.nanmean(thrResults, axis=0)
for pulse in range(numPulses):
total = 0
numValidEntries = 0
for iter in range(numIter):
if not math.isnan(thrResults[iter][pulse]):
total += thrResults[iter][pulse]
numValidEntries += 1
verticalAverages.append(total/numValidEntries if numValidEntries > 0 else math.nan)
print("Avg:", end="")
for pulse in range(numPulses):
print("\t{thr:7.1f}".format(thr=verticalAverages[pulse]), end="")
print("\tAvg={avgThr:7.1f} RSS={rss:7.0f} MB PeakRSS={peakRss:7.0f} MB CPU={cpu:7.1f} sec".
format(avgThr=nanmean(thrAvgResults), rss=nanmean(rssResults), peakRss=nanmean(peakRssResults), cpu=nanmean(cpuResults)))
avg, stdDev, min, max, ci95 = computeStats(thrAvgResults)
print("Thr stats: Avg={avg:7.1f} StdDev={stdDev:7.1f} Min={min:7.1f} Max={max:7.1f} Max/Min={maxmin:7.1f} CI95={ci95:7.1f}%".
format(avg=avg, stdDev=stdDev, min=min, max=max, maxmin=max/min, ci95=ci95))
avg, stdDev, min, max, ci95 = computeStats(rssResults)
print("RSS stats: Avg={avg:7.1f} StdDev={stdDev:7.1f} Min={min:7.1f} Max={max:7.1f} Max/Min={maxmin:7.1f} CI95={ci95:7.1f}%".
format(avg=avg, stdDev=stdDev, min=min, max=max, maxmin=max/min, ci95=ci95))
avg, stdDev, min, max, ci95 = computeStats(peakRssResults)
print("Peak RSS stats: Avg={avg:7.1f} StdDev={stdDev:7.1f} Min={min:7.1f} Max={max:7.1f} Max/Min={maxmin:7.1f} CI95={ci95:7.1f}%".
format(avg=avg, stdDev=stdDev, min=min, max=max, maxmin=max/min, ci95=ci95))
avg, stdDev, min, max, ci95 = computeStats(cpuResults)
print("CompCPU stats: Avg={avg:7.1f} StdDev={stdDev:7.1f} Min={min:7.1f} Max={max:7.1f} Max/Min={maxmin:7.1f} CI95={ci95:7.1f}%".
format(avg=avg, stdDev=stdDev, min=min, max=max, maxmin=max/min, ci95=ci95))
if useJITServer:
stopJITServer()
############################ MAIN ##################################
def mainRoutine():
if len(sys.argv) < 2:
print ("Program must have an argument: the number of iterations\n")
sys.exit(-1)
cleanup() # Clean-up from a previous possible bad run
#startMongo(mongoMachine, mongoUsername, mongoImage)
if doColdRun:
logging.warning("Will do a cold run before each set")
for config in configs:
runBenchmarkIteratively(numIter=int(sys.argv[1]), image=config["image"], javaOpts=config["args"])
# Execute final clean-up step
cleanup()
mainRoutine()