2019-08-23 08:47:19 -07:00
|
|
|
#
|
|
|
|
# OtterTune - fabfile.py
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017-18, Carnegie Mellon University Database Group
|
|
|
|
#
|
|
|
|
'''
|
|
|
|
Created on Mar 23, 2018
|
|
|
|
|
|
|
|
@author: bohan
|
|
|
|
'''
|
2019-09-30 22:17:49 -07:00
|
|
|
import glob
|
2019-08-23 08:47:19 -07:00
|
|
|
import json
|
2019-09-13 14:55:55 -07:00
|
|
|
import os
|
2019-08-23 08:47:19 -07:00
|
|
|
import re
|
2019-09-30 22:17:49 -07:00
|
|
|
import time
|
|
|
|
from collections import OrderedDict
|
2019-08-23 08:47:19 -07:00
|
|
|
from multiprocessing import Process
|
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
import logging
|
|
|
|
from logging.handlers import RotatingFileHandler
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
import requests
|
2019-11-04 19:47:19 -08:00
|
|
|
from fabric.api import env, lcd, local, settings, show, task
|
2019-09-30 22:17:49 -07:00
|
|
|
from fabric.state import output as fabric_output
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-11-26 00:57:35 -08:00
|
|
|
from utils import (file_exists, get, get_content, load_driver_conf, parse_bool,
|
2019-11-05 16:39:34 -08:00
|
|
|
put, run, run_sql_script, sudo, FabricException)
|
2019-11-04 19:47:19 -08:00
|
|
|
|
2019-11-05 16:39:34 -08:00
|
|
|
# Loads the driver config file (defaults to driver_config.py)
|
2019-11-08 03:42:32 -08:00
|
|
|
dconf = load_driver_conf() # pylint: disable=invalid-name
|
2019-11-05 16:39:34 -08:00
|
|
|
|
|
|
|
# Fabric settings
|
2019-11-04 19:47:19 -08:00
|
|
|
fabric_output.update({
|
|
|
|
'running': True,
|
|
|
|
'stdout': True,
|
|
|
|
})
|
2019-11-05 16:39:34 -08:00
|
|
|
env.abort_exception = FabricException
|
|
|
|
env.hosts = [dconf.LOGIN]
|
2019-11-04 19:47:19 -08:00
|
|
|
|
2019-11-05 16:39:34 -08:00
|
|
|
# Create local directories
|
|
|
|
for _d in (dconf.RESULT_DIR, dconf.LOG_DIR, dconf.TEMP_DIR):
|
|
|
|
os.makedirs(_d, exist_ok=True)
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
# Configure logging
|
|
|
|
LOG = logging.getLogger(__name__)
|
2019-11-04 18:44:58 -08:00
|
|
|
LOG.setLevel(getattr(logging, dconf.LOG_LEVEL, logging.DEBUG))
|
2019-09-30 22:17:49 -07:00
|
|
|
Formatter = logging.Formatter( # pylint: disable=invalid-name
|
|
|
|
fmt='%(asctime)s [%(funcName)s:%(lineno)03d] %(levelname)-5s: %(message)s',
|
|
|
|
datefmt='%m-%d-%Y %H:%M:%S')
|
|
|
|
ConsoleHandler = logging.StreamHandler() # pylint: disable=invalid-name
|
|
|
|
ConsoleHandler.setFormatter(Formatter)
|
|
|
|
LOG.addHandler(ConsoleHandler)
|
|
|
|
FileHandler = RotatingFileHandler( # pylint: disable=invalid-name
|
2019-11-04 18:44:58 -08:00
|
|
|
dconf.DRIVER_LOG, maxBytes=50000, backupCount=2)
|
2019-09-30 22:17:49 -07:00
|
|
|
FileHandler.setFormatter(Formatter)
|
|
|
|
LOG.addHandler(FileHandler)
|
|
|
|
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
@task
|
|
|
|
def check_disk_usage():
|
2019-11-04 18:44:58 -08:00
|
|
|
partition = dconf.DATABASE_DISK
|
2019-08-23 08:47:19 -07:00
|
|
|
disk_use = 0
|
2019-09-30 22:17:49 -07:00
|
|
|
if partition:
|
|
|
|
cmd = "df -h {}".format(partition)
|
2019-11-04 19:47:19 -08:00
|
|
|
out = run(cmd).splitlines()[1]
|
2019-09-30 22:17:49 -07:00
|
|
|
m = re.search(r'\d+(?=%)', out)
|
|
|
|
if m:
|
|
|
|
disk_use = int(m.group(0))
|
|
|
|
LOG.info("Current Disk Usage: %s%s", disk_use, '%')
|
2019-08-23 08:47:19 -07:00
|
|
|
return disk_use
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def check_memory_usage():
|
2019-11-04 19:47:19 -08:00
|
|
|
run('free -m -h')
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
@task
|
|
|
|
def create_controller_config():
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'postgres':
|
2019-11-04 19:47:19 -08:00
|
|
|
dburl_fmt = 'jdbc:postgresql://{host}:{port}/{db}'.format
|
2019-11-04 18:44:58 -08:00
|
|
|
elif dconf.DB_TYPE == 'oracle':
|
2019-11-04 19:47:19 -08:00
|
|
|
dburl_fmt = 'jdbc:oracle:thin:@{host}:{port}:{db}'.format
|
2019-09-30 22:17:49 -07:00
|
|
|
else:
|
2019-11-04 18:44:58 -08:00
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
config = dict(
|
2019-11-04 18:44:58 -08:00
|
|
|
database_type=dconf.DB_TYPE,
|
2019-11-04 19:47:19 -08:00
|
|
|
database_url=dburl_fmt(host=dconf.DB_HOST, port=dconf.DB_PORT, db=dconf.DB_NAME),
|
2019-11-04 18:44:58 -08:00
|
|
|
username=dconf.DB_USER,
|
|
|
|
password=dconf.DB_PASSWORD,
|
2019-09-30 22:17:49 -07:00
|
|
|
upload_code='DEPRECATED',
|
|
|
|
upload_url='DEPRECATED',
|
2019-11-04 18:44:58 -08:00
|
|
|
workload_name=dconf.OLTPBENCH_BENCH
|
2019-09-30 22:17:49 -07:00
|
|
|
)
|
|
|
|
|
2019-11-04 18:44:58 -08:00
|
|
|
with open(dconf.CONTROLLER_CONFIG, 'w') as f:
|
2019-09-30 22:17:49 -07:00
|
|
|
json.dump(config, f, indent=2)
|
|
|
|
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
@task
|
|
|
|
def restart_database():
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'postgres':
|
2019-11-04 19:47:19 -08:00
|
|
|
if dconf.HOST_CONN == 'docker':
|
|
|
|
# Restarting the docker container here is the cleanest way to do it
|
|
|
|
# becaues there's no init system running and the only process running
|
|
|
|
# in the container is postgres itself
|
|
|
|
local('docker restart {}'.format(dconf.CONTAINER_NAME))
|
|
|
|
else:
|
2019-11-08 03:42:32 -08:00
|
|
|
sudo('pg_ctl -D {} -w -t 600 restart -m fast'.format(
|
2019-11-18 08:23:15 -08:00
|
|
|
dconf.PG_DATADIR), user=dconf.ADMIN_USER, capture=False)
|
2019-11-04 18:44:58 -08:00
|
|
|
elif dconf.DB_TYPE == 'oracle':
|
2019-12-02 19:20:47 -08:00
|
|
|
db_log_path = os.path.join(os.path.split(dconf.DB_CONF)[0], 'startup.log')
|
|
|
|
local_log_path = os.path.join(dconf.LOG_DIR, 'startup.log')
|
|
|
|
local_logs_path = os.path.join(dconf.LOG_DIR, 'startups.log')
|
|
|
|
run_sql_script('restartOracle.sh', db_log_path)
|
|
|
|
get(db_log_path, local_log_path)
|
|
|
|
with open(local_log_path, 'r') as fin, open(local_logs_path, 'a') as fout:
|
|
|
|
lines = fin.readlines()
|
|
|
|
for line in lines:
|
|
|
|
if line.startswith('ORACLE instance started.'):
|
|
|
|
return True
|
|
|
|
if not line.startswith('SQL>'):
|
|
|
|
fout.write(line)
|
|
|
|
fout.write('\n')
|
|
|
|
return False
|
2019-08-23 08:47:19 -07:00
|
|
|
else:
|
2019-11-04 18:44:58 -08:00
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
2019-12-03 13:25:32 -08:00
|
|
|
return True
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def drop_database():
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'postgres':
|
2019-11-04 19:47:19 -08:00
|
|
|
run("PGPASSWORD={} dropdb -e --if-exists {} -U {} -h {}".format(
|
|
|
|
dconf.DB_PASSWORD, dconf.DB_NAME, dconf.DB_USER, dconf.DB_HOST))
|
2019-08-23 08:47:19 -07:00
|
|
|
else:
|
2019-11-04 18:44:58 -08:00
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def create_database():
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'postgres':
|
2019-11-04 19:47:19 -08:00
|
|
|
run("PGPASSWORD={} createdb -e {} -U {} -h {}".format(
|
|
|
|
dconf.DB_PASSWORD, dconf.DB_NAME, dconf.DB_USER, dconf.DB_HOST))
|
|
|
|
else:
|
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def create_user():
|
|
|
|
if dconf.DB_TYPE == 'postgres':
|
|
|
|
sql = "CREATE USER {} SUPERUSER PASSWORD '{}';".format(dconf.DB_USER, dconf.DB_PASSWORD)
|
|
|
|
run("PGPASSWORD={} psql -c \\\"{}\\\" -U postgres -h {}".format(
|
2019-11-08 03:42:32 -08:00
|
|
|
dconf.DB_PASSWORD, sql, dconf.DB_HOST))
|
2019-11-04 19:47:19 -08:00
|
|
|
elif dconf.DB_TYPE == 'oracle':
|
2019-11-05 16:39:34 -08:00
|
|
|
run_sql_script('createUser.sh', dconf.DB_USER, dconf.DB_PASSWORD)
|
2019-08-23 08:47:19 -07:00
|
|
|
else:
|
2019-11-04 18:44:58 -08:00
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
2019-11-04 19:47:19 -08:00
|
|
|
@task
|
|
|
|
def drop_user():
|
|
|
|
if dconf.DB_TYPE == 'postgres':
|
|
|
|
sql = "DROP USER IF EXISTS {};".format(dconf.DB_USER)
|
|
|
|
run("PGPASSWORD={} psql -c \\\"{}\\\" -U postgres -h {}".format(
|
|
|
|
dconf.DB_PASSWORD, sql, dconf.DB_HOST))
|
|
|
|
elif dconf.DB_TYPE == 'oracle':
|
2019-11-05 16:39:34 -08:00
|
|
|
run_sql_script('dropUser.sh', dconf.DB_USER)
|
2019-11-04 19:47:19 -08:00
|
|
|
else:
|
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
@task
|
2019-09-30 22:17:49 -07:00
|
|
|
def reset_conf():
|
2019-10-03 19:21:51 -07:00
|
|
|
change_conf()
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-10-03 19:21:51 -07:00
|
|
|
def change_conf(next_conf=None):
|
2019-09-30 22:17:49 -07:00
|
|
|
signal = "# configurations recommended by ottertune:\n"
|
|
|
|
next_conf = next_conf or {}
|
|
|
|
|
2019-11-04 19:47:19 -08:00
|
|
|
tmp_conf_in = os.path.join(dconf.TEMP_DIR, os.path.basename(dconf.DB_CONF) + '.in')
|
|
|
|
get(dconf.DB_CONF, tmp_conf_in)
|
|
|
|
with open(tmp_conf_in, 'r') as f:
|
2019-09-30 22:17:49 -07:00
|
|
|
lines = f.readlines()
|
|
|
|
|
|
|
|
if signal not in lines:
|
|
|
|
lines += ['\n', signal]
|
|
|
|
|
|
|
|
signal_idx = lines.index(signal)
|
|
|
|
lines = lines[0:signal_idx + 1]
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.BASE_DB_CONF:
|
2019-11-04 19:47:19 -08:00
|
|
|
assert isinstance(dconf.BASE_DB_CONF, dict), \
|
|
|
|
(type(dconf.BASE_DB_CONF), dconf.BASE_DB_CONF)
|
2019-11-04 18:44:58 -08:00
|
|
|
base_conf = ['{} = {}\n'.format(*c) for c in sorted(dconf.BASE_DB_CONF.items())]
|
|
|
|
lines.extend(base_conf)
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
if isinstance(next_conf, str):
|
|
|
|
with open(next_conf, 'r') as f:
|
|
|
|
recommendation = json.load(
|
|
|
|
f, encoding="UTF-8", object_pairs_hook=OrderedDict)['recommendation']
|
|
|
|
else:
|
|
|
|
recommendation = next_conf
|
|
|
|
|
|
|
|
assert isinstance(recommendation, dict)
|
|
|
|
|
|
|
|
for name, value in recommendation.items():
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'oracle' and isinstance(value, str):
|
2019-09-30 22:17:49 -07:00
|
|
|
value = value.strip('B')
|
|
|
|
lines.append('{} = {}\n'.format(name, value))
|
|
|
|
lines.append('\n')
|
|
|
|
|
2019-11-04 19:47:19 -08:00
|
|
|
tmp_conf_out = os.path.join(dconf.TEMP_DIR, os.path.basename(dconf.DB_CONF) + '.out')
|
|
|
|
with open(tmp_conf_out, 'w') as f:
|
2019-09-30 22:17:49 -07:00
|
|
|
f.write(''.join(lines))
|
|
|
|
|
2019-11-18 08:23:15 -08:00
|
|
|
sudo('cp {0} {0}.ottertune.bak'.format(dconf.DB_CONF))
|
2019-11-04 19:47:19 -08:00
|
|
|
put(tmp_conf_out, dconf.DB_CONF, use_sudo=False)
|
|
|
|
local('rm -f {} {}'.format(tmp_conf_in, tmp_conf_out))
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def load_oltpbench():
|
|
|
|
cmd = "./oltpbenchmark -b {} -c {} --create=true --load=true".\
|
2019-11-04 18:44:58 -08:00
|
|
|
format(dconf.OLTPBENCH_BENCH, dconf.OLTPBENCH_CONFIG)
|
|
|
|
with lcd(dconf.OLTPBENCH_HOME): # pylint: disable=not-context-manager
|
2019-08-23 08:47:19 -07:00
|
|
|
local(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def run_oltpbench():
|
|
|
|
cmd = "./oltpbenchmark -b {} -c {} --execute=true -s 5 -o outputfile".\
|
2019-11-04 18:44:58 -08:00
|
|
|
format(dconf.OLTPBENCH_BENCH, dconf.OLTPBENCH_CONFIG)
|
|
|
|
with lcd(dconf.OLTPBENCH_HOME): # pylint: disable=not-context-manager
|
2019-08-23 08:47:19 -07:00
|
|
|
local(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def run_oltpbench_bg():
|
|
|
|
cmd = "./oltpbenchmark -b {} -c {} --execute=true -s 5 -o outputfile > {} 2>&1 &".\
|
2019-11-04 18:44:58 -08:00
|
|
|
format(dconf.OLTPBENCH_BENCH, dconf.OLTPBENCH_CONFIG, dconf.OLTPBENCH_LOG)
|
|
|
|
with lcd(dconf.OLTPBENCH_HOME): # pylint: disable=not-context-manager
|
2019-08-23 08:47:19 -07:00
|
|
|
local(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def run_controller():
|
2019-11-04 18:44:58 -08:00
|
|
|
if not os.path.exists(dconf.CONTROLLER_CONFIG):
|
2019-09-30 22:17:49 -07:00
|
|
|
create_controller_config()
|
|
|
|
cmd = 'gradle run -PappArgs="-c {} -d output/" --no-daemon > {}'.\
|
2019-11-04 18:44:58 -08:00
|
|
|
format(dconf.CONTROLLER_CONFIG, dconf.CONTROLLER_LOG)
|
|
|
|
with lcd(dconf.CONTROLLER_HOME): # pylint: disable=not-context-manager
|
2019-08-23 08:47:19 -07:00
|
|
|
local(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def signal_controller():
|
2019-11-04 18:44:58 -08:00
|
|
|
pidfile = os.path.join(dconf.CONTROLLER_HOME, 'pid.txt')
|
2019-10-07 16:34:03 -07:00
|
|
|
with open(pidfile, 'r') as f:
|
|
|
|
pid = int(f.read())
|
2019-11-04 19:47:19 -08:00
|
|
|
cmd = 'kill -2 {}'.format(pid)
|
2019-11-04 18:44:58 -08:00
|
|
|
with lcd(dconf.CONTROLLER_HOME): # pylint: disable=not-context-manager
|
2019-08-23 08:47:19 -07:00
|
|
|
local(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def save_dbms_result():
|
|
|
|
t = int(time.time())
|
|
|
|
files = ['knobs.json', 'metrics_after.json', 'metrics_before.json', 'summary.json']
|
|
|
|
for f_ in files:
|
2019-11-04 18:44:58 -08:00
|
|
|
srcfile = os.path.join(dconf.CONTROLLER_HOME, 'output', f_)
|
|
|
|
dstfile = os.path.join(dconf.RESULT_DIR, '{}__{}'.format(t, f_))
|
2019-09-30 22:17:49 -07:00
|
|
|
local('cp {} {}'.format(srcfile, dstfile))
|
2019-10-03 19:21:51 -07:00
|
|
|
return t
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def save_next_config(next_config, t=None):
|
|
|
|
if not t:
|
|
|
|
t = int(time.time())
|
2019-11-04 18:44:58 -08:00
|
|
|
with open(os.path.join(dconf.RESULT_DIR, '{}__next_config.json'.format(t)), 'w') as f:
|
2019-10-03 19:21:51 -07:00
|
|
|
json.dump(next_config, f, indent=2)
|
|
|
|
return t
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def free_cache():
|
2019-11-08 08:08:06 -08:00
|
|
|
if dconf.HOST_CONN != 'docker':
|
|
|
|
with show('everything'), settings(warn_only=True): # pylint: disable=not-context-manager
|
2019-11-18 08:23:15 -08:00
|
|
|
res = sudo("sh -c \"echo 3 > /proc/sys/vm/drop_caches\"")
|
2019-11-04 19:47:19 -08:00
|
|
|
if res.failed:
|
|
|
|
LOG.error('%s (return code %s)', res.stderr.strip(), res.return_code)
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-10-23 19:46:33 -07:00
|
|
|
def upload_result(result_dir=None, prefix=None, upload_code=None):
|
2019-11-04 18:44:58 -08:00
|
|
|
result_dir = result_dir or os.path.join(dconf.CONTROLLER_HOME, 'output')
|
2019-09-30 22:17:49 -07:00
|
|
|
prefix = prefix or ''
|
2019-11-04 18:44:58 -08:00
|
|
|
upload_code = upload_code or dconf.UPLOAD_CODE
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
files = {}
|
|
|
|
for base in ('summary', 'knobs', 'metrics_before', 'metrics_after'):
|
|
|
|
fpath = os.path.join(result_dir, prefix + base + '.json')
|
|
|
|
|
|
|
|
# Replaces the true db version with the specified version to allow for
|
|
|
|
# testing versions not officially supported by OtterTune
|
2019-11-04 18:44:58 -08:00
|
|
|
if base == 'summary' and dconf.OVERRIDE_DB_VERSION:
|
2019-09-30 22:17:49 -07:00
|
|
|
with open(fpath, 'r') as f:
|
|
|
|
summary = json.load(f)
|
|
|
|
summary['real_database_version'] = summary['database_version']
|
2019-11-04 18:44:58 -08:00
|
|
|
summary['database_version'] = dconf.OVERRIDE_DB_VERSION
|
2019-09-30 22:17:49 -07:00
|
|
|
with open(fpath, 'w') as f:
|
|
|
|
json.dump(summary, f, indent=1)
|
|
|
|
|
|
|
|
files[base] = open(fpath, 'rb')
|
|
|
|
|
2019-11-04 18:44:58 -08:00
|
|
|
response = requests.post(dconf.WEBSITE_URL + '/new_result/', files=files,
|
2019-10-23 19:46:33 -07:00
|
|
|
data={'upload_code': upload_code})
|
2019-09-30 22:17:49 -07:00
|
|
|
if response.status_code != 200:
|
|
|
|
raise Exception('Error uploading result.\nStatus: {}\nMessage: {}\n'.format(
|
2019-11-26 00:57:35 -08:00
|
|
|
response.status_code, get_content(response)))
|
2019-09-30 22:17:49 -07:00
|
|
|
|
2019-10-07 16:34:03 -07:00
|
|
|
for f in files.values(): # pylint: disable=not-an-iterable
|
|
|
|
f.close()
|
|
|
|
|
2019-11-26 00:57:35 -08:00
|
|
|
LOG.info(get_content(response))
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
return response
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-10-23 19:46:33 -07:00
|
|
|
def get_result(max_time_sec=180, interval_sec=5, upload_code=None):
|
2019-09-30 22:17:49 -07:00
|
|
|
max_time_sec = int(max_time_sec)
|
|
|
|
interval_sec = int(interval_sec)
|
2019-11-04 18:44:58 -08:00
|
|
|
upload_code = upload_code or dconf.UPLOAD_CODE
|
|
|
|
url = dconf.WEBSITE_URL + '/query_and_get/' + upload_code
|
2019-10-03 19:21:51 -07:00
|
|
|
elapsed = 0
|
2019-09-30 22:17:49 -07:00
|
|
|
response_dict = None
|
|
|
|
response = ''
|
|
|
|
|
|
|
|
while elapsed <= max_time_sec:
|
|
|
|
rsp = requests.get(url)
|
2019-11-26 00:57:35 -08:00
|
|
|
response = get_content(rsp)
|
2019-10-03 19:21:51 -07:00
|
|
|
assert response != 'null'
|
|
|
|
|
|
|
|
LOG.debug('%s [status code: %d, content_type: %s, elapsed: %ds]', response,
|
|
|
|
rsp.status_code, rsp.headers.get('content-type', ''), elapsed)
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
if rsp.status_code == 200:
|
|
|
|
# Success
|
|
|
|
response_dict = json.loads(rsp.json(), object_pairs_hook=OrderedDict)
|
|
|
|
break
|
2019-10-03 19:21:51 -07:00
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
elif rsp.status_code == 202:
|
|
|
|
# Not ready
|
|
|
|
time.sleep(interval_sec)
|
2019-10-03 19:21:51 -07:00
|
|
|
elapsed += interval_sec
|
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
elif rsp.status_code == 400:
|
|
|
|
# Failure
|
|
|
|
raise Exception(
|
|
|
|
"Failed to download the next config.\nStatus code: {}\nMessage: {}\n".format(
|
|
|
|
rsp.status_code, response))
|
2019-10-03 19:21:51 -07:00
|
|
|
|
2019-09-30 22:17:49 -07:00
|
|
|
else:
|
|
|
|
raise NotImplementedError(
|
|
|
|
"Unhandled status code: '{}'.\nMessage: {}".format(rsp.status_code, response))
|
|
|
|
|
|
|
|
if not response_dict:
|
|
|
|
assert elapsed > max_time_sec, \
|
2019-10-03 19:21:51 -07:00
|
|
|
'response={} but elapsed={}s <= max_time={}s'.format(
|
2019-09-30 22:17:49 -07:00
|
|
|
response, elapsed, max_time_sec)
|
|
|
|
raise Exception(
|
2019-10-03 19:21:51 -07:00
|
|
|
'Failed to download the next config in {}s: {} (elapsed: {}s)'.format(
|
2019-09-30 22:17:49 -07:00
|
|
|
max_time_sec, response, elapsed))
|
|
|
|
|
2019-10-03 19:21:51 -07:00
|
|
|
LOG.info('Downloaded the next config in %ds: %s', elapsed, json.dumps(response_dict, indent=4))
|
2019-09-30 22:17:49 -07:00
|
|
|
|
|
|
|
return response_dict
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
2019-10-03 19:21:51 -07:00
|
|
|
@task
|
|
|
|
def download_debug_info(pprint=False):
|
2019-11-04 19:47:19 -08:00
|
|
|
pprint = parse_bool(pprint)
|
2019-11-04 18:44:58 -08:00
|
|
|
url = '{}/dump/{}'.format(dconf.WEBSITE_URL, dconf.UPLOAD_CODE)
|
2019-10-03 19:21:51 -07:00
|
|
|
params = {'pp': int(True)} if pprint else {}
|
|
|
|
rsp = requests.get(url, params=params)
|
|
|
|
|
|
|
|
if rsp.status_code != 200:
|
|
|
|
raise Exception('Error downloading debug info.')
|
|
|
|
|
|
|
|
filename = rsp.headers.get('Content-Disposition').split('=')[-1]
|
|
|
|
file_len, exp_len = len(rsp.content), int(rsp.headers.get('Content-Length'))
|
|
|
|
assert file_len == exp_len, 'File {}: content length != expected length: {} != {}'.format(
|
|
|
|
filename, file_len, exp_len)
|
|
|
|
|
|
|
|
with open(filename, 'wb') as f:
|
|
|
|
f.write(rsp.content)
|
|
|
|
LOG.info('Downloaded debug info to %s', filename)
|
|
|
|
|
|
|
|
return filename
|
|
|
|
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
@task
|
|
|
|
def add_udf():
|
2019-11-04 19:47:19 -08:00
|
|
|
local('python3 ./LatencyUDF.py ../controller/output/')
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-10-23 19:46:33 -07:00
|
|
|
def upload_batch(result_dir=None, sort=True, upload_code=None):
|
2019-11-04 18:44:58 -08:00
|
|
|
result_dir = result_dir or dconf.RESULT_DIR
|
2019-11-04 19:47:19 -08:00
|
|
|
sort = parse_bool(sort)
|
2019-09-30 22:17:49 -07:00
|
|
|
results = glob.glob(os.path.join(result_dir, '*__summary.json'))
|
|
|
|
if sort:
|
|
|
|
results = sorted(results)
|
|
|
|
count = len(results)
|
|
|
|
|
|
|
|
LOG.info('Uploading %d samples from %s...', count, result_dir)
|
|
|
|
for i, result in enumerate(results):
|
2019-10-07 16:34:03 -07:00
|
|
|
prefix = os.path.basename(result)
|
|
|
|
prefix_len = os.path.basename(result).find('_') + 2
|
|
|
|
prefix = prefix[:prefix_len]
|
2019-10-23 19:46:33 -07:00
|
|
|
upload_result(result_dir=result_dir, prefix=prefix, upload_code=upload_code)
|
2019-09-30 22:17:49 -07:00
|
|
|
LOG.info('Uploaded result %d/%d: %s__*.json', i + 1, count, prefix)
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
@task
|
|
|
|
def dump_database():
|
2019-11-04 19:47:19 -08:00
|
|
|
dumpfile = os.path.join(dconf.DB_DUMP_DIR, dconf.DB_NAME + '.dump')
|
2019-12-10 20:03:50 -08:00
|
|
|
if dconf.DB_TYPE == 'oracle':
|
|
|
|
if not dconf.ORACLE_FLASH_BACK and file_exists(dumpfile):
|
|
|
|
LOG.info('%s already exists ! ', dumpfile)
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
if file_exists(dumpfile):
|
|
|
|
LOG.info('%s already exists ! ', dumpfile)
|
|
|
|
return False
|
2019-11-04 19:47:19 -08:00
|
|
|
|
2019-11-23 12:21:51 -08:00
|
|
|
if dconf.ORACLE_FLASH_BACK:
|
|
|
|
LOG.info('create restore point %s for database %s in %s', dconf.RESTORE_POINT,
|
|
|
|
dconf.DB_NAME, dconf.RECOVERY_FILE_DEST)
|
|
|
|
else:
|
|
|
|
LOG.info('Dump database %s to %s', dconf.DB_NAME, dumpfile)
|
2019-11-04 19:47:19 -08:00
|
|
|
|
2019-11-08 03:42:32 -08:00
|
|
|
if dconf.DB_TYPE == 'oracle':
|
2019-11-23 12:21:51 -08:00
|
|
|
if dconf.ORACLE_FLASH_BACK:
|
|
|
|
run_sql_script('createRestore.sh', dconf.RESTORE_POINT,
|
|
|
|
dconf.RECOVERY_FILE_DEST_SIZE, dconf.RECOVERY_FILE_DEST)
|
|
|
|
else:
|
|
|
|
run_sql_script('dumpOracle.sh', dconf.DB_USER, dconf.DB_PASSWORD,
|
|
|
|
dconf.DB_NAME, dconf.DB_DUMP_DIR)
|
2019-11-08 03:42:32 -08:00
|
|
|
|
|
|
|
elif dconf.DB_TYPE == 'postgres':
|
|
|
|
run('PGPASSWORD={} pg_dump -U {} -h {} -F c -d {} > {}'.format(
|
|
|
|
dconf.DB_PASSWORD, dconf.DB_USER, dconf.DB_HOST, dconf.DB_NAME,
|
|
|
|
dumpfile))
|
|
|
|
else:
|
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
|
|
|
return True
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
2019-11-23 12:21:51 -08:00
|
|
|
@task
|
|
|
|
def clean_recovery():
|
|
|
|
run_sql_script('removeRestore.sh', dconf.RESTORE_POINT)
|
|
|
|
cmds = ("""rman TARGET / <<EOF\nDELETE ARCHIVELOG ALL;\nexit\nEOF""")
|
|
|
|
run(cmds)
|
|
|
|
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
@task
|
|
|
|
def restore_database():
|
2019-11-04 19:47:19 -08:00
|
|
|
dumpfile = os.path.join(dconf.DB_DUMP_DIR, dconf.DB_NAME + '.dump')
|
2019-11-23 12:21:51 -08:00
|
|
|
if not dconf.ORACLE_FLASH_BACK and not file_exists(dumpfile):
|
2019-11-04 19:47:19 -08:00
|
|
|
raise FileNotFoundError("Database dumpfile '{}' does not exist!".format(dumpfile))
|
|
|
|
|
2019-11-05 16:39:34 -08:00
|
|
|
LOG.info('Start restoring database')
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.DB_TYPE == 'oracle':
|
2019-11-23 12:21:51 -08:00
|
|
|
if dconf.ORACLE_FLASH_BACK:
|
|
|
|
run_sql_script('flashBack.sh', dconf.RESTORE_POINT)
|
|
|
|
clean_recovery()
|
|
|
|
else:
|
|
|
|
drop_user()
|
|
|
|
create_user()
|
|
|
|
run_sql_script('restoreOracle.sh', dconf.DB_USER, dconf.DB_NAME)
|
2019-11-04 18:44:58 -08:00
|
|
|
elif dconf.DB_TYPE == 'postgres':
|
2019-08-23 08:47:19 -07:00
|
|
|
drop_database()
|
|
|
|
create_database()
|
2019-11-05 16:39:34 -08:00
|
|
|
run('PGPASSWORD={} pg_restore -U {} -h {} -n public -j 8 -F c -d {} {}'.format(
|
|
|
|
dconf.DB_PASSWORD, dconf.DB_USER, dconf.DB_HOST, dconf.DB_NAME, dumpfile))
|
2019-08-23 08:47:19 -07:00
|
|
|
else:
|
2019-11-04 18:44:58 -08:00
|
|
|
raise Exception("Database Type {} Not Implemented !".format(dconf.DB_TYPE))
|
2019-08-23 08:47:19 -07:00
|
|
|
LOG.info('Finish restoring database')
|
|
|
|
|
|
|
|
|
|
|
|
def _ready_to_start_oltpbench():
|
2019-10-07 16:34:03 -07:00
|
|
|
ready = False
|
2019-11-04 18:44:58 -08:00
|
|
|
if os.path.exists(dconf.CONTROLLER_LOG):
|
|
|
|
with open(dconf.CONTROLLER_LOG, 'r') as f:
|
2019-10-07 16:34:03 -07:00
|
|
|
content = f.read()
|
|
|
|
ready = 'Output the process pid to' in content
|
|
|
|
return ready
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
def _ready_to_start_controller():
|
2019-10-07 16:34:03 -07:00
|
|
|
ready = False
|
2019-11-04 18:44:58 -08:00
|
|
|
if os.path.exists(dconf.OLTPBENCH_LOG):
|
|
|
|
with open(dconf.OLTPBENCH_LOG, 'r') as f:
|
2019-10-07 16:34:03 -07:00
|
|
|
content = f.read()
|
|
|
|
ready = 'Warmup complete, starting measurements' in content
|
|
|
|
return ready
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
def _ready_to_shut_down_controller():
|
2019-11-04 18:44:58 -08:00
|
|
|
pidfile = os.path.join(dconf.CONTROLLER_HOME, 'pid.txt')
|
2019-10-07 16:34:03 -07:00
|
|
|
ready = False
|
2019-11-04 18:44:58 -08:00
|
|
|
if os.path.exists(pidfile) and os.path.exists(dconf.OLTPBENCH_LOG):
|
|
|
|
with open(dconf.OLTPBENCH_LOG, 'r') as f:
|
2019-10-07 16:34:03 -07:00
|
|
|
content = f.read()
|
|
|
|
ready = 'Output throughput samples into file' in content
|
|
|
|
return ready
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
def clean_logs():
|
2019-11-04 19:47:19 -08:00
|
|
|
# remove oltpbench and controller log files
|
|
|
|
local('rm -f {} {}'.format(dconf.OLTPBENCH_LOG, dconf.CONTROLLER_LOG))
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-10-28 17:07:34 -07:00
|
|
|
def loop(i):
|
2019-11-04 19:47:19 -08:00
|
|
|
i = int(i)
|
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
# free cache
|
|
|
|
free_cache()
|
|
|
|
|
|
|
|
# remove oltpbench log and controller log
|
|
|
|
clean_logs()
|
|
|
|
|
|
|
|
# check disk usage
|
2019-11-04 18:44:58 -08:00
|
|
|
if check_disk_usage() > dconf.MAX_DISK_USAGE:
|
|
|
|
LOG.warning('Exceeds max disk usage %s', dconf.MAX_DISK_USAGE)
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
# run controller from another process
|
|
|
|
p = Process(target=run_controller, args=())
|
|
|
|
p.start()
|
|
|
|
LOG.info('Run the controller')
|
|
|
|
|
|
|
|
# run oltpbench as a background job
|
|
|
|
while not _ready_to_start_oltpbench():
|
2019-09-30 22:17:49 -07:00
|
|
|
time.sleep(1)
|
2019-08-23 08:47:19 -07:00
|
|
|
run_oltpbench_bg()
|
|
|
|
LOG.info('Run OLTP-Bench')
|
|
|
|
|
|
|
|
# the controller starts the first collection
|
|
|
|
while not _ready_to_start_controller():
|
2019-09-30 22:17:49 -07:00
|
|
|
time.sleep(1)
|
2019-08-23 08:47:19 -07:00
|
|
|
signal_controller()
|
|
|
|
LOG.info('Start the first collection')
|
|
|
|
|
|
|
|
# stop the experiment
|
|
|
|
while not _ready_to_shut_down_controller():
|
2019-09-30 22:17:49 -07:00
|
|
|
time.sleep(1)
|
2019-10-28 20:32:34 -07:00
|
|
|
|
2019-08-23 08:47:19 -07:00
|
|
|
signal_controller()
|
|
|
|
LOG.info('Start the second collection, shut down the controller')
|
|
|
|
|
|
|
|
p.join()
|
|
|
|
|
|
|
|
# add user defined target objective
|
|
|
|
# add_udf()
|
|
|
|
|
|
|
|
# save result
|
2019-10-03 19:21:51 -07:00
|
|
|
result_timestamp = save_dbms_result()
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-11-04 18:44:58 -08:00
|
|
|
if i >= dconf.WARMUP_ITERATIONS:
|
2019-10-28 17:07:34 -07:00
|
|
|
# upload result
|
|
|
|
upload_result()
|
2019-08-23 08:47:19 -07:00
|
|
|
|
2019-10-28 17:07:34 -07:00
|
|
|
# get result
|
|
|
|
response = get_result()
|
2019-10-28 20:32:34 -07:00
|
|
|
|
2019-10-28 17:07:34 -07:00
|
|
|
# save next config
|
|
|
|
save_next_config(response, t=result_timestamp)
|
2019-10-28 20:32:34 -07:00
|
|
|
|
2019-10-28 17:07:34 -07:00
|
|
|
# change config
|
|
|
|
change_conf(response['recommendation'])
|
2019-08-23 08:47:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
@task
|
2019-12-10 20:03:50 -08:00
|
|
|
def run_loops(max_iter=10):
|
2019-08-23 08:47:19 -07:00
|
|
|
# dump database if it's not done before.
|
|
|
|
dump = dump_database()
|
|
|
|
|
|
|
|
for i in range(int(max_iter)):
|
2019-12-03 17:42:52 -08:00
|
|
|
# restart database
|
|
|
|
restart_succeeded = restart_database()
|
|
|
|
if not restart_succeeded:
|
|
|
|
files = {'summary': b'{"error": "DB_RESTART_ERROR"}',
|
|
|
|
'knobs': b'{}',
|
|
|
|
'metrics_before': b'{}',
|
|
|
|
'metrics_after': b'{}'}
|
|
|
|
response = requests.post(dconf.WEBSITE_URL + '/new_result/', files=files,
|
|
|
|
data={'upload_code': dconf.UPLOAD_CODE})
|
|
|
|
response = get_result()
|
|
|
|
result_timestamp = int(time.time())
|
|
|
|
save_next_config(response, t=result_timestamp)
|
|
|
|
change_conf(response['recommendation'])
|
|
|
|
continue
|
2019-12-03 18:08:55 -08:00
|
|
|
|
2019-12-03 17:42:52 -08:00
|
|
|
# reload database periodically
|
2019-11-04 18:44:58 -08:00
|
|
|
if dconf.RELOAD_INTERVAL > 0:
|
|
|
|
if i % dconf.RELOAD_INTERVAL == 0:
|
2019-08-23 08:47:19 -07:00
|
|
|
if i == 0 and dump is False:
|
|
|
|
restore_database()
|
|
|
|
elif i > 0:
|
|
|
|
restore_database()
|
|
|
|
|
2019-12-03 17:42:52 -08:00
|
|
|
time.sleep(dconf.RESTART_SLEEP_SEC)
|
2019-08-23 08:47:19 -07:00
|
|
|
LOG.info('The %s-th Loop Starts / Total Loops %s', i + 1, max_iter)
|
2019-11-04 19:47:19 -08:00
|
|
|
loop(i % dconf.RELOAD_INTERVAL if dconf.RELOAD_INTERVAL > 0 else i)
|
2019-08-23 08:47:19 -07:00
|
|
|
LOG.info('The %s-th Loop Ends / Total Loops %s', i + 1, max_iter)
|
2019-10-23 19:46:33 -07:00
|
|
|
|
|
|
|
|
2019-10-24 08:59:36 -07:00
|
|
|
@task
|
2019-10-23 19:46:33 -07:00
|
|
|
def rename_batch(result_dir=None):
|
2019-11-04 18:44:58 -08:00
|
|
|
result_dir = result_dir or dconf.RESULT_DIR
|
2019-10-23 19:46:33 -07:00
|
|
|
results = glob.glob(os.path.join(result_dir, '*__summary.json'))
|
|
|
|
results = sorted(results)
|
|
|
|
for i, result in enumerate(results):
|
|
|
|
prefix = os.path.basename(result)
|
|
|
|
prefix_len = os.path.basename(result).find('_') + 2
|
|
|
|
prefix = prefix[:prefix_len]
|
|
|
|
new_prefix = str(i) + '__'
|
|
|
|
for base in ('summary', 'knobs', 'metrics_before', 'metrics_after'):
|
|
|
|
fpath = os.path.join(result_dir, prefix + base + '.json')
|
|
|
|
rename_path = os.path.join(result_dir, new_prefix + base + '.json')
|
|
|
|
os.rename(fpath, rename_path)
|
|
|
|
|
|
|
|
|
2019-11-07 23:40:32 -08:00
|
|
|
def _http_content_to_json(content):
|
|
|
|
if isinstance(content, bytes):
|
|
|
|
content = content.decode('utf-8')
|
|
|
|
try:
|
|
|
|
json_content = json.loads(content)
|
|
|
|
decoded = True
|
|
|
|
except (TypeError, json.decoder.JSONDecodeError):
|
|
|
|
json_content = None
|
|
|
|
decoded = False
|
|
|
|
|
|
|
|
return json_content, decoded
|
|
|
|
|
|
|
|
|
|
|
|
def _modify_website_object(obj_name, action, verbose=False, **kwargs):
|
|
|
|
verbose = _parse_bool(verbose)
|
|
|
|
if obj_name == 'project':
|
|
|
|
valid_actions = ('create', 'edit')
|
|
|
|
elif obj_name == 'session':
|
|
|
|
valid_actions = ('create', 'edit')
|
|
|
|
elif obj_name == 'user':
|
|
|
|
valid_actions = ('create', 'delete')
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid object: {}. Valid objects: project, session'.format(obj_name))
|
|
|
|
|
|
|
|
if action not in valid_actions:
|
|
|
|
raise ValueError('Invalid action: {}. Valid actions: {}'.format(
|
|
|
|
action, ', '.join(valid_actions)))
|
|
|
|
|
|
|
|
data = {}
|
|
|
|
for k, v in kwargs.items():
|
|
|
|
if isinstance(v, (dict, list, tuple)):
|
|
|
|
v = json.dumps(v)
|
|
|
|
data[k] = v
|
|
|
|
|
|
|
|
url_path = '/{}/{}/'.format(action, obj_name)
|
|
|
|
response = requests.post(CONF['upload_url'] + url_path, data=data)
|
|
|
|
|
|
|
|
content = response.content.decode('utf-8')
|
|
|
|
if response.status_code != 200:
|
|
|
|
raise Exception("Failed to {} new {}.\nStatus: {}\nMessage: {}\n".format(
|
|
|
|
action, obj_name, response.status_code, content))
|
|
|
|
|
|
|
|
json_content, decoded = _http_content_to_json(content)
|
|
|
|
if verbose:
|
|
|
|
if decoded:
|
|
|
|
LOG.info('\n%s_%s = %s', action.upper(), obj_name.upper(),
|
|
|
|
json.dumps(json_content, indent=4))
|
|
|
|
else:
|
|
|
|
LOG.warning("Content could not be decoded.\n\n%s\n", content)
|
|
|
|
|
|
|
|
return response, json_content, decoded
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def create_website_user(**kwargs):
|
|
|
|
return _modify_website_object('user', 'create', **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def delete_website_user(**kwargs):
|
|
|
|
return _modify_website_object('user', 'delete', **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def create_website_project(**kwargs):
|
|
|
|
return _modify_website_object('project', 'create', **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def edit_website_project(**kwargs):
|
|
|
|
return _modify_website_object('project', 'edit', **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def create_website_session(**kwargs):
|
|
|
|
return _modify_website_object('session', 'create', **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@task
|
|
|
|
def edit_website_session(**kwargs):
|
|
|
|
return _modify_website_object('session', 'edit', **kwargs)
|
|
|
|
|
|
|
|
|
2019-10-24 08:59:36 -07:00
|
|
|
def wait_pipeline_data_ready(max_time_sec=800, interval_sec=10):
|
|
|
|
max_time_sec = int(max_time_sec)
|
|
|
|
interval_sec = int(interval_sec)
|
|
|
|
elapsed = 0
|
2019-11-26 00:57:35 -08:00
|
|
|
ready = False
|
2019-10-24 08:59:36 -07:00
|
|
|
|
|
|
|
while elapsed <= max_time_sec:
|
2019-11-04 18:44:58 -08:00
|
|
|
response = requests.get(dconf.WEBSITE_URL + '/test/pipeline/')
|
2019-11-26 00:57:35 -08:00
|
|
|
content = get_content(response)
|
2019-11-26 01:47:42 -08:00
|
|
|
LOG.info("%s (elapsed: %ss)", content, elapsed)
|
2019-11-26 00:57:35 -08:00
|
|
|
if 'False' in content:
|
2019-10-24 08:59:36 -07:00
|
|
|
time.sleep(interval_sec)
|
|
|
|
elapsed += interval_sec
|
|
|
|
else:
|
2019-11-26 00:57:35 -08:00
|
|
|
ready = True
|
|
|
|
break
|
|
|
|
|
|
|
|
return ready
|
2019-10-24 08:59:36 -07:00
|
|
|
|
|
|
|
|
2019-10-23 19:46:33 -07:00
|
|
|
@task
|
|
|
|
def integration_tests():
|
|
|
|
|
|
|
|
# Create test website
|
2019-11-04 18:44:58 -08:00
|
|
|
response = requests.get(dconf.WEBSITE_URL + '/test/create/')
|
2019-11-26 00:57:35 -08:00
|
|
|
LOG.info(get_content(response))
|
2019-10-23 19:46:33 -07:00
|
|
|
|
|
|
|
# Upload training data
|
|
|
|
LOG.info('Upload training data to no tuning session')
|
2019-12-03 18:26:59 -08:00
|
|
|
upload_batch(result_dir='./integrationTests/data/', upload_code='ottertuneTestNoTuning')
|
2019-10-23 19:46:33 -07:00
|
|
|
|
2019-10-24 09:28:36 -07:00
|
|
|
# wait celery periodic task finishes
|
2019-11-26 00:57:35 -08:00
|
|
|
assert wait_pipeline_data_ready(), "Pipeline data failed"
|
2019-10-24 08:59:36 -07:00
|
|
|
|
2019-10-23 19:46:33 -07:00
|
|
|
# Test DNN
|
|
|
|
LOG.info('Test DNN (deep neural network)')
|
2019-12-03 18:26:59 -08:00
|
|
|
upload_result(result_dir='./integrationTests/data/', prefix='0__',
|
2019-10-24 08:59:36 -07:00
|
|
|
upload_code='ottertuneTestTuningDNN')
|
2019-10-23 19:46:33 -07:00
|
|
|
response = get_result(upload_code='ottertuneTestTuningDNN')
|
|
|
|
assert response['status'] == 'good'
|
|
|
|
|
|
|
|
# Test GPR
|
|
|
|
LOG.info('Test GPR (gaussian process regression)')
|
2019-12-03 18:26:59 -08:00
|
|
|
upload_result(result_dir='./integrationTests/data/', prefix='0__',
|
2019-10-24 08:59:36 -07:00
|
|
|
upload_code='ottertuneTestTuningGPR')
|
2019-10-23 19:46:33 -07:00
|
|
|
response = get_result(upload_code='ottertuneTestTuningGPR')
|
2019-10-24 08:59:36 -07:00
|
|
|
assert response['status'] == 'good'
|