Optimizing a MySQL server database running OLTPBench
In this example study, we are going to optimize a MySQL instance by setting the performance goal of maximizing the throughput of operations towards the database.
As regards workload generation, in this example we are going to use OLTPBench, a popular open-source benchmarking suite for databases. OLTPBench supports several benchmarks, in this example we will be using Synthetic Resource Stresser.
To import the results of the benchmark into Akamas, we are going to use a custom script to convert its output to a CSV file that can be parsed by the CSV provider.
Environment Setup
In order to run the OLTP Benchmark suite against a MySQL installation, you need to first install and configure the two software. In the following, we will assume that both MySQL and OLTP will run on the same machine, to obtain more significant results in terms of performance you might want to run them on separate hosts.
MySQL Installation
To install MySQL please follow the official documentation. In the following, we will make a few assumptions on the location of the configuration files, the user running the server, and the location of the datafiles. These assumptions are based on a default installation of MySQL on an Ubuntu instance performed via apt.
Datafile location: /var/lib/mysql
Configuration file: /etc/mysql/conf.d/mysql.cnf
MySQL user: mysql
MySQL root user password: root
This is a template for the configuration file mysql.cnf.template
If your installation of MySQL has different default values for these parameters please update the provided scripts accordingly.
OLTP Installation
To install OLTP you can download a pre-built version here or build it from the official repository. In the following, we will assume that OLTP is installed in the /home/ubuntu/oltp folder.
To verify your installation of OLTP and initialize the database you can download the following set of scripts and place them in the /home/ubuntu/scripts folder. Move in the folder and run the init-db.sh script.
This is the init-db.sh script:
#!/bin/bashset-ecd"$(dirname "$0")"cd../oltpmysql-uroot-proot-e"CREATE DATABASE resourcestresser"./oltpbenchmark--benchresourcestresser--configscripts/resourcestresser.xml--create=true--load=truesleep5sudosystemctlstopmysql#Create the backupecho"Backing up the database"sudorm-rf/tmp/backupsudomkdir/tmp/backupsudorsync-r--progress/var/lib/mysql/tmp/backup/sleep2sudosystemctlstartmysqlsudosystemctlstatusmysql
This script will:
connect to your MySQL installation
create a resourcestresser database for the test
run the OLTP data generation phase to populate the database
backup the initialized database under /tmp/backup
The resourcestresser.xml file contains the workload for the application. The default setting is quite small and should be used for testing purposes. You can then modify the test to suit your benchmarking needs.
Optimization Setup
Here is a step-by-step explanation of all the required configurations for this example.
System
In this example, we are interested in optimizing MySQL settings and measuring the peak throughput measured using OLTPBench. Hence, we are going to create two components:
A mysql component which represents the MySQL instance, including all the configuration parameters
An OLTP component which represents OLTPBench and contains the custom metrics reported by the benchmark
The OLTP component
MySQL is a widespread technology and Akamas provides a specific Optimization Pack to support its optimization. OLTP, on the other hand, is a benchmark application and is not yet supported by a specific optimization pack. To use it in our study, we will need to define its metrics first. This operation can be done once and the created component type can be used across many systems.
First, build a metrics.yamlfile with the following content:
metrics: - name:throughputdescription:The throughput of the databaseunit:tps - name:response_time_avgdescription:The average response time of the databaseunit:milliseconds - name:response_time_mindescription:The minimum response time of the databaseunit:milliseconds - name:response_time_25thdescription:The response time 25th percentile of the databaseunit:milliseconds - name:response_time_mediandescription:The response time median of the databaseunit:milliseconds - name:response_time_75thdescription:The response time 75th percentile of the databaseunit:milliseconds - name:response_time_90thdescription:The response time 90th percentile of the databaseunit:milliseconds - name:response_time_95thdescription:The response time 95th percentile of the databaseunit:milliseconds - name:response_time_99thdescription:The response time 99th percentile of the databaseunit:milliseconds - name:response_time_maxdescription:The maximum response time of the databaseunit:milliseconds - name:durationdescription:The duration of the task (load or benchmark execution)unit:seconds
You can now create the metrics by issuing the following command:
akamascreatemetricsmetrics.yaml
Finally, create a file named resourcestresser.yaml with the following definition of the component:
name:ResourceStresserdescription:> ResourceStresser benchmark from OLTPBench for database systems. It is a purely synthetic benchmark that can create isolated contention on the system resources. Each of the benchmark’s transactions imposes some load on three specific resources: CPU, disk I/O, and locks.parameters: []metrics: - name:throughput - name:response_time_avg - name:response_time_max - name:response_time_min - name:response_time_25th - name:response_time_median - name:response_time_75th - name:response_time_90th - name:response_time_95th - name:response_time_99th - name:duration
You can now create the metrics by issuing the following command:
akamascreatecomponent-typeresourcestresser.yaml
Model the system
Here’s the definition of our system (system.yaml):
name:MySQL-ResourceStresserdescription:A system for evaluating MySQL with OLTP Benchmark
Here’s the definition of our mysql component (mysql.yaml):
A workflow for optimizing MySQL can be structured into 6 tasks:
Reset OLTPBench data
Configure MySQL
Restart MySQL
Launch the benchmark
Parse the benchmark results
Here below you can find the scripts that codify these tasks.
This is the restart-mysql.sh script:
#!/usr/bin/env bashset-ecd"$(dirname "$0")"#Stop the DBecho"Stopping MySQL"sudosystemctlstopmysql&> /dev/null#sudo systemctl status mysql#Apply Configurationecho"Copying the configuration"sudocpmy.cnf/etc/mysql/conf.d/mysql.cnf#Drop dataecho"Dropping the data"sudorm-rf/var/lib/mysql#Create the backup# sudo rsync -r --progress /var/lib/mysql /tmp/backup/#Restore the backup dataecho"Restoring the DB"sudorsync-r--progress/tmp/backup/mysql/var/lib/sudochown-Rmysql:/var/lib/mysqlsync; sudosh-c"echo 3 > /proc/sys/vm/drop_caches"; sync#Restart DBecho"Restarting the database"sudosystemctlstartmysql&> /dev/null#sudo systemctl status mysqlsleep2
We are going to use Akamas telemetry capability to import the metrics related to OLTPBench benchmark results, in particular the throughput of operations. To achieve this we can leverage the Akamas CSV provider, which extracts metrics from CSV files. The CSV file is the one produced in the last task of the workflow of the study.
This telemetry provider can be installed by running:
In this example, we are going to leverage Akamas AI-driven optimization capabilities to maximize MySQL database query throughput, as measured by the OLTPBench benchmark.