123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- import importlib
- import os
- import subprocess
- import time
- import re
- import pprint
- import sys
- class FrameworkTest:
- ##########################################################################################
- # Class variables
- ##########################################################################################
- concurrency_template = """
- mysqladmin flush-hosts -uroot -psecret
-
- echo ""
- echo "---------------------------------------------------------"
- echo " Running Primer {name}"
- echo " wrk -d 60 -c 8 -t 8 http://{server_host}:{port}{url}"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d 5 -c 8 -t 8 http://{server_host}:{port}{url}
- sleep 5
-
- echo ""
- echo "---------------------------------------------------------"
- echo " Running Warmup {name}"
- echo " wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}
- sleep 5
- for c in {interval}
- do
- echo ""
- echo "---------------------------------------------------------"
- echo " Concurrency: $c for {name}"
- echo " wrk -d {duration} -c $c -t $(($c>{max_threads}?{max_threads}:$c)) http://{server_host}:{port}{url}"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d {duration} -c "$c" -t "$(($c>{max_threads}?{max_threads}:$c))" http://{server_host}:{port}{url}
- sleep 2
- done
- """
- query_template = """
- mysqladmin flush-hosts -uroot -psecret
-
- echo ""
- echo "---------------------------------------------------------"
- echo " Running Primer {name}"
- echo " wrk -d 5 -c 8 -t 8 http://{server_host}:{port}{url}2"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d 5 -c 8 -t 8 http://{server_host}:{port}{url}2
- sleep 5
-
- echo ""
- echo "---------------------------------------------------------"
- echo " Running Warmup {name}"
- echo " wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}2"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}2
- sleep 5
- for c in {interval}
- do
- echo ""
- echo "---------------------------------------------------------"
- echo " Queries: $c for {name}"
- echo " wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}$c"
- echo "---------------------------------------------------------"
- echo ""
- wrk -d {duration} -c {max_concurrency} -t {max_threads} http://{server_host}:{port}{url}"$c"
- sleep 2
- done
- """
- # The sort value is the order in which we represent all the tests. (Mainly helpful for our charts to give the underlying data)
- # a consistent ordering even when we add or remove tests. Each test should give a sort value in it's benchmark_config file.
- sort = 1000
- ##########################################################################################
- # Public Methods
- ##########################################################################################
- ############################################################
- # start(benchmarker)
- # Start the test using it's setup file
- ############################################################
- def start(self):
- return self.setup_module.start(self.benchmarker)
- ############################################################
- # End start
- ############################################################
- ############################################################
- # stop(benchmarker)
- # Stops the test using it's setup file
- ############################################################
- def stop(self):
- return self.setup_module.stop()
- ############################################################
- # End stop
- ############################################################
- ############################################################
- # verify_urls
- # Verifys each of the URLs for this test. THis will sinply
- # curl the URL and check for it's return status.
- # For each url, a flag will be set on this object for whether
- # or not it passed
- ############################################################
- def verify_urls(self):
- # JSON
- try:
- print "VERIFYING JSON (" + self.json_url + ") ..."
- url = self.benchmarker.generate_url(self.json_url, self.port)
- subprocess.check_call(["curl", "-f", url])
- print ""
- self.json_url_passed = True
- except (AttributeError, subprocess.CalledProcessError) as e:
- self.json_url_passed = False
- # DB
- try:
- print "VERIFYING DB (" + self.db_url + ") ..."
- url = self.benchmarker.generate_url(self.db_url, self.port)
- subprocess.check_call(["curl", "-f", url])
- print ""
- self.db_url_passed = True
- except (AttributeError, subprocess.CalledProcessError) as e:
- self.db_url_passed = False
- # Query
- try:
- print "VERIFYING Query (" + self.query_url + "2) ..."
- url = self.benchmarker.generate_url(self.query_url + "2", self.port)
- subprocess.check_call(["curl", "-f", url])
- print ""
- self.query_url_passed = True
- except (AttributeError, subprocess.CalledProcessError) as e:
- self.query_url_passed = False
- # Fortune
- try:
- print "VERIFYING Fortune (" + self.fortune_url + ") ..."
- url = self.benchmarker.generate_url(self.fortune_url, self.port)
- subprocess.check_call(["curl", "-f", url])
- print ""
- self.fortune_url_passed = True
- except (AttributeError, subprocess.CalledProcessError) as e:
- self.fortune_url_passed = False
- # Update
- try:
- print "VERIFYING Update (" + self.update_url + "2) ..."
- url = self.benchmarker.generate_url(self.update_url, self.port)
- subprocess.check_call(["curl", "-f", url])
- print ""
- self.update_url_passed = True
- except (AttributeError, subprocess.CalledProcessError) as e:
- self.update_url_passed = False
- ############################################################
- # End verify_urls
- ############################################################
- ############################################################
- # contains_type(type)
- # true if this test contains an implementation of the given
- # test type (json, db, etc.)
- ############################################################
- def contains_type(self, type):
- try:
- if type == 'json' and self.json_url != None:
- return True
- if type == 'db' and self.db_url != None:
- return True
- if type == 'query' and self.query_url != None:
- return True
- if type == 'fortune' and self.fortune_url != None:
- return True
- if type == 'update' and self.update_url != None:
- return True
- except AttributeError:
- pass
-
- return False
- ############################################################
- # End stop
- ############################################################
- ############################################################
- # benchmark
- # Runs the benchmark for each type of test that it implements
- # JSON/DB/Query.
- ############################################################
- def benchmark(self):
- # JSON
- try:
- if self.json_url_passed and (self.benchmarker.type == "all" or self.benchmarker.type == "json"):
- sys.stdout.write("BENCHMARKING JSON ... ")
- remote_script = self.__generate_concurrency_script(self.json_url, self.port)
- self.__run_benchmark(remote_script, self.benchmarker.output_file(self.name, 'json'))
- results = self.__parse_test('json')
- self.benchmarker.report_results(framework=self, test="json", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- print "Complete"
- except AttributeError:
- pass
- # DB
- try:
- if self.db_url_passed and (self.benchmarker.type == "all" or self.benchmarker.type == "db"):
- sys.stdout.write("BENCHMARKING DB ... ")
- remote_script = self.__generate_concurrency_script(self.db_url, self.port)
- self.__run_benchmark(remote_script, self.benchmarker.output_file(self.name, 'db'))
- results = self.__parse_test('db')
- self.benchmarker.report_results(framework=self, test="db", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- print "Complete"
- except AttributeError:
- pass
- # Query
- try:
- if self.query_url_passed and (self.benchmarker.type == "all" or self.benchmarker.type == "query"):
- sys.stdout.write("BENCHMARKING Query ... ")
- remote_script = self.__generate_query_script(self.query_url, self.port)
- self.__run_benchmark(remote_script, self.benchmarker.output_file(self.name, 'query'))
- results = self.__parse_test('query')
- self.benchmarker.report_results(framework=self, test="query", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- print "Complete"
- except AttributeError:
- pass
- # fortune
- try:
- if self.fortune_url_passed and (self.benchmarker.type == "all" or self.benchmarker.type == "fortune"):
- sys.stdout.write("BENCHMARKING Fortune ... ")
- remote_script = self.__generate_concurrency_script(self.fortune_url, self.port)
- self.__run_benchmark(remote_script, self.benchmarker.output_file(self.name, 'fortune'))
- results = self.__parse_test('fortune')
- self.benchmarker.report_results(framework=self, test="fortune", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- print "Complete"
- except AttributeError:
- pass
- # update
- try:
- if self.update_url_passed and (self.benchmarker.type == "all" or self.benchmarker.type == "update"):
- sys.stdout.write("BENCHMARKING Update ... ")
- remote_script = self.__generate_query_script(self.update_url, self.port)
- self.__run_benchmark(remote_script, self.benchmarker.output_file(self.name, 'update'))
- results = self.__parse_test('update')
- self.benchmarker.report_results(framework=self, test="update", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- print "Complete"
- except AttributeError:
- pass
- ############################################################
- # End benchmark
- ############################################################
-
- ############################################################
- # parse_all
- # Method meant to be run for a given timestamp
- ############################################################
- def parse_all(self):
- # JSON
- if os.path.exists(self.benchmarker.output_file(self.name, 'json')):
- results = self.__parse_test('json')
- self.benchmarker.report_results(framework=self, test="json", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
-
- # DB
- if os.path.exists(self.benchmarker.output_file(self.name, 'db')):
- results = self.__parse_test('db')
- self.benchmarker.report_results(framework=self, test="db", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
-
- # Query
- if os.path.exists(self.benchmarker.output_file(self.name, 'query')):
- results = self.__parse_test('query')
- self.benchmarker.report_results(framework=self, test="query", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- # Fortune
- if os.path.exists(self.benchmarker.output_file(self.name, 'fortune')):
- results = self.__parse_test('fortune')
- self.benchmarker.report_results(framework=self, test="fortune", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- # Update
- if os.path.exists(self.benchmarker.output_file(self.name, 'update')):
- results = self.__parse_test('update')
- self.benchmarker.report_results(framework=self, test="update", requests=results['requests'], latency=results['latency'],
- results=results['results'], total_time=results['total_time'], errors=results['errors'], total_requests=results['totalRequests'])
- ############################################################
- # End parse_all
- ############################################################
- ############################################################
- # __parse_test(test_type)
- ############################################################
- def __parse_test(self, test_type):
- try:
- results = dict()
- results['results'] = []
- results['total_time'] = 0
- results['totalRequests'] = 0
- results['latency'] = dict()
- results['latency']['avg'] = 0
- results['latency']['stdev'] = 0
- results['latency']['max'] = 0
- results['latency']['stdevPercent'] = 0
- results['requests'] = dict()
- results['requests']['avg'] = 0
- results['requests']['stdev'] = 0
- results['requests']['max'] = 0
- results['requests']['stdevPercent'] = 0
- results['errors'] = dict()
- results['errors']['connect'] = 0
- results['errors']['read'] = 0
- results['errors']['write'] = 0
- results['errors']['timeout'] = 0
- results['errors']['5xx'] = 0
- with open(self.benchmarker.output_file(self.name, test_type)) as raw_data:
- is_warmup = False
- for line in raw_data:
- if "Queries:" in line or "Concurrency:" in line:
- is_warmup = False
- continue
- if "Warmup" in line or "Primer" in line:
- is_warmup = True
- continue
- if not is_warmup:
- if "Requests/sec:" in line:
- m = re.search("Requests/sec:\s+([0-9]+)", line)
- results['results'].append(m.group(1))
-
- # search for weighttp data such as succeeded and failed.
- if "Latency" in line:
- m = re.findall("([0-9]+\.*[0-9]*[us|ms|s|m|%]+)", line)
- if len(m) == 4:
- results['latency']['avg'] = m[0]
- results['latency']['stdev'] = m[1]
- results['latency']['max'] = m[2]
- results['latency']['stdevPercent'] = m[3]
-
- if "Req/Sec" in line:
- m = re.findall("([0-9]+\.*[0-9]*[k|%]*)", line)
- if len(m) == 4:
- results['requests']['avg'] = m[0]
- results['requests']['stdev'] = m[1]
- results['requests']['max'] = m[2]
- results['requests']['stdevPercent'] = m[3]
-
- if "requests in" in line:
- m = re.search("requests in ([0-9]+\.*[0-9]*[ms|s|m|h]+)", line)
- if m != None:
- # parse out the raw time, which may be in minutes or seconds
- raw_time = m.group(1)
- if "ms" in raw_time:
- results['total_time'] += float(raw_time[:len(raw_time)-2]) / 1000.0
- elif "s" in raw_time:
- results['total_time'] += float(raw_time[:len(raw_time)-1])
- elif "m" in raw_time:
- results['total_time'] += float(raw_time[:len(raw_time)-1]) * 60.0
- elif "h" in raw_time:
- results['total_time'] += float(raw_time[:len(raw_time)-1]) * 3600.0
-
- if "requests in" in line:
- m = re.search("([0-9]+) requests in", line)
- if m != None:
- results['totalRequests'] += int(m.group(1))
-
- if "Socket errors" in line:
- if "connect" in line:
- m = re.search("connect ([0-9]+)", line)
- results['errors']['connect'] += int(m.group(1))
- if "read" in line:
- m = re.search("read ([0-9]+)", line)
- results['errors']['read'] += int(m.group(1))
- if "write" in line:
- m = re.search("write ([0-9]+)", line)
- results['errors']['write'] += int(m.group(1))
- if "timeout" in line:
- m = re.search("timeout ([0-9]+)", line)
- results['errors']['timeout'] += int(m.group(1))
-
- if "Non-2xx" in line:
- m = re.search("Non-2xx or 3xx responses: ([0-9]+)", line)
- if m != None:
- results['errors']['5xx'] += int(m.group(1))
-
- return results
- except IOError:
- return None
- ############################################################
- # End benchmark
- ############################################################
- ##########################################################################################
- # Private Methods
- ##########################################################################################
- ############################################################
- # __run_benchmark(script, output_file)
- # Runs a single benchmark using the script which is a bash
- # template that uses weighttp to run the test. All the results
- # outputed to the output_file.
- ############################################################
- def __run_benchmark(self, script, output_file):
- with open(output_file, 'w') as raw_file:
- p = subprocess.Popen(self.benchmarker.ssh_string.split(" "), stdin=subprocess.PIPE, stdout=raw_file, stderr=raw_file)
- p.communicate(script)
- ############################################################
- # End __run_benchmark
- ############################################################
- ############################################################
- # __generate_concurrency_script(url, port)
- # Generates the string containing the bash script that will
- # be run on the client to benchmark a single test. This
- # specifically works for the variable concurrency tests (JSON
- # and DB)
- ############################################################
- def __generate_concurrency_script(self, url, port):
- return self.concurrency_template.format(max_concurrency=self.benchmarker.max_concurrency,
- max_threads=self.benchmarker.max_threads, name=self.name, duration=self.benchmarker.duration,
- interval=" ".join("{}".format(item) for item in self.benchmarker.concurrency_levels),
- server_host=self.benchmarker.server_host, port=port, url=url)
- ############################################################
- # End __generate_concurrency_script
- ############################################################
- ############################################################
- # __generate_query_script(url, port)
- # Generates the string containing the bash script that will
- # be run on the client to benchmark a single test. This
- # specifically works for the variable query tests (Query)
- ############################################################
- def __generate_query_script(self, url, port):
- return self.query_template.format(max_concurrency=self.benchmarker.max_concurrency,
- max_threads=self.benchmarker.max_threads, name=self.name, duration=self.benchmarker.duration,
- interval=" ".join("{}".format(item) for item in self.benchmarker.query_intervals),
- server_host=self.benchmarker.server_host, port=port, url=url)
- ############################################################
- # End __generate_query_script
- ############################################################
- ##########################################################################################
- # Constructor
- ##########################################################################################
- def __init__(self, name, directory, benchmarker, args):
- self.name = name
- self.directory = directory
- self.benchmarker = benchmarker
- self.__dict__.update(args)
- # ensure diretory has __init__.py file so that we can use it as a pythong package
- if not os.path.exists(os.path.join(directory, "__init__.py")):
- open(os.path.join(directory, "__init__.py"), 'w').close()
- self.setup_module = setup_module = importlib.import_module(directory + '.' + self.setup_file)
- ############################################################
- # End __init__
- ############################################################
- ############################################################
- # End FrameworkTest
- ############################################################
- ##########################################################################################
- # Static methods
- ##########################################################################################
- ##############################################################
- # parse_config(config, directory, benchmarker)
- # parses a config file and returns a list of FrameworkTest
- # objects based on that config file.
- ##############################################################
- def parse_config(config, directory, benchmarker):
- tests = []
- # The config object can specify multiple tests, we neep to loop
- # over them and parse them out
- for test in config['tests']:
- for key, value in test.iteritems():
- test_name = config['framework']
-
- # if the test uses the 'defualt' keywork, then we don't
- # append anything to it's name. All configs should only have 1 default
- if key != 'default':
- # we need to use the key in the test_name
- test_name = test_name + "-" + key
- tests.append(FrameworkTest(test_name, directory, benchmarker, value))
- return tests
- ##############################################################
- # End parse_config
- ##############################################################
|