├── .gitignore ├── LICENSE ├── README.md ├── abbench └── Dockerfile ├── blogbench └── Dockerfile ├── cloud-config.yml ├── duke-docker-day-presentation.pdf ├── duke-docker-day-presentation.pptx ├── iibench-mysql ├── Dockerfile ├── create_mysql_admin_user.sh └── run2.sh ├── images ├── CPU_comparison.png ├── MySQL_comparison.png ├── MySQL_index_insertion_comparison.png ├── MySQL_index_query_comparison.png ├── ab_comparison.png ├── bench_io_mod-results.png ├── blogbench-reads_comparison.png ├── blogbench-writes_comparison.png ├── control-CPU_cpu-time.png ├── control-CPU_cpu.png ├── control-CPU_mem.png ├── control-bench_io_mod-cpu.png ├── control-bench_io_mod-mem.png ├── control-serial-container-boot.png ├── control-ssp-100-boot_detail.png ├── control-ssp-100-shutdown_detail.png ├── control-ssp-100.png ├── control-ssp-15-boot_detail.png ├── control-ssp-15-shutdown_detail.png ├── control-ssp-15.png ├── mbw-DUMB_comparison.png ├── mbw-MCBLOCK_comparison.png ├── mbw-MEMCPY_comparison.png ├── primary-CPU_cpu-time.png ├── primary-CPU_cpu.png ├── primary-serial-container-boot.png ├── primary-ssp-100-boot_detail.png ├── primary-ssp-15-boot_detail.png ├── primary_no_hypervisor-CPU_cpu-time.png ├── primary_no_hypervisor-CPU_cpu.png ├── primary_no_hypervisor-bench_io_mod-cpu.png ├── primary_no_hypervisor-bench_io_mod-mem.png ├── primary_no_hypervisor-serial-container-boot.png ├── primary_no_hypervisor-ssp-100-boot_detail.png ├── primary_no_hypervisor-ssp-100-shutdown_detail.png ├── primary_no_hypervisor-ssp-100.png ├── primary_no_hypervisor-ssp-15-boot_detail.png ├── primary_no_hypervisor-ssp-15-shutdown_detail.png ├── primary_no_hypervisor-ssp-15.png └── unmodified_file_io_comparison.png ├── mbwbench ├── Dockerfile └── run.sh ├── raw-results ├── control-CPU_cpu-time.txt ├── control-CPU_cpu.csv ├── control-CPU_mem.csv ├── control-bench_app_ab-cpu.csv ├── control-bench_app_ab-mem.csv ├── control-bench_app_ab-results.csv ├── control-bench_app_ab-results.txt ├── control-bench_app_blog-cpu.csv ├── control-bench_app_blog-mem.csv ├── control-bench_app_blog-results.txt ├── control-bench_app_blog-results_reads.csv ├── control-bench_app_blog-results_writes.csv ├── control-bench_io-cpu.csv ├── control-bench_io-mem.csv ├── control-bench_io-results.txt ├── control-bench_io_mod-cpu.csv ├── control-bench_io_mod-mem.csv ├── control-bench_io_mod-results.txt ├── control-bench_mbw-cpu.csv ├── control-bench_mbw-mem.csv ├── control-bench_mbw-results.txt ├── control-bench_mbw-results_DUMB.csv ├── control-bench_mbw-results_MCBLOCK.csv ├── control-bench_mbw-results_MEMCPY.csv ├── control-bench_mysql-cpu.csv ├── control-bench_mysql-mem.csv ├── control-bench_mysql-results.csv ├── control-bench_mysql-results.txt ├── control-bench_mysql_index-cpu.csv ├── control-bench_mysql_index-mem.csv ├── control-bench_mysql_index-results.csv ├── control-bench_mysql_index-results.txt ├── control-serial-container-boot.csv ├── control-ssp-100.csv ├── control-ssp-15.csv ├── primary-bench_app_ab-cpu.csv ├── primary-bench_app_ab-mem.csv ├── primary-bench_app_ab-results.csv ├── primary-bench_app_ab-results.txt ├── primary-bench_app_blog-cpu.csv ├── primary-bench_app_blog-mem.csv ├── primary-bench_app_blog-results.txt ├── primary-bench_app_blog-results_reads.csv ├── primary-bench_app_blog-results_writes.csv ├── primary-bench_boot_ssp-100-cpu.csv ├── primary-bench_boot_ssp-100-mem.csv ├── primary-bench_boot_ssp-100-results.txt ├── primary-bench_boot_ssp-15-cpu.csv ├── primary-bench_boot_ssp-15-mem.csv ├── primary-bench_boot_ssp-15-results.txt ├── primary-bench_cpu-cpu.csv ├── primary-bench_cpu-mem.csv ├── primary-bench_cpu-results.txt ├── primary-bench_io-cpu.csv ├── primary-bench_io-mem.csv ├── primary-bench_io-results.txt ├── primary-bench_io_mod-cpu.csv ├── primary-bench_io_mod-mem.csv ├── primary-bench_io_mod-results.txt ├── primary-bench_mbw-cpu.csv ├── primary-bench_mbw-mem.csv ├── primary-bench_mbw-results.txt ├── primary-bench_mbw-results_DUMB.csv ├── primary-bench_mbw-results_MCBLOCK.csv ├── primary-bench_mbw-results_MEMCPY.csv ├── primary-bench_mysql-cpu.csv ├── primary-bench_mysql-mem.csv ├── primary-bench_mysql-results.csv ├── primary-bench_mysql-results.txt ├── primary-bench_mysql_index-cpu.csv ├── primary-bench_mysql_index-mem.csv ├── primary-bench_mysql_index-results.csv ├── primary-bench_mysql_index-results.txt ├── primary-serial-container-boot-mem.csv ├── primary-serial-container-boot-results.txt ├── primary-serial-container-boot.csv ├── primary_no_hypervisor-CPU_cpu-time.txt ├── primary_no_hypervisor-CPU_cpu.csv ├── primary_no_hypervisor-CPU_mem.csv ├── primary_no_hypervisor-bench_app_ab-cpu.csv ├── primary_no_hypervisor-bench_app_ab-mem.csv ├── primary_no_hypervisor-bench_app_ab-results.csv ├── primary_no_hypervisor-bench_app_ab-results.txt ├── primary_no_hypervisor-bench_app_blog-cpu.csv ├── primary_no_hypervisor-bench_app_blog-mem.csv ├── primary_no_hypervisor-bench_app_blog-results.txt ├── primary_no_hypervisor-bench_app_blog-results_reads.csv ├── primary_no_hypervisor-bench_app_blog-results_writes.csv ├── primary_no_hypervisor-bench_io-cpu.csv ├── primary_no_hypervisor-bench_io-mem.csv ├── primary_no_hypervisor-bench_io-results.txt ├── primary_no_hypervisor-bench_io_mod-cpu.csv ├── primary_no_hypervisor-bench_io_mod-mem.csv ├── primary_no_hypervisor-bench_io_mod-results.txt ├── primary_no_hypervisor-bench_mbw-cpu.csv ├── primary_no_hypervisor-bench_mbw-mem.csv ├── primary_no_hypervisor-bench_mbw-results.txt ├── primary_no_hypervisor-bench_mbw-results_DUMB.csv ├── primary_no_hypervisor-bench_mbw-results_MCBLOCK.csv ├── primary_no_hypervisor-bench_mbw-results_MEMCPY.csv ├── primary_no_hypervisor-bench_mysql-cpu.csv ├── primary_no_hypervisor-bench_mysql-mem.csv ├── primary_no_hypervisor-bench_mysql-results.csv ├── primary_no_hypervisor-bench_mysql-results.txt ├── primary_no_hypervisor-bench_mysql_index-cpu.csv ├── primary_no_hypervisor-bench_mysql_index-mem.csv ├── primary_no_hypervisor-bench_mysql_index-results.csv ├── primary_no_hypervisor-bench_mysql_index-results.txt ├── primary_no_hypervisor-serial-container-boot.csv ├── primary_no_hypervisor-ssp-100.csv └── primary_no_hypervisor-ssp-15.csv ├── supplemental ├── build-tag-push.sh ├── cpu_results.md ├── modified_file_io_results.md ├── monitor-scripts │ ├── mon-cpu.sh │ ├── mon-diskstat.sh │ └── mon-mem.sh └── unmodified_file_io_results.md ├── sysbench-mysql ├── Dockerfile ├── create_mysql_admin_user.sh └── run2.sh ├── sysbench ├── Dockerfile ├── cpu_prime.sh └── io.sh └── webbench └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | TODO 2 | checklist 3 | pipe-to-ssh 4 | -------------------------------------------------------------------------------- /abbench/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker image for running Apache 2 | # benchmark tests. 3 | 4 | FROM centos:centos6 5 | MAINTAINER Chris Collins 6 | 7 | RUN yum install -y httpd-tools 8 | 9 | ENTRYPOINT ["/usr/bin/ab"] 10 | CMD ["--help"] 11 | -------------------------------------------------------------------------------- /blogbench/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker image for testing file I/O 2 | # operations simulating a real-world 3 | # server, using Blogbench 4 | # 5 | # http://download.pureftpd.org/pub/blogbench/blogbench-1.1.tar.gz 6 | 7 | FROM centos:centos6 8 | MAINTAINER Chris Collins 9 | 10 | RUN yum install -y wget tar gcc 11 | RUN wget http://download.pureftpd.org/pub/blogbench/blogbench-1.1.tar.gz 12 | RUN tar xvzf blogbench-1.1.tar.gz 13 | RUN /blogbench-1.1/configure 14 | RUN make 15 | RUN make install 16 | 17 | ENTRYPOINT ["/usr/local/bin/blogbench"] 18 | CMD ["--help"] 19 | -------------------------------------------------------------------------------- /cloud-config.yml: -------------------------------------------------------------------------------- 1 | #cloud-config 2 | 3 | coreos: 4 | units: 5 | - name: format-disk.service 6 | command: start 7 | content: | 8 | [Unit] 9 | Description=Formats the primary drive 10 | [Service] 11 | Type=oneshot 12 | RemainAfterExit=yes 13 | ExecStart=/usr/sbin/wipefs -f /dev/sda 14 | ExecStart=/usr/sbin/mkfs.btrfs -f /dev/sda 15 | - name: var-lib-docker.mount 16 | command: start 17 | content: | 18 | [Unit] 19 | Description=Mount primary hd to /var/lib/docker 20 | Requires=format-disk.service 21 | Before=docker.service 22 | [Mount] 23 | What=/dev/sda 24 | Where=/var/lib/docker 25 | Type=btrfs 26 | 27 | write_files: 28 | - path: '/bench/bench_boot_ssp.sh' 29 | permissions: 0755 30 | content: | 31 | #!/bin/bash 32 | # 33 | # Version 1.0 (2014-06-30) 34 | # 35 | # This image was uploaded to our private repository 36 | # server for ease of testing. 37 | # It can be built from the Docker files at 38 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/webbench 39 | # 40 | # Starts N number of Docker containers running 41 | # Apache and a basic PHP "Hello World" file. 42 | # 43 | COUNT="$1" 44 | docker pull $REPO/bench-webbench >> /dev/null 45 | for i in $(seq 1 $COUNT) ; do docker run -d $REPO/bench-webbench ; done 46 | 47 | - path: '/bench/bench_reboot.sh' 48 | permissions: 0755 49 | content: | 50 | #!/bin/bash 51 | # 52 | # Version 1.2 (2014-08-28) 53 | # 54 | # This image was uploaded to our private repository 55 | # server for ease of testing. 56 | # It can be built from the Docker files at 57 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/webbench 58 | # 59 | # Starts 15 of Docker containers running 60 | # Apache and a basic PHP "Hello World" file. 61 | # 62 | COUNT="15" 63 | docker pull $REPO/webbench 64 | for n in {1..5} ; do 65 | for i in $(seq 1 $COUNT) ; do docker run -d $REPO/bench-webbench ; done 66 | sleep 5m 67 | docker ps -a | awk '/webbench/ {print $1}' |xargs docker stop 68 | docker ps -a | awk '/webbench/ {print $1}' |xargs docker rm 69 | sleep 5m 70 | done 71 | 72 | - path: '/bench/bench_cpu.sh' 73 | permissions: 0755 74 | content: | 75 | #!/bin/bash 76 | # 77 | # Version 1.0 (2014-07-07) 78 | # 79 | # This image was uploaded to our private repository 80 | # server for ease of testing. 81 | # It can be built from the Docker files at 82 | # https://github.com/DockerDemos/vm-docker-bench\sysbench 83 | # 84 | # Tests CPU calculations by running a prime number 85 | # calculation benchmark test in 100 Docker 86 | # containers, serially. 87 | docker pull $REPO/bench-sysbench >> /dev/null 88 | for i in {1..100} ; do docker run --rm -i -t $REPO/bench-sysbench \ 89 | sysbench --test=cpu --cpu-max-prime=20000 run |grep total\ time\: \ 90 | | awk '{print $3}'| sed 's/s//g' ; done 91 | 92 | - path: '/bench/bench_mysql.sh' 93 | permissions: 0755 94 | content: | 95 | #!/bin/bash 96 | # 97 | # Version 1.0 (2014-07-10) 98 | # 99 | # This image was uploaded to our private repository 100 | # server for ease of testing. 101 | # It can be built from the Docker files at 102 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/sysbench-mysql 103 | # 104 | # Tests MySQL performance with read, write and transaction 105 | # tests in 100 Docker containers, serially. 106 | docker pull $REPO/bench-sysbench-mysql >> /dev/null 107 | for i in {1..100} ; do docker run --rm -i -t $REPO/bench-sysbench-mysql 108 | done 109 | 110 | - path: '/bench/bench_mysql_index.sh' 111 | permissions: 0755 112 | content: | 113 | #!/bin/bash 114 | # 115 | # Version 1.0 (2014-07-10) 116 | # 117 | # This image was uploaded to our private repository 118 | # server for ease of testing. 119 | # It can be built from the Docker files at 120 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/iibench-mysql 121 | # 122 | # Tests MySQL Indexed Insertion performance 123 | # Test runs in 25 Docker containers, serially. 124 | docker pull $REPO/bench-iibench-mysql 125 | for i in {1..25} ; do docker run --rm -i -t $REPO/bench-iibench-mysql 126 | done 127 | 128 | - path: '/bench/bench_io.sh' 129 | permissions: 0755 130 | content: | 131 | #!/bin/bash 132 | # 133 | # Version 1.0 (2014-07-07) 134 | # 135 | # This image was uploaded to our private repository 136 | # server for ease of testing. 137 | # It can be built from the Docker files at 138 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/sysbench 139 | # 140 | # Tests disk IO with a combined *Random Read and Write* 141 | # test in 25 Docker containers, serially. 142 | # 143 | # Writes total transfer speed in Mb/s to stdout 144 | docker pull $REPO/bench-sysbench >> /dev/null 145 | for i in {1..25} ; do docker run --rm -i -t $REPO/bench-sysbench \ 146 | /bench/io.sh 5G \ 147 | |awk '/transferred/ {print $8}'| sed 's/[\(\)(Mb/sec)]//g' ; done 148 | 149 | - path: '/bench/bench_io_mod.sh' 150 | permissions: 0755 151 | content: | 152 | #!/bin/bash 153 | # 154 | # Version 1.0 (2014-07-07) 155 | # 156 | # This image was uploaded to our private repository 157 | # server for ease of testing. 158 | # It can be built from the Docker files at 159 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/sysbench 160 | # 161 | # Tests disk IO with a combined *Random Read and Write* 162 | # test in 25 Docker containers, serially, with a 163 | # 512MB memory limit enforced on the containers. 164 | docker pull $REPO/bench-sysbench >> /dev/null 165 | for i in {1..25} ; do docker run --rm -i -t -m="524288k" $REPO/bench-sysbench \ 166 | /bench/io.sh 5G \ 167 | |awk '/transferred/ {print $8}'| sed 's/[\(\)(Mb/sec)]//g' ; done 168 | 169 | - path: '/bench/bench_app_blog.sh' 170 | permissions: 0755 171 | content: | 172 | #!/bin/bash 173 | # 174 | # Version 1.0 (2014-07-11) 175 | # 176 | # This image was uploaded to our private repository 177 | # server for ease of testing. 178 | # It can be built from the Docker files at 179 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/blogbench 180 | # 181 | # Tests file I/O operations simulating a 182 | # real-world server. 183 | # Runs 25 docker containers, serially 184 | docker pull $REPO/bench-blogbench 185 | for i in {1..25} ; do docker run --rm -i -t $REPO/bench-blogbench \ 186 | -c 30 -i 20 -r 40 -W 5 -w 5 --directory=/srv ; done 187 | 188 | - path: '/bench/bench_app_ab.sh' 189 | permissions: 0755 190 | content: | 191 | #!/bin/bash 192 | # This image was uploaded to our private repository 193 | # server for ease of testing. 194 | # It can be built from the Docker files at 195 | # https://github.com/DockerDemos/vm-docker-bench/tree/master/webbench 196 | # 197 | # Starts N number of Docker containers running 198 | # Apache and a basic PHP "Hello World" file. 199 | # 200 | docker pull $REPO/bench-webbench >> /dev/null 201 | docker run --rm -d -p 80:80 $REPO/bench-webbench 202 | 203 | - path: '/bench/bench_clear_cache.sh' 204 | permissions: 0755 205 | content: | 206 | #!/bin/bash 207 | # 208 | # Shamelessly stolen from https://github.com/bodenr 209 | # 210 | # https://github.com/bodenr/cloudy-docker-kvm-bench/blob/master/bin/clrc.sh 211 | 212 | sync 213 | 214 | echo 3 > /proc/sys/vm/drop_caches 215 | 216 | - path: '/bench/mon-cpu.sh' 217 | permissions: 0775 218 | content: | 219 | #!/bin/sh 220 | # 221 | # Version 1.1 (2014-07-07) 222 | # 223 | # What: /proc/stat 224 | # Description: 225 | # user: normal processes executing in user mode 226 | # nice: niced processes executing in user mode 227 | # system: processes executing in kernel mode 228 | # idle: twiddling thumbs 229 | # iowait: waiting for I/O to complete 230 | # irq: servicing interrupts 231 | # softirq: servicing softirqs 232 | # steal: involuntary wait 233 | POLLING="$1" 234 | HOSTNAME="$(hostname)" 235 | DATE="$(date '+%Y%m%d')" 236 | 237 | echo 'x,user,nice,system,idle,iowait,irq,softirq,steal,guest,guest_nice' 238 | 239 | while true ; do 240 | echo "$(cat /proc/stat |head -n 1\ 241 | |sed -e 's/^[ \t]*//' | sed -e 's/[ ][ ]*/,/g')" 242 | sleep $POLLING 243 | done 244 | 245 | - path: '/bench/mon-mem.sh' 246 | permissions: 0775 247 | content: | 248 | #!/bin/sh 249 | # 250 | # Version 1.1 (2014-07-07) 251 | # 252 | # What: `free` 253 | # Description: 254 | # total: Full amount of memory allocated to the server 255 | # used: Total memory used, including buffers and cache 256 | # free: Memory available, and not being used for buffers or cache 257 | # shared: Memory used and available to multiple CPUs 258 | # buffers: Memory dedicated to cache disk block devices 259 | # cached: Memory dedicated to caching pages from file reads 260 | POLLING="$1" 261 | 262 | echo 'total,used,free,shared,buffers,cached' 263 | 264 | while true; do 265 | free -m |awk '/Mem/ { OFS = ","; print $2, $3, $4, $5, $6, $7}' 266 | sleep $POLLING 267 | done 268 | -------------------------------------------------------------------------------- /duke-docker-day-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/duke-docker-day-presentation.pdf -------------------------------------------------------------------------------- /duke-docker-day-presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/duke-docker-day-presentation.pptx -------------------------------------------------------------------------------- /iibench-mysql/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker container with Sysbench and MySQL Server 2 | # installed for running MySQL benchmark tests 3 | 4 | FROM tutum/mysql 5 | MAINTAINER Chris Collins 6 | 7 | ADD run2.sh /run2.sh 8 | ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh 9 | RUN apt-get update && apt-get install wget python python-mysqldb -y 10 | RUN wget https://bazaar.launchpad.net/~mdcallag/mysql-patch/mytools/download/head:/iibench.py-20090327210349-wgv0sum50kpukctz-1/iibench.py 11 | 12 | CMD ["/run2.sh"] 13 | -------------------------------------------------------------------------------- /iibench-mysql/create_mysql_admin_user.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | /usr/bin/mysqld_safe > /dev/null 2>&1 & 4 | 5 | RET=1 6 | while [[ RET -ne 0 ]]; do 7 | echo "=> Waiting for confirmation of MySQL service startup" 8 | sleep 5 9 | mysql -uroot -e "status" > /dev/null 2>&1 10 | RET=$? 11 | done 12 | 13 | if [ "$MYSQL_PASS" = "**Random**" ]; then 14 | unset MYSQL_PASS 15 | fi 16 | 17 | PASS=${MYSQL_PASS:-rootmysqlpassword} 18 | _word=$( [ ${MYSQL_PASS} ] && echo "preset" || echo "random" ) 19 | echo "=> Creating MySQL admin user with ${_word} password" 20 | 21 | mysql -uroot -e "CREATE DATABASE test;" 22 | mysql -uroot -e "CREATE USER 'admin'@'%' IDENTIFIED BY '$PASS'" 23 | mysql -uroot -e "GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION" 24 | 25 | 26 | echo "=> Done!" 27 | 28 | echo "========================================================================" 29 | echo "You can now connect to this MySQL Server using:" 30 | echo "" 31 | echo " mysql -uadmin -p$PASS -h -P" 32 | echo "" 33 | echo "Please remember to change the above password as soon as possible!" 34 | echo "MySQL user 'root' has no password but only allows local connections" 35 | echo "========================================================================" 36 | 37 | mysqladmin -uroot shutdown 38 | -------------------------------------------------------------------------------- /iibench-mysql/run2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | USER='admin' 3 | PASS='rootmysqlpassword' 4 | 5 | #sed -i 's|/var/run/mysqld/mysqld.sock|/tmp/mysql.sock|g' /etc/mysql/my.cnf 6 | #sed -i "s|'rows_per_report', 1000000|'rows_per_report', 100000|" iibench.py 7 | #sed -i "s|'setup', False|'setup', True|" iibench.py 8 | 9 | chmod +x iibench.py 10 | 11 | /run.sh & 12 | sleep 15 13 | 14 | echo 'rows seconds total_seconds cum_ips table_size last_ips queries cum_qps last_qps' 15 | python iibench.py --db_user=$USER --db_password=$PASS --max_rows=1000000 \ 16 | --setup --rows_per_report=100000 \ 17 | --db_socket=/var/run/mysqld/mysqld.sock 18 | -------------------------------------------------------------------------------- /images/CPU_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/CPU_comparison.png -------------------------------------------------------------------------------- /images/MySQL_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/MySQL_comparison.png -------------------------------------------------------------------------------- /images/MySQL_index_insertion_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/MySQL_index_insertion_comparison.png -------------------------------------------------------------------------------- /images/MySQL_index_query_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/MySQL_index_query_comparison.png -------------------------------------------------------------------------------- /images/ab_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/ab_comparison.png -------------------------------------------------------------------------------- /images/bench_io_mod-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/bench_io_mod-results.png -------------------------------------------------------------------------------- /images/blogbench-reads_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/blogbench-reads_comparison.png -------------------------------------------------------------------------------- /images/blogbench-writes_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/blogbench-writes_comparison.png -------------------------------------------------------------------------------- /images/control-CPU_cpu-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-CPU_cpu-time.png -------------------------------------------------------------------------------- /images/control-CPU_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-CPU_cpu.png -------------------------------------------------------------------------------- /images/control-CPU_mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-CPU_mem.png -------------------------------------------------------------------------------- /images/control-bench_io_mod-cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-bench_io_mod-cpu.png -------------------------------------------------------------------------------- /images/control-bench_io_mod-mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-bench_io_mod-mem.png -------------------------------------------------------------------------------- /images/control-serial-container-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-serial-container-boot.png -------------------------------------------------------------------------------- /images/control-ssp-100-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-100-boot_detail.png -------------------------------------------------------------------------------- /images/control-ssp-100-shutdown_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-100-shutdown_detail.png -------------------------------------------------------------------------------- /images/control-ssp-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-100.png -------------------------------------------------------------------------------- /images/control-ssp-15-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-15-boot_detail.png -------------------------------------------------------------------------------- /images/control-ssp-15-shutdown_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-15-shutdown_detail.png -------------------------------------------------------------------------------- /images/control-ssp-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/control-ssp-15.png -------------------------------------------------------------------------------- /images/mbw-DUMB_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/mbw-DUMB_comparison.png -------------------------------------------------------------------------------- /images/mbw-MCBLOCK_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/mbw-MCBLOCK_comparison.png -------------------------------------------------------------------------------- /images/mbw-MEMCPY_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/mbw-MEMCPY_comparison.png -------------------------------------------------------------------------------- /images/primary-CPU_cpu-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary-CPU_cpu-time.png -------------------------------------------------------------------------------- /images/primary-CPU_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary-CPU_cpu.png -------------------------------------------------------------------------------- /images/primary-serial-container-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary-serial-container-boot.png -------------------------------------------------------------------------------- /images/primary-ssp-100-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary-ssp-100-boot_detail.png -------------------------------------------------------------------------------- /images/primary-ssp-15-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary-ssp-15-boot_detail.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-CPU_cpu-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-CPU_cpu-time.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-CPU_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-CPU_cpu.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-bench_io_mod-cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-bench_io_mod-cpu.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-bench_io_mod-mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-bench_io_mod-mem.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-serial-container-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-serial-container-boot.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-100-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-100-boot_detail.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-100-shutdown_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-100-shutdown_detail.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-100.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-15-boot_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-15-boot_detail.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-15-shutdown_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-15-shutdown_detail.png -------------------------------------------------------------------------------- /images/primary_no_hypervisor-ssp-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/primary_no_hypervisor-ssp-15.png -------------------------------------------------------------------------------- /images/unmodified_file_io_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DockerDemos/vm-docker-bench/c3c729904c9b4f55f3ac882df8ece6251951546c/images/unmodified_file_io_comparison.png -------------------------------------------------------------------------------- /mbwbench/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker container with mbw installed 2 | # for running memory benchmark tests 3 | 4 | FROM centos:centos6 5 | MAINTAINER Chris Collins 6 | 7 | RUN yum install -y git gcc bc 8 | RUN git clone https://github.com/raas/mbw.git /mbw 9 | RUN cd /mbw/ && make 10 | RUN cp /mbw/mbw /usr/bin/mbw 11 | ADD run.sh /run.sh 12 | 13 | CMD ["/run.sh"] 14 | -------------------------------------------------------------------------------- /mbwbench/run.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | # This will run an mbw instance for each core on the machine 3 | # 4 | # This script from: http://jamesslocum.com/post/64209577678 5 | 6 | NUMCORES=$(grep "processor" /proc/cpuinfo | wc -l) 7 | TMP="/tmp/mbw_result_tmp" 8 | 9 | echo "Starting test on $NUMCORES cores" 10 | for (( i=0; i<$NUMCORES; i++ )); do 11 | mbw -b 4096 32 -n 100 > ${TMP}_${i} & 12 | done 13 | 14 | echo "Waiting for tests to finish" 15 | wait 16 | 17 | MEMCPY_RESULTS=() 18 | DUMB_RESULTS=() 19 | MCBLOCK_RESULTS=() 20 | 21 | for (( i=0; i<$NUMCORES; i++ )); do 22 | MEMCPY_RESULTS[$i]=`grep -E "AVG.*MEMCPY" ${TMP}_${i} | \ 23 | tr "[:blank:]" " " | cut -d " " -f 9` 24 | 25 | DUMB_RESULTS[$i]=`grep -E "AVG.*DUMB" ${TMP}_${i} | \ 26 | tr "[:blank:]" " " | cut -d " " -f 9` 27 | 28 | MCBLOCK_RESULTS[$i]=`grep -E "AVG.*MCBLOCK" ${TMP}_${i} | \ 29 | tr "[:blank:]" " " | cut -d " " -f 9` 30 | done 31 | 32 | MEMCPY_SUM=0 33 | DUMB_SUM=0 34 | MCBLOCK_SUM=0 35 | 36 | # Need to use `bc` because of floating point numbers 37 | for (( i=0; i<$NUMCORES; i++ )); do 38 | MEMCPY_SUM=`echo "$MEMCPY_SUM + ${MEMCPY_RESULTS[$i]}" | bc -q` 39 | DUMB_SUM=`echo "$DUMB_SUM + ${DUMB_RESULTS[$i]}" | bc -q` 40 | MCBLOCK_SUM=`echo "$MCBLOCK_SUM + ${MCBLOCK_RESULTS[$i]}" | bc -q` 41 | done 42 | 43 | echo "MEMCPY Total AVG: $MEMCPY_SUM MiB/s" 44 | echo "DUMB Total AVG: $DUMB_SUM MiB/s" 45 | echo "MCBLOCK Total AVG: $MCBLOCK_SUM MiB/s" 46 | -------------------------------------------------------------------------------- /raw-results/control-CPU_cpu-time.txt: -------------------------------------------------------------------------------- 1 | 26.0617 2 | 26.0665 3 | 26.0721 4 | 26.0726 5 | 26.0887 6 | 26.0762 7 | 26.1730 8 | 26.0343 9 | 26.1145 10 | 26.1129 11 | 26.1091 12 | 26.1391 13 | 26.0780 14 | 26.1871 15 | 26.1292 16 | 26.0925 17 | 26.0889 18 | 26.1117 19 | 26.0883 20 | 26.1440 21 | 26.2177 22 | 26.1574 23 | 26.1218 24 | 26.0965 25 | 26.0497 26 | 26.0632 27 | 26.0827 28 | 26.0426 29 | 26.0629 30 | 26.0697 31 | 26.1105 32 | 26.1128 33 | 26.0893 34 | 26.1466 35 | 26.1186 36 | 26.1372 37 | 26.0830 38 | 26.1624 39 | 26.1686 40 | 26.1560 41 | 26.1064 42 | 26.1251 43 | 26.1074 44 | 26.0890 45 | 26.1066 46 | 26.0963 47 | 26.0890 48 | 26.1644 49 | 26.0983 50 | 26.1262 51 | 26.1225 52 | 26.1203 53 | 26.1318 54 | 26.1337 55 | 26.1273 56 | 26.1132 57 | 26.0867 58 | 26.0864 59 | 26.1365 60 | 26.0817 61 | 26.1478 62 | 26.1396 63 | 26.1646 64 | 26.1057 65 | 26.0989 66 | 26.1014 67 | 26.0926 68 | 26.0988 69 | 26.0951 70 | 26.1198 71 | 26.1399 72 | 26.1218 73 | 26.1120 74 | 26.1195 75 | 26.1272 76 | 26.0933 77 | 26.1389 78 | 26.0909 79 | 26.1146 80 | 26.1157 81 | 26.1210 82 | 26.1404 83 | 26.0889 84 | 26.1453 85 | 26.0917 86 | 26.1396 87 | 26.1089 88 | 26.1391 89 | 26.1786 90 | 26.1904 91 | 26.1369 92 | 26.1024 93 | 26.1501 94 | 26.1058 95 | 26.3691 96 | 26.1147 97 | 26.1713 98 | 26.1712 99 | 26.2118 100 | 26.1584 101 | -------------------------------------------------------------------------------- /raw-results/control-bench_app_ab-results.csv: -------------------------------------------------------------------------------- 1 | 6521.46 2 | 6267.52 3 | 6276.71 4 | 6316.81 5 | 6408.33 6 | 6812.67 7 | 6214.88 8 | 6445.19 9 | 6235.03 10 | 6522.72 11 | 6549.47 12 | 6356.90 13 | 6315.21 14 | 6561.33 15 | 6371.23 16 | -------------------------------------------------------------------------------- /raw-results/control-bench_app_blog-results_reads.csv: -------------------------------------------------------------------------------- 1 | 341893 2 | 294784 3 | 321333 4 | 301878 5 | 300534 6 | 329427 7 | 293676 8 | 327884 9 | 327361 10 | 308440 11 | 330164 12 | 312119 13 | 320165 14 | 309379 15 | 330801 16 | 332540 17 | 320760 18 | 291259 19 | 276911 20 | 297935 21 | 274315 22 | 313262 23 | 331162 24 | 298863 25 | -------------------------------------------------------------------------------- /raw-results/control-bench_app_blog-results_writes.csv: -------------------------------------------------------------------------------- 1 | 640 2 | 581 3 | 604 4 | 542 5 | 529 6 | 580 7 | 565 8 | 599 9 | 543 10 | 584 11 | 630 12 | 602 13 | 581 14 | 573 15 | 570 16 | 584 17 | 561 18 | 509 19 | 516 20 | 483 21 | 486 22 | 513 23 | 591 24 | 556 25 | -------------------------------------------------------------------------------- /raw-results/control-bench_io-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 7989,280,7709,0,18,174 3 | 7989,281,7707,0,18,174 4 | 7989,282,7707,0,18,174 5 | 7989,283,7706,0,18,174 6 | 7989,282,7707,0,18,174 7 | 7989,273,7715,0,10,175 8 | 7989,2274,5714,0,10,2063 9 | 7989,5848,2141,0,10,5628 10 | 7989,6373,1615,0,10,6148 11 | 7989,6774,1215,0,11,6546 12 | 7989,6777,1212,0,11,6546 13 | 7989,6777,1211,0,11,6546 14 | 7989,6780,1209,0,11,6546 15 | 7989,6781,1208,0,11,6546 16 | 7989,6781,1208,0,11,6546 17 | 7989,6784,1205,0,11,6546 18 | 7989,6784,1205,0,11,6546 19 | 7989,6786,1202,0,11,6546 20 | 7989,6786,1203,0,11,6546 21 | 7989,6788,1201,0,11,6547 22 | 7989,6790,1199,0,11,6547 23 | 7989,6791,1198,0,11,6547 24 | 7989,6790,1198,0,11,6547 25 | 7989,6793,1196,0,11,6547 26 | 7989,6792,1196,0,11,6547 27 | 7989,6797,1192,0,11,6547 28 | 7989,6796,1192,0,11,6547 29 | 7989,1790,6199,0,11,1587 30 | 7989,5558,2431,0,11,5347 31 | 7989,6762,1227,0,11,6547 32 | 7989,6762,1227,0,11,6547 33 | 7989,6767,1222,0,11,6547 34 | 7989,6767,1222,0,11,6547 35 | 7989,6767,1221,0,11,6547 36 | 7989,6770,1219,0,11,6547 37 | 7989,6770,1219,0,11,6547 38 | 7989,6773,1216,0,11,6547 39 | 7989,6772,1216,0,11,6547 40 | 7989,6774,1214,0,11,6547 41 | 7989,6775,1214,0,11,6547 42 | 7989,6777,1212,0,11,6547 43 | 7989,6777,1211,0,11,6547 44 | 7989,6780,1208,0,11,6547 45 | 7989,6780,1208,0,11,6547 46 | 7989,6781,1208,0,11,6547 47 | 7989,6781,1208,0,11,6547 48 | 7989,6782,1206,0,11,6547 49 | 7989,6782,1206,0,11,6547 50 | 7989,6784,1204,0,11,6547 51 | 7989,3953,4035,0,11,3747 52 | 7989,6762,1227,0,11,6547 53 | 7989,6763,1226,0,11,6547 54 | 7989,6767,1222,0,11,6547 55 | 7989,6768,1221,0,11,6547 56 | 7989,6768,1221,0,11,6547 57 | 7989,6768,1221,0,11,6547 58 | 7989,6768,1220,0,11,6547 59 | 7989,6771,1217,0,11,6547 60 | 7989,6771,1217,0,11,6547 61 | 7989,6774,1215,0,11,6547 62 | 7989,6774,1215,0,11,6547 63 | 7989,6775,1214,0,11,6547 64 | 7989,6774,1214,0,11,6547 65 | 7989,6777,1212,0,11,6547 66 | 7989,6777,1212,0,11,6547 67 | 7989,6779,1210,0,11,6547 68 | 7989,6779,1210,0,11,6547 69 | 7989,6781,1208,0,11,6547 70 | 7989,6781,1208,0,11,6547 71 | 7989,6776,1212,0,11,6547 72 | 7989,2782,5207,0,11,2587 73 | 7989,6711,1277,0,11,6507 74 | 7989,6753,1236,0,11,6547 75 | 7989,6757,1231,0,11,6547 76 | 7989,6758,1231,0,11,6547 77 | 7989,6760,1229,0,11,6547 78 | 7989,6761,1228,0,11,6547 79 | 7989,6763,1226,0,11,6547 80 | 7989,6762,1226,0,11,6547 81 | 7989,6765,1224,0,11,6547 82 | 7989,6765,1223,0,11,6547 83 | 7989,6766,1223,0,11,6547 84 | 7989,6768,1221,0,11,6547 85 | 7989,6768,1221,0,11,6547 86 | 7989,6770,1218,0,11,6547 87 | 7989,6770,1218,0,11,6547 88 | 7989,6772,1217,0,11,6547 89 | 7989,6772,1217,0,11,6547 90 | 7989,6774,1214,0,11,6547 91 | 7989,6774,1215,0,11,6547 92 | 7989,6776,1213,0,11,6547 93 | 7989,6776,1213,0,11,6547 94 | 7989,5347,2642,0,11,5147 95 | 7989,6754,1235,0,11,6547 96 | 7989,6756,1233,0,11,6547 97 | 7989,6759,1230,0,11,6547 98 | 7989,6759,1229,0,11,6547 99 | 7989,6761,1228,0,11,6547 100 | 7989,6761,1227,0,11,6547 101 | 7989,6763,1225,0,11,6547 102 | 7989,6764,1225,0,11,6547 103 | 7989,6764,1225,0,11,6547 104 | 7989,6766,1223,0,11,6547 105 | 7989,6766,1222,0,11,6547 106 | 7989,6768,1220,0,11,6547 107 | 7989,6768,1220,0,11,6547 108 | 7989,6771,1217,0,11,6547 109 | 7989,6771,1218,0,11,6547 110 | 7989,6773,1216,0,11,6547 111 | 7989,6772,1216,0,11,6547 112 | 7989,6774,1214,0,11,6547 113 | 7989,6774,1215,0,11,6547 114 | 7989,6776,1212,0,11,6547 115 | 7989,3499,4489,0,11,3304 116 | 7989,6751,1238,0,11,6548 117 | 7989,6753,1236,0,11,6548 118 | 7989,6756,1233,0,11,6548 119 | 7989,6756,1233,0,11,6548 120 | 7989,6758,1231,0,11,6548 121 | 7989,6758,1231,0,11,6548 122 | 7989,6760,1228,0,11,6548 123 | 7989,6761,1228,0,11,6548 124 | 7989,6763,1226,0,11,6548 125 | 7989,6763,1226,0,11,6548 126 | 7989,6766,1223,0,11,6548 127 | 7989,6765,1224,0,11,6548 128 | 7989,6767,1221,0,11,6548 129 | 7989,6767,1221,0,11,6548 130 | 7989,6769,1219,0,11,6548 131 | 7989,6770,1219,0,11,6548 132 | 7989,6771,1218,0,11,6548 133 | 7989,6771,1218,0,11,6548 134 | 7989,6773,1216,0,11,6548 135 | 7989,6773,1216,0,11,6548 136 | 7989,1738,6251,0,11,1548 137 | 7989,5268,2721,0,11,5070 138 | 7989,6751,1238,0,11,6548 139 | 7989,6755,1233,0,11,6548 140 | 7989,6758,1231,0,11,6548 141 | 7989,6758,1231,0,11,6548 142 | 7989,6760,1229,0,11,6548 143 | 7989,6760,1228,0,11,6548 144 | 7989,6763,1226,0,11,6548 145 | 7989,6763,1226,0,11,6548 146 | 7989,6765,1224,0,11,6548 147 | 7989,6765,1224,0,11,6548 148 | 7989,6765,1223,0,11,6548 149 | 7989,6768,1221,0,11,6548 150 | 7989,6769,1220,0,11,6548 151 | 7989,6769,1220,0,11,6548 152 | 7989,6771,1218,0,11,6548 153 | 7989,6771,1218,0,11,6548 154 | 7989,6772,1216,0,11,6548 155 | 7989,6773,1216,0,11,6548 156 | 7989,6774,1215,0,11,6548 157 | 7989,6775,1214,0,11,6548 158 | 7989,3102,4887,0,11,2908 159 | 7989,6750,1238,0,11,6548 160 | 7989,6754,1234,0,11,6548 161 | 7989,6757,1232,0,11,6548 162 | 7989,6757,1231,0,11,6548 163 | 7989,6760,1229,0,11,6548 164 | 7989,6759,1229,0,11,6548 165 | 7989,6762,1226,0,11,6548 166 | 7989,6762,1226,0,11,6548 167 | 7989,6765,1224,0,11,6548 168 | 7989,6765,1224,0,11,6548 169 | 7989,6767,1222,0,11,6548 170 | 7989,6767,1222,0,11,6548 171 | 7989,6769,1220,0,11,6548 172 | 7989,6769,1220,0,11,6548 173 | 7989,6770,1218,0,11,6548 174 | 7989,6770,1219,0,11,6548 175 | 7989,6772,1217,0,11,6548 176 | 7989,6772,1216,0,11,6548 177 | 7989,6774,1214,0,11,6548 178 | 7989,6774,1215,0,11,6548 179 | 7989,1660,6329,0,11,1468 180 | 7989,4866,3123,0,11,4668 181 | 7989,6751,1237,0,11,6548 182 | 7989,6754,1234,0,11,6548 183 | 7989,6754,1234,0,11,6548 184 | 7989,6756,1232,0,11,6548 185 | 7989,6757,1232,0,11,6548 186 | 7989,6759,1229,0,11,6548 187 | 7989,6760,1229,0,11,6548 188 | 7989,6762,1226,0,11,6548 189 | 7989,6762,1226,0,11,6548 190 | 7989,6764,1224,0,11,6548 191 | 7989,6764,1224,0,11,6548 192 | 7989,6767,1221,0,11,6548 193 | 7989,6766,1223,0,11,6548 194 | 7989,6769,1220,0,11,6548 195 | 7989,6769,1220,0,11,6548 196 | 7989,6771,1218,0,11,6548 197 | 7989,6771,1218,0,11,6548 198 | 7989,6773,1216,0,11,6548 199 | 7989,6773,1216,0,11,6548 200 | 7989,6774,1215,0,11,6548 201 | 7989,3462,4526,0,11,3267 202 | 7989,6753,1236,0,11,6548 203 | 7989,6755,1234,0,11,6548 204 | 7989,6758,1231,0,11,6548 205 | 7989,6758,1231,0,11,6548 206 | 7989,6761,1228,0,11,6548 207 | 7989,6761,1228,0,11,6548 208 | 7989,6763,1225,0,11,6548 209 | 7989,6763,1225,0,11,6548 210 | 7989,6766,1223,0,11,6548 211 | 7989,6766,1223,0,11,6548 212 | 7989,6768,1221,0,11,6548 213 | 7989,6768,1220,0,11,6548 214 | 7989,6768,1220,0,11,6548 215 | 7989,6771,1218,0,11,6548 216 | 7989,6770,1218,0,11,6548 217 | 7989,6774,1215,0,11,6548 218 | 7989,6773,1215,0,11,6548 219 | 7989,6775,1214,0,11,6548 220 | 7989,6776,1212,0,11,6548 221 | 7989,6778,1210,0,11,6548 222 | 7989,1863,6126,0,11,1668 223 | 7989,6425,1564,0,11,6217 224 | 7989,6756,1233,0,11,6547 225 | 7989,6757,1232,0,11,6548 226 | 7989,6758,1231,0,11,6548 227 | 7989,6762,1227,0,11,6548 228 | 7989,6761,1228,0,11,6548 229 | 7989,6762,1227,0,11,6548 230 | 7989,6762,1227,0,11,6548 231 | 7989,6764,1225,0,11,6548 232 | 7989,6764,1224,0,11,6548 233 | 7989,6767,1222,0,11,6548 234 | 7989,6766,1222,0,11,6548 235 | 7989,6769,1220,0,11,6548 236 | 7989,6769,1220,0,11,6548 237 | 7989,6771,1218,0,11,6548 238 | 7989,6771,1218,0,11,6548 239 | 7989,6772,1216,0,11,6548 240 | 7989,6773,1216,0,11,6548 241 | 7989,6774,1215,0,11,6548 242 | 7989,6774,1214,0,11,6548 243 | 7989,6776,1213,0,11,6548 244 | 7989,4393,3596,0,11,4196 245 | 7989,6751,1238,0,11,6548 246 | 7989,6755,1234,0,11,6548 247 | 7989,6758,1231,0,11,6548 248 | 7989,6758,1230,0,11,6548 249 | 7989,6758,1230,0,11,6548 250 | 7989,6761,1228,0,11,6548 251 | 7989,6761,1228,0,11,6548 252 | 7989,6763,1225,0,11,6548 253 | 7989,6764,1225,0,11,6548 254 | 7989,6766,1222,0,11,6548 255 | 7989,6767,1222,0,11,6548 256 | 7989,6769,1220,0,11,6548 257 | 7989,6769,1220,0,11,6548 258 | 7989,6771,1218,0,11,6548 259 | 7989,6771,1217,0,11,6548 260 | 7989,6773,1216,0,11,6548 261 | 7989,6773,1215,0,11,6548 262 | 7989,6775,1214,0,11,6548 263 | 7989,6775,1214,0,11,6548 264 | 7989,6775,1214,0,11,6548 265 | 7989,2781,5207,0,11,2587 266 | 7989,6312,1677,0,11,6108 267 | 7989,6754,1235,0,11,6548 268 | 7989,6757,1232,0,11,6548 269 | 7989,6757,1232,0,11,6548 270 | 7989,6759,1230,0,11,6548 271 | 7989,6759,1230,0,11,6548 272 | 7989,6762,1227,0,11,6548 273 | 7989,6762,1227,0,11,6548 274 | 7989,6765,1224,0,11,6548 275 | 7989,6765,1224,0,11,6548 276 | 7989,6767,1221,0,11,6548 277 | 7989,6767,1222,0,11,6548 278 | 7989,6770,1219,0,11,6548 279 | 7989,6769,1219,0,11,6548 280 | 7989,6772,1217,0,11,6548 281 | 7989,6771,1218,0,11,6548 282 | 7989,6773,1215,0,11,6548 283 | 7989,6773,1216,0,11,6548 284 | 7989,6774,1214,0,11,6548 285 | 7989,6774,1214,0,11,6548 286 | 7989,6776,1212,0,11,6548 287 | 7989,3478,4510,0,11,3281 288 | 7989,6753,1236,0,11,6548 289 | 7989,6757,1232,0,11,6548 290 | 7989,6760,1229,0,11,6548 291 | 7989,6760,1229,0,11,6548 292 | 7989,6762,1226,0,11,6548 293 | 7989,6763,1226,0,11,6548 294 | 7989,6763,1225,0,11,6548 295 | 7989,6766,1222,0,11,6548 296 | 7989,6766,1223,0,11,6548 297 | 7989,6769,1220,0,11,6548 298 | 7989,6769,1220,0,11,6548 299 | 7989,6771,1218,0,11,6548 300 | 7989,6771,1218,0,11,6548 301 | 7989,6773,1216,0,11,6548 302 | 7989,6773,1216,0,11,6548 303 | 7989,6775,1214,0,11,6548 304 | 7989,6775,1214,0,11,6548 305 | 7989,6777,1212,0,11,6548 306 | 7989,6777,1212,0,11,6548 307 | 7989,6777,1212,0,11,6547 308 | 7989,2421,5568,0,11,2227 309 | 7989,6392,1597,0,11,6187 310 | 7989,6756,1233,0,11,6548 311 | 7989,6757,1232,0,11,6548 312 | 7989,6757,1232,0,11,6548 313 | 7989,6759,1229,0,11,6548 314 | 7989,6760,1229,0,11,6548 315 | 7989,6762,1226,0,11,6548 316 | 7989,6763,1226,0,11,6548 317 | 7989,6765,1223,0,11,6548 318 | 7989,6766,1223,0,11,6548 319 | 7989,6767,1221,0,11,6548 320 | 7989,6768,1221,0,11,6548 321 | 7989,6770,1218,0,11,6548 322 | 7989,6770,1218,0,11,6548 323 | 7989,6772,1216,0,11,6548 324 | 7989,6772,1216,0,11,6548 325 | 7989,6773,1216,0,11,6548 326 | 7989,6774,1214,0,11,6548 327 | 7989,6774,1215,0,11,6548 328 | 7989,6776,1213,0,11,6548 329 | 7989,6776,1213,0,11,6548 330 | 7989,4826,3162,0,11,4627 331 | 7989,6754,1235,0,11,6548 332 | 7989,6756,1233,0,11,6548 333 | 7989,6759,1230,0,11,6548 334 | 7989,6759,1230,0,11,6548 335 | 7989,6761,1228,0,11,6548 336 | 7989,6762,1226,0,11,6548 337 | 7989,6762,1227,0,11,6548 338 | 7989,6764,1224,0,11,6548 339 | 7989,6764,1224,0,11,6548 340 | 7989,6766,1222,0,11,6548 341 | 7989,6766,1223,0,11,6548 342 | 7989,6768,1220,0,11,6548 343 | 7989,6768,1221,0,11,6548 344 | 7989,6771,1218,0,11,6548 345 | 7989,6770,1218,0,11,6548 346 | 7989,6773,1216,0,11,6548 347 | 7989,6772,1217,0,11,6548 348 | 7989,6775,1214,0,11,6548 349 | 7989,6774,1214,0,11,6548 350 | 7989,6776,1212,0,11,6548 351 | 7989,2862,5127,0,11,2668 352 | 7989,6752,1237,0,11,6548 353 | 7989,6753,1236,0,11,6548 354 | 7989,6756,1232,0,11,6548 355 | 7989,6756,1232,0,11,6548 356 | 7989,6759,1230,0,11,6548 357 | 7989,6759,1230,0,11,6548 358 | 7989,6762,1227,0,11,6548 359 | 7989,6762,1227,0,11,6548 360 | 7989,6764,1225,0,11,6548 361 | 7989,6763,1226,0,11,6548 362 | 7989,6765,1223,0,11,6548 363 | 7989,6766,1223,0,11,6548 364 | 7989,6768,1221,0,11,6548 365 | 7989,6767,1222,0,11,6548 366 | 7989,6768,1220,0,11,6548 367 | 7989,6769,1220,0,11,6548 368 | 7989,6771,1218,0,11,6548 369 | 7989,6771,1217,0,11,6548 370 | 7989,6773,1216,0,11,6548 371 | 7989,6772,1216,0,11,6548 372 | 7989,1618,6371,0,11,1428 373 | 7989,4839,3150,0,11,4642 374 | 7989,6750,1238,0,11,6548 375 | 7989,6752,1236,0,11,6548 376 | 7989,6753,1236,0,11,6548 377 | 7989,6755,1233,0,11,6548 378 | 7989,6756,1233,0,11,6548 379 | 7989,6758,1231,0,11,6548 380 | 7989,6760,1229,0,11,6548 381 | 7989,6759,1230,0,11,6548 382 | 7989,6761,1227,0,11,6548 383 | 7989,6762,1227,0,11,6548 384 | 7989,6764,1225,0,11,6548 385 | 7989,6763,1225,0,11,6548 386 | 7989,6765,1223,0,11,6548 387 | 7989,6765,1224,0,11,6548 388 | 7989,6767,1222,0,11,6548 389 | 7989,6767,1222,0,11,6548 390 | 7989,6768,1221,0,11,6548 391 | 7989,6769,1220,0,11,6548 392 | 7989,6770,1218,0,11,6548 393 | 7989,6769,1219,0,11,6548 394 | 7989,2703,5286,0,11,2507 395 | 7989,5702,2287,0,11,5500 396 | 7989,6753,1235,0,11,6548 397 | 7989,6756,1233,0,11,6548 398 | 7989,6756,1233,0,11,6548 399 | 7989,6758,1230,0,11,6548 400 | 7989,6758,1231,0,11,6548 401 | 7989,6761,1228,0,11,6548 402 | 7989,6760,1228,0,11,6548 403 | 7989,6762,1226,0,11,6548 404 | 7989,6762,1226,0,11,6548 405 | 7989,6765,1224,0,11,6548 406 | 7989,6765,1224,0,11,6548 407 | 7989,6767,1221,0,11,6548 408 | 7989,6767,1222,0,11,6548 409 | 7989,6769,1220,0,11,6548 410 | 7989,6768,1220,0,11,6548 411 | 7989,6770,1218,0,11,6548 412 | 7989,6770,1219,0,11,6548 413 | 7989,6772,1216,0,11,6548 414 | 7989,6772,1217,0,11,6548 415 | 7989,6774,1215,0,11,6548 416 | 7989,2945,5044,0,11,2747 417 | 7989,6755,1234,0,11,6548 418 | 7989,6757,1232,0,11,6548 419 | 7989,6761,1228,0,11,6548 420 | 7989,6760,1228,0,11,6548 421 | 7989,6762,1226,0,11,6548 422 | 7989,6762,1226,0,11,6548 423 | 7989,6765,1224,0,11,6548 424 | 7989,6764,1224,0,11,6548 425 | 7989,6766,1222,0,11,6548 426 | 7989,6767,1222,0,11,6548 427 | 7989,6768,1220,0,11,6548 428 | 7989,6768,1221,0,11,6548 429 | 7989,6771,1218,0,11,6548 430 | 7989,6770,1218,0,11,6548 431 | 7989,6772,1216,0,11,6548 432 | 7989,6772,1217,0,11,6548 433 | 7989,6773,1215,0,11,6548 434 | 7989,6773,1215,0,11,6548 435 | 7989,6775,1213,0,11,6548 436 | 7989,6775,1214,0,11,6548 437 | 7989,1613,6375,0,11,1421 438 | 7989,5147,2842,0,11,4947 439 | 7989,6754,1235,0,11,6548 440 | 7989,6756,1233,0,11,6548 441 | 7989,6759,1230,0,11,6548 442 | 7989,6761,1228,0,11,6548 443 | 7989,6762,1226,0,11,6548 444 | 7989,6763,1226,0,11,6548 445 | 7989,6765,1224,0,11,6548 446 | 7989,6765,1223,0,11,6548 447 | 7989,6766,1223,0,11,6548 448 | 7989,6766,1223,0,11,6548 449 | 7989,6767,1222,0,11,6548 450 | 7989,6767,1222,0,11,6548 451 | 7989,6769,1220,0,11,6548 452 | 7989,6768,1220,0,11,6548 453 | 7989,6770,1219,0,11,6548 454 | 7989,6770,1219,0,11,6548 455 | 7989,6771,1217,0,11,6548 456 | 7989,6771,1218,0,11,6548 457 | 7989,6773,1216,0,11,6548 458 | 7989,6772,1216,0,11,6548 459 | 7989,3583,4406,0,11,3387 460 | 7989,6752,1237,0,11,6548 461 | 7989,6753,1236,0,11,6548 462 | 7989,6755,1234,0,11,6548 463 | 7989,6756,1232,0,11,6548 464 | 7989,6758,1230,0,11,6548 465 | 7989,6759,1230,0,11,6548 466 | 7989,6760,1228,0,11,6548 467 | 7989,6760,1229,0,11,6548 468 | 7989,6762,1227,0,11,6548 469 | 7989,6762,1227,0,11,6548 470 | 7989,6764,1225,0,11,6548 471 | 7989,6763,1225,0,11,6548 472 | 7989,6766,1223,0,11,6548 473 | 7989,6765,1223,0,11,6548 474 | 7989,6767,1221,0,11,6548 475 | 7989,6767,1221,0,11,6548 476 | 7989,6769,1219,0,11,6548 477 | 7989,6769,1220,0,11,6548 478 | 7989,6771,1218,0,11,6548 479 | 7989,6770,1219,0,11,6548 480 | 7989,1939,6050,0,11,1748 481 | 7989,5386,2603,0,11,5188 482 | 7989,6750,1238,0,11,6548 483 | 7989,6754,1235,0,11,6548 484 | 7989,6754,1235,0,11,6548 485 | 7989,6756,1233,0,11,6548 486 | 7989,6756,1232,0,11,6548 487 | 7989,6758,1230,0,11,6548 488 | 7989,6758,1230,0,11,6548 489 | 7989,6760,1229,0,11,6548 490 | 7989,6760,1229,0,11,6548 491 | 7989,6762,1227,0,11,6548 492 | 7989,6761,1227,0,11,6548 493 | 7989,6763,1226,0,11,6548 494 | 7989,6763,1225,0,11,6548 495 | 7989,6765,1224,0,11,6548 496 | 7989,6765,1224,0,11,6548 497 | 7989,6766,1223,0,11,6548 498 | 7989,6766,1222,0,11,6548 499 | 7989,6768,1221,0,11,6548 500 | 7989,6767,1221,0,11,6548 501 | 7989,6769,1220,0,11,6548 502 | 7989,3501,4487,0,11,3308 503 | 7989,6749,1240,0,11,6548 504 | 7989,6753,1236,0,11,6548 505 | 7989,6755,1234,0,11,6548 506 | 7989,6755,1234,0,11,6548 507 | 7989,6757,1232,0,11,6548 508 | 7989,6757,1232,0,11,6548 509 | 7989,6759,1230,0,11,6548 510 | 7989,6758,1231,0,11,6548 511 | 7989,6760,1229,0,11,6548 512 | 7989,6760,1229,0,11,6548 513 | 7989,6762,1226,0,11,6548 514 | 7989,6762,1227,0,11,6548 515 | 7989,6764,1225,0,11,6548 516 | 7989,6764,1225,0,11,6548 517 | 7989,6765,1224,0,11,6548 518 | 7989,6765,1223,0,11,6548 519 | 7989,6767,1222,0,11,6548 520 | 7989,6767,1221,0,11,6548 521 | 7989,6768,1220,0,11,6548 522 | 7989,6768,1221,0,11,6548 523 | 7989,1901,6088,0,11,1708 524 | 7989,6031,1958,0,11,5828 525 | 7989,6754,1234,0,11,6548 526 | 7989,6756,1233,0,11,6548 527 | 7989,6760,1229,0,11,6548 528 | 7989,6760,1229,0,11,6548 529 | 7989,6762,1227,0,11,6548 530 | 7989,6762,1227,0,11,6548 531 | 7989,6764,1225,0,11,6548 532 | 7989,6764,1225,0,11,6548 533 | 7989,6766,1223,0,11,6548 534 | 7989,6766,1223,0,11,6548 535 | 7989,6768,1220,0,11,6548 536 | 7989,6768,1221,0,11,6548 537 | 7989,6770,1218,0,11,6548 538 | 7989,6770,1218,0,11,6548 539 | 7989,6772,1216,0,11,6548 540 | 7989,6772,1216,0,11,6548 541 | 7989,6774,1215,0,11,6548 542 | 7989,6774,1214,0,11,6548 543 | 7989,6776,1213,0,11,6548 544 | 7989,6776,1213,0,11,6548 545 | 7989,1610,6379,0,12,1421 546 | 7989,1609,6380,0,12,1421 547 | 7989,1610,6378,0,12,1421 548 | 7989,1610,6379,0,12,1421 549 | -------------------------------------------------------------------------------- /raw-results/control-bench_io-results.txt: -------------------------------------------------------------------------------- 1 | 12.755 2 | 12.114 3 | 12.651 4 | 12.489 5 | 12.151 6 | 11.828 7 | 11.859 8 | 11.521 9 | 12.026 10 | 11.932 11 | 12.172 12 | 12.443 13 | 11.989 14 | 12.359 15 | 12.349 16 | 11.969 17 | 11.26 18 | 10.526 19 | 10.573 20 | 9.5156 21 | 8.7707 22 | 8.3802 23 | 8.4687 24 | 8.6041 25 | 10.344 26 | -------------------------------------------------------------------------------- /raw-results/control-bench_io_mod-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 7989,280,7708,0,19,175 3 | 7989,282,7706,0,19,175 4 | 7989,282,7706,0,19,175 5 | 7989,283,7706,0,19,175 6 | 7989,283,7706,0,19,175 7 | 7989,221,7768,0,1,136 8 | 7989,1131,6857,0,9,921 9 | 7989,1137,6852,0,9,925 10 | 7989,1139,6850,0,9,925 11 | 7989,1142,6847,0,10,926 12 | 7989,1147,6841,0,10,929 13 | 7989,1149,6839,0,10,929 14 | 7989,1151,6837,0,10,931 15 | 7989,1156,6833,0,11,932 16 | 7989,1157,6831,0,11,934 17 | 7989,1156,6832,0,11,934 18 | 7989,1159,6829,0,11,936 19 | 7989,1160,6829,0,11,937 20 | 7989,1162,6826,0,11,939 21 | 7989,1163,6826,0,11,939 22 | 7989,1167,6822,0,11,942 23 | 7989,1166,6822,0,11,942 24 | 7989,1170,6819,0,11,946 25 | 7989,1170,6819,0,11,946 26 | 7989,1173,6816,0,11,949 27 | 7989,1173,6815,0,11,949 28 | 7989,1177,6812,0,11,953 29 | 7989,1427,6562,0,11,1222 30 | 7989,1598,6391,0,11,1393 31 | 7989,1599,6389,0,11,1394 32 | 7989,1597,6391,0,11,1396 33 | 7989,1598,6391,0,11,1396 34 | 7989,1599,6390,0,11,1397 35 | 7989,1600,6389,0,11,1397 36 | 7989,1602,6387,0,11,1398 37 | 7989,1603,6386,0,11,1398 38 | 7989,1603,6386,0,11,1398 39 | 7989,1604,6384,0,11,1398 40 | 7989,1605,6384,0,11,1399 41 | 7989,1606,6383,0,11,1399 42 | 7989,1606,6383,0,11,1399 43 | 7989,1607,6382,0,11,1399 44 | 7989,1607,6382,0,11,1399 45 | 7989,1607,6382,0,11,1399 46 | 7989,1608,6381,0,11,1400 47 | 7989,1609,6380,0,11,1401 48 | 7989,1610,6378,0,11,1402 49 | 7989,1610,6379,0,11,1402 50 | 7989,1611,6377,0,11,1403 51 | 7989,1945,6044,0,11,1740 52 | 7989,1946,6042,0,11,1741 53 | 7989,1948,6041,0,11,1743 54 | 7989,1949,6040,0,11,1743 55 | 7989,1946,6043,0,11,1743 56 | 7989,1947,6042,0,11,1743 57 | 7989,1947,6041,0,11,1744 58 | 7989,1948,6040,0,11,1744 59 | 7989,1949,6039,0,11,1744 60 | 7989,1950,6039,0,11,1744 61 | 7989,1951,6038,0,11,1744 62 | 7989,1952,6037,0,11,1744 63 | 7989,1950,6038,0,11,1744 64 | 7989,1950,6038,0,11,1744 65 | 7989,1951,6038,0,11,1744 66 | 7989,1952,6037,0,11,1744 67 | 7989,1952,6036,0,11,1744 68 | 7989,1953,6035,0,11,1744 69 | 7989,1954,6035,0,11,1744 70 | 7989,1954,6035,0,11,1744 71 | 7989,1952,6037,0,11,1745 72 | 7989,1791,6198,0,11,1595 73 | 7989,2096,5893,0,11,1901 74 | 7989,2098,5891,0,11,1902 75 | 7989,2098,5891,0,11,1902 76 | 7989,2099,5890,0,11,1902 77 | 7989,2099,5890,0,11,1902 78 | 7989,2100,5888,0,11,1902 79 | 7989,2101,5888,0,11,1902 80 | 7989,2102,5886,0,11,1902 81 | 7989,2103,5886,0,11,1902 82 | 7989,2104,5885,0,11,1902 83 | 7989,2104,5885,0,11,1902 84 | 7989,2105,5884,0,11,1902 85 | 7989,2106,5883,0,11,1902 86 | 7989,2106,5882,0,11,1902 87 | 7989,2106,5882,0,11,1902 88 | 7989,2107,5882,0,11,1902 89 | 7989,2108,5881,0,11,1902 90 | 7989,2108,5881,0,11,1902 91 | 7989,2109,5880,0,11,1902 92 | 7989,2109,5879,0,11,1902 93 | 7989,2110,5879,0,11,1902 94 | 7989,1944,6045,0,11,1751 95 | 7989,2124,5864,0,11,1932 96 | 7989,2123,5865,0,11,1930 97 | 7989,2124,5864,0,11,1931 98 | 7989,2126,5863,0,11,1931 99 | 7989,2126,5863,0,11,1931 100 | 7989,2127,5862,0,11,1931 101 | 7989,2128,5860,0,11,1932 102 | 7989,2130,5858,0,11,1931 103 | 7989,2130,5859,0,11,1932 104 | 7989,2132,5856,0,11,1931 105 | 7989,2133,5856,0,11,1932 106 | 7989,2134,5855,0,11,1932 107 | 7989,2136,5853,0,11,1931 108 | 7989,2136,5853,0,11,1932 109 | 7989,2136,5853,0,11,1932 110 | 7989,2138,5851,0,11,1932 111 | 7989,2138,5850,0,11,1931 112 | 7989,2136,5852,0,11,1932 113 | 7989,2137,5852,0,11,1931 114 | 7989,2137,5851,0,11,1931 115 | 7989,2138,5851,0,11,1932 116 | 7989,2138,5850,0,11,1932 117 | 7989,2125,5864,0,11,1932 118 | 7989,2125,5864,0,11,1932 119 | 7989,2125,5864,0,11,1932 120 | 7989,2125,5863,0,11,1932 121 | 7989,2126,5863,0,11,1932 122 | 7989,2127,5862,0,11,1932 123 | 7989,2128,5861,0,11,1932 124 | 7989,2129,5859,0,11,1932 125 | 7989,2130,5859,0,11,1932 126 | 7989,2131,5858,0,11,1932 127 | 7989,2132,5857,0,11,1932 128 | 7989,2133,5855,0,11,1932 129 | 7989,2134,5855,0,11,1932 130 | 7989,2135,5854,0,11,1932 131 | 7989,2135,5854,0,11,1932 132 | 7989,2136,5853,0,11,1931 133 | 7989,2137,5852,0,11,1932 134 | 7989,2137,5851,0,11,1932 135 | 7989,2138,5851,0,11,1932 136 | 7989,2138,5850,0,11,1932 137 | 7989,2138,5851,0,11,1931 138 | 7989,2139,5850,0,11,1931 139 | 7989,2127,5861,0,11,1932 140 | 7989,2127,5861,0,11,1932 141 | 7989,2128,5860,0,11,1932 142 | 7989,2129,5860,0,11,1931 143 | 7989,2130,5859,0,11,1932 144 | 7989,2131,5857,0,11,1931 145 | 7989,2132,5857,0,11,1932 146 | 7989,2133,5856,0,11,1931 147 | 7989,2134,5855,0,11,1932 148 | 7989,2135,5854,0,11,1932 149 | 7989,2136,5853,0,11,1932 150 | 7989,2137,5852,0,11,1931 151 | 7989,2138,5851,0,11,1932 152 | 7989,2139,5850,0,11,1932 153 | 7989,2139,5849,0,11,1932 154 | 7989,2140,5848,0,11,1932 155 | 7989,2141,5848,0,11,1931 156 | 7989,2141,5847,0,11,1932 157 | 7989,2142,5847,0,11,1931 158 | 7989,2142,5846,0,11,1931 159 | 7989,2142,5847,0,11,1932 160 | 7989,2142,5846,0,11,1932 161 | 7989,2142,5847,0,11,1932 162 | 7989,2129,5860,0,11,1932 163 | 7989,2128,5860,0,11,1932 164 | 7989,2131,5858,0,11,1932 165 | 7989,2132,5857,0,11,1931 166 | 7989,2132,5857,0,11,1932 167 | 7989,2133,5855,0,11,1931 168 | 7989,2135,5854,0,11,1932 169 | 7989,2135,5853,0,11,1932 170 | 7989,2136,5852,0,11,1931 171 | 7989,2138,5851,0,11,1931 172 | 7989,2139,5850,0,11,1932 173 | 7989,2140,5849,0,11,1932 174 | 7989,2140,5848,0,11,1932 175 | 7989,2142,5847,0,11,1932 176 | 7989,2142,5846,0,11,1932 177 | 7989,2143,5846,0,11,1932 178 | 7989,2144,5845,0,11,1932 179 | 7989,2144,5845,0,11,1932 180 | 7989,2144,5845,0,11,1931 181 | 7989,2144,5845,0,11,1932 182 | 7989,2144,5844,0,11,1932 183 | 7989,2144,5844,0,11,1932 184 | 7989,2127,5862,0,11,1932 185 | 7989,2129,5859,0,11,1932 186 | 7989,2129,5859,0,11,1932 187 | 7989,2130,5859,0,11,1932 188 | 7989,2131,5858,0,11,1932 189 | 7989,2132,5856,0,11,1932 190 | 7989,2134,5855,0,11,1932 191 | 7989,2135,5853,0,11,1932 192 | 7989,2137,5852,0,11,1932 193 | 7989,2140,5849,0,11,1932 194 | 7989,2139,5849,0,11,1932 195 | 7989,2140,5848,0,11,1932 196 | 7989,2141,5847,0,11,1932 197 | 7989,2142,5847,0,11,1932 198 | 7989,2143,5846,0,11,1932 199 | 7989,2143,5846,0,11,1932 200 | 7989,2143,5846,0,11,1932 201 | 7989,2143,5845,0,11,1932 202 | 7989,2143,5845,0,11,1931 203 | 7989,2143,5845,0,11,1932 204 | 7989,2144,5845,0,11,1932 205 | 7989,2144,5845,0,11,1932 206 | 7989,1984,6005,0,11,1788 207 | 7989,2127,5861,0,11,1932 208 | 7989,2128,5861,0,11,1932 209 | 7989,2128,5861,0,11,1931 210 | 7989,2132,5857,0,11,1932 211 | 7989,2133,5856,0,11,1932 212 | 7989,2135,5854,0,11,1931 213 | 7989,2136,5853,0,11,1932 214 | 7989,2138,5851,0,11,1931 215 | 7989,2138,5850,0,11,1931 216 | 7989,2140,5848,0,11,1932 217 | 7989,2141,5848,0,11,1932 218 | 7989,2142,5846,0,11,1932 219 | 7989,2143,5846,0,11,1932 220 | 7989,2143,5845,0,11,1931 221 | 7989,2144,5845,0,11,1932 222 | 7989,2144,5845,0,11,1932 223 | 7989,2144,5845,0,11,1931 224 | 7989,2144,5844,0,11,1932 225 | 7989,2145,5844,0,11,1932 226 | 7989,2145,5844,0,11,1932 227 | 7989,2144,5844,0,11,1932 228 | 7989,1981,6007,0,11,1787 229 | 7989,2128,5861,0,11,1932 230 | 7989,2129,5860,0,11,1932 231 | 7989,2130,5859,0,11,1932 232 | 7989,2133,5856,0,11,1932 233 | 7989,2134,5855,0,11,1931 234 | 7989,2136,5853,0,11,1932 235 | 7989,2137,5852,0,11,1932 236 | 7989,2138,5850,0,11,1932 237 | 7989,2139,5850,0,11,1932 238 | 7989,2141,5848,0,11,1931 239 | 7989,2141,5847,0,11,1932 240 | 7989,2142,5847,0,11,1932 241 | 7989,2142,5847,0,11,1932 242 | 7989,2142,5846,0,11,1932 243 | 7989,2142,5846,0,11,1932 244 | 7989,2142,5846,0,11,1932 245 | 7989,2143,5846,0,11,1931 246 | 7989,2143,5846,0,11,1932 247 | 7989,2143,5846,0,11,1932 248 | 7989,2143,5845,0,11,1932 249 | 7989,2143,5845,0,11,1931 250 | 7989,2129,5859,0,11,1932 251 | 7989,2130,5859,0,11,1932 252 | 7989,2131,5857,0,11,1932 253 | 7989,2134,5855,0,11,1931 254 | 7989,2136,5853,0,11,1932 255 | 7989,2137,5851,0,11,1932 256 | 7989,2139,5850,0,11,1932 257 | 7989,2141,5848,0,11,1932 258 | 7989,2142,5847,0,11,1931 259 | 7989,2143,5846,0,11,1931 260 | 7989,2143,5845,0,11,1932 261 | 7989,2143,5845,0,11,1932 262 | 7989,2143,5845,0,11,1932 263 | 7989,2144,5845,0,11,1932 264 | 7989,2144,5844,0,11,1932 265 | 7989,2145,5844,0,11,1932 266 | 7989,2144,5844,0,11,1932 267 | 7989,2145,5844,0,11,1932 268 | 7989,2144,5844,0,11,1932 269 | 7989,2145,5844,0,11,1932 270 | 7989,2145,5843,0,11,1932 271 | 7989,2126,5862,0,11,1932 272 | 7989,2127,5862,0,11,1932 273 | 7989,2129,5860,0,11,1932 274 | 7989,2131,5858,0,11,1932 275 | 7989,2134,5855,0,11,1932 276 | 7989,2135,5854,0,11,1932 277 | 7989,2137,5851,0,11,1932 278 | 7989,2138,5851,0,11,1932 279 | 7989,2141,5847,0,11,1932 280 | 7989,2140,5848,0,11,1932 281 | 7989,2141,5848,0,11,1932 282 | 7989,2141,5848,0,11,1932 283 | 7989,2141,5847,0,11,1932 284 | 7989,2141,5848,0,11,1932 285 | 7989,2141,5847,0,11,1932 286 | 7989,2141,5847,0,11,1931 287 | 7989,2142,5847,0,11,1932 288 | 7989,2142,5847,0,11,1932 289 | 7989,2142,5846,0,11,1932 290 | 7989,2142,5846,0,11,1932 291 | 7989,2143,5846,0,11,1932 292 | 7989,2130,5859,0,11,1932 293 | 7989,2129,5860,0,11,1932 294 | 7989,2130,5858,0,11,1932 295 | 7989,2134,5855,0,11,1932 296 | 7989,2138,5851,0,11,1932 297 | 7989,2138,5851,0,11,1932 298 | 7989,2141,5848,0,11,1932 299 | 7989,2142,5847,0,11,1932 300 | 7989,2144,5845,0,11,1932 301 | 7989,2143,5845,0,11,1932 302 | 7989,2144,5845,0,11,1932 303 | 7989,2144,5845,0,11,1932 304 | 7989,2144,5844,0,11,1932 305 | 7989,2145,5844,0,11,1932 306 | 7989,2145,5844,0,11,1932 307 | 7989,2145,5844,0,11,1932 308 | 7989,2146,5843,0,11,1932 309 | 7989,2146,5843,0,11,1932 310 | 7989,2146,5843,0,11,1931 311 | 7989,2146,5843,0,11,1932 312 | 7989,2147,5842,0,11,1932 313 | 7989,1618,6371,0,11,1421 314 | 7989,2128,5861,0,11,1932 315 | 7989,2131,5858,0,11,1932 316 | 7989,2134,5855,0,11,1932 317 | 7989,2137,5851,0,11,1932 318 | 7989,2139,5849,0,11,1932 319 | 7989,2142,5846,0,11,1932 320 | 7989,2143,5846,0,11,1932 321 | 7989,2144,5845,0,11,1932 322 | 7989,2144,5845,0,11,1932 323 | 7989,2146,5842,0,11,1932 324 | 7989,2146,5843,0,11,1932 325 | 7989,2147,5842,0,11,1932 326 | 7989,2147,5842,0,11,1932 327 | 7989,2149,5840,0,11,1932 328 | 7989,2149,5840,0,11,1932 329 | 7989,2149,5839,0,11,1932 330 | 7989,2149,5839,0,11,1932 331 | 7989,2150,5839,0,11,1932 332 | 7989,2148,5840,0,11,1932 333 | 7989,2149,5840,0,11,1932 334 | 7989,2149,5840,0,11,1932 335 | 7989,2129,5860,0,11,1932 336 | 7989,2131,5857,0,11,1932 337 | 7989,2134,5855,0,11,1932 338 | 7989,2138,5851,0,11,1932 339 | 7989,2140,5849,0,11,1932 340 | 7989,2143,5846,0,11,1932 341 | 7989,2143,5845,0,11,1932 342 | 7989,2144,5844,0,11,1932 343 | 7989,2144,5845,0,11,1932 344 | 7989,2144,5844,0,11,1931 345 | 7989,2145,5844,0,11,1932 346 | 7989,2145,5843,0,11,1932 347 | 7989,2145,5844,0,11,1932 348 | 7989,2147,5841,0,11,1931 349 | 7989,2147,5842,0,11,1932 350 | 7989,2146,5842,0,11,1932 351 | 7989,2146,5842,0,11,1932 352 | 7989,2147,5842,0,11,1932 353 | 7989,2147,5842,0,11,1932 354 | 7989,2148,5841,0,11,1932 355 | 7989,2147,5841,0,11,1932 356 | 7989,2126,5863,0,11,1932 357 | 7989,2129,5859,0,11,1932 358 | 7989,2132,5856,0,11,1932 359 | 7989,2137,5852,0,11,1932 360 | 7989,2138,5850,0,11,1932 361 | 7989,2141,5848,0,11,1932 362 | 7989,2141,5847,0,11,1932 363 | 7989,2142,5846,0,11,1931 364 | 7989,2143,5846,0,11,1932 365 | 7989,2144,5845,0,11,1932 366 | 7989,2143,5845,0,11,1932 367 | 7989,2144,5844,0,11,1932 368 | 7989,2144,5844,0,11,1932 369 | 7989,2145,5844,0,11,1932 370 | 7989,2145,5844,0,11,1932 371 | 7989,2145,5843,0,11,1932 372 | 7989,2145,5843,0,11,1932 373 | 7989,2147,5842,0,11,1932 374 | 7989,2146,5843,0,11,1932 375 | 7989,2147,5842,0,11,1932 376 | 7989,2147,5842,0,11,1932 377 | 7989,2128,5861,0,11,1932 378 | 7989,2131,5858,0,11,1932 379 | 7989,2135,5854,0,11,1932 380 | 7989,2139,5849,0,11,1932 381 | 7989,2142,5847,0,11,1931 382 | 7989,2144,5844,0,11,1932 383 | 7989,2144,5844,0,11,1932 384 | 7989,2145,5843,0,11,1932 385 | 7989,2145,5843,0,11,1932 386 | 7989,2146,5842,0,11,1932 387 | 7989,2146,5843,0,11,1932 388 | 7989,2147,5842,0,11,1932 389 | 7989,2147,5842,0,11,1932 390 | 7989,2148,5841,0,11,1932 391 | 7989,2147,5842,0,11,1932 392 | 7989,2149,5840,0,11,1932 393 | 7989,2148,5840,0,11,1932 394 | 7989,2149,5840,0,11,1932 395 | 7989,2148,5840,0,11,1932 396 | 7989,2149,5840,0,11,1932 397 | 7989,2149,5840,0,11,1932 398 | 7989,2129,5860,0,11,1932 399 | 7989,2129,5859,0,11,1932 400 | 7989,2133,5856,0,11,1932 401 | 7989,2137,5851,0,11,1932 402 | 7989,2140,5849,0,11,1932 403 | 7989,2143,5846,0,11,1932 404 | 7989,2143,5846,0,11,1932 405 | 7989,2144,5845,0,11,1932 406 | 7989,2144,5845,0,11,1932 407 | 7989,2145,5844,0,11,1932 408 | 7989,2144,5845,0,11,1932 409 | 7989,2145,5843,0,11,1932 410 | 7989,2145,5844,0,11,1932 411 | 7989,2146,5843,0,11,1932 412 | 7989,2146,5843,0,11,1932 413 | 7989,2146,5842,0,11,1932 414 | 7989,2146,5842,0,11,1932 415 | 7989,2147,5841,0,11,1932 416 | 7989,2147,5842,0,11,1932 417 | 7989,2148,5841,0,11,1932 418 | 7989,2148,5841,0,11,1932 419 | 7989,2127,5862,0,11,1932 420 | 7989,2127,5861,0,11,1932 421 | 7989,2131,5858,0,11,1932 422 | 7989,2136,5853,0,11,1932 423 | 7989,2138,5850,0,11,1932 424 | 7989,2141,5848,0,11,1932 425 | 7989,2140,5848,0,11,1932 426 | 7989,2142,5847,0,11,1932 427 | 7989,2142,5847,0,11,1932 428 | 7989,2143,5846,0,11,1932 429 | 7989,2142,5847,0,11,1932 430 | 7989,2144,5845,0,11,1932 431 | 7989,2144,5845,0,11,1932 432 | 7989,2144,5845,0,11,1932 433 | 7989,2144,5845,0,11,1932 434 | 7989,2145,5844,0,11,1932 435 | 7989,2145,5844,0,11,1932 436 | 7989,2146,5843,0,11,1932 437 | 7989,2145,5843,0,11,1932 438 | 7989,2146,5842,0,11,1932 439 | 7989,2145,5844,0,11,1932 440 | 7989,2127,5862,0,11,1932 441 | 7989,2127,5862,0,11,1932 442 | 7989,2133,5856,0,11,1932 443 | 7989,2138,5851,0,11,1932 444 | 7989,2140,5848,0,11,1932 445 | 7989,2142,5846,0,11,1932 446 | 7989,2143,5846,0,11,1932 447 | 7989,2144,5845,0,11,1932 448 | 7989,2144,5845,0,11,1932 449 | 7989,2145,5844,0,11,1932 450 | 7989,2145,5844,0,11,1932 451 | 7989,2146,5843,0,11,1932 452 | 7989,2145,5843,0,11,1932 453 | 7989,2146,5843,0,11,1932 454 | 7989,2146,5842,0,11,1932 455 | 7989,2147,5842,0,11,1932 456 | 7989,2147,5842,0,11,1932 457 | 7989,2148,5841,0,11,1932 458 | 7989,2147,5842,0,11,1932 459 | 7989,2148,5840,0,11,1932 460 | 7989,2148,5841,0,11,1932 461 | 7989,2127,5862,0,11,1932 462 | 7989,2127,5861,0,11,1932 463 | 7989,2130,5859,0,11,1932 464 | 7989,2135,5854,0,11,1932 465 | 7989,2138,5851,0,11,1932 466 | 7989,2141,5848,0,11,1932 467 | 7989,2143,5846,0,11,1932 468 | 7989,2143,5845,0,11,1932 469 | 7989,2143,5845,0,11,1932 470 | 7989,2144,5844,0,11,1932 471 | 7989,2144,5844,0,11,1932 472 | 7989,2145,5844,0,11,1932 473 | 7989,2145,5844,0,11,1932 474 | 7989,2146,5843,0,11,1932 475 | 7989,2146,5843,0,11,1932 476 | 7989,2147,5842,0,11,1932 477 | 7989,2147,5842,0,11,1932 478 | 7989,2148,5841,0,11,1932 479 | 7989,2147,5842,0,11,1932 480 | 7989,2148,5841,0,11,1932 481 | 7989,2147,5841,0,11,1932 482 | 7989,2128,5861,0,11,1932 483 | 7989,2129,5859,0,11,1932 484 | 7989,2133,5856,0,11,1932 485 | 7989,2137,5851,0,11,1932 486 | 7989,2140,5848,0,11,1932 487 | 7989,2143,5846,0,11,1932 488 | 7989,2143,5846,0,11,1932 489 | 7989,2144,5845,0,11,1932 490 | 7989,2144,5845,0,11,1932 491 | 7989,2145,5844,0,11,1932 492 | 7989,2145,5844,0,11,1932 493 | 7989,2146,5843,0,11,1932 494 | 7989,2146,5843,0,11,1932 495 | 7989,2147,5842,0,11,1932 496 | 7989,2147,5842,0,11,1932 497 | 7989,2147,5841,0,11,1932 498 | 7989,2148,5841,0,11,1932 499 | 7989,2148,5841,0,11,1932 500 | 7989,2150,5839,0,11,1932 501 | 7989,2149,5840,0,11,1932 502 | 7989,2149,5840,0,11,1932 503 | 7989,1616,6373,0,11,1421 504 | 7989,2127,5862,0,11,1932 505 | 7989,2130,5859,0,11,1932 506 | 7989,2134,5855,0,11,1932 507 | 7989,2138,5851,0,11,1932 508 | 7989,2139,5849,0,11,1932 509 | 7989,2142,5847,0,11,1932 510 | 7989,2142,5847,0,11,1932 511 | 7989,2143,5846,0,11,1932 512 | 7989,2143,5846,0,11,1932 513 | 7989,2144,5845,0,11,1932 514 | 7989,2143,5845,0,11,1932 515 | 7989,2144,5844,0,11,1932 516 | 7989,2144,5844,0,11,1932 517 | 7989,2145,5844,0,11,1932 518 | 7989,2145,5844,0,11,1932 519 | 7989,2146,5843,0,11,1932 520 | 7989,2145,5843,0,11,1932 521 | 7989,2146,5843,0,11,1932 522 | 7989,2146,5842,0,11,1932 523 | 7989,2147,5842,0,11,1932 524 | 7989,2147,5842,0,11,1932 525 | 7989,2131,5858,0,11,1932 526 | 7989,2133,5856,0,11,1932 527 | 7989,2138,5850,0,11,1932 528 | 7989,2143,5846,0,11,1932 529 | 7989,2145,5844,0,11,1932 530 | 7989,2147,5842,0,11,1932 531 | 7989,2147,5841,0,11,1932 532 | 7989,2148,5841,0,11,1932 533 | 7989,2148,5841,0,11,1932 534 | 7989,2149,5840,0,11,1932 535 | 7989,2148,5840,0,11,1932 536 | 7989,2149,5839,0,11,1932 537 | 7989,2149,5839,0,11,1932 538 | 7989,2150,5839,0,11,1932 539 | 7989,2150,5839,0,11,1932 540 | 7989,2151,5838,0,11,1932 541 | 7989,2151,5838,0,11,1932 542 | 7989,2152,5837,0,11,1932 543 | 7989,2151,5838,0,11,1932 544 | 7989,2152,5837,0,11,1932 545 | 7989,2151,5837,0,11,1932 546 | 7989,1613,6375,0,11,1421 547 | 7989,1612,6377,0,11,1421 548 | 7989,1612,6377,0,11,1421 549 | 7989,1612,6377,0,11,1421 550 | -------------------------------------------------------------------------------- /raw-results/control-bench_io_mod-results.txt: -------------------------------------------------------------------------------- 1 | 1.7721 2 | 1.3775 3 | 1.4817 4 | 1.7708 5 | 1.917 6 | 2.1622 7 | 2.2493 8 | 2.5416 9 | 3.1057 10 | 3.3593 11 | 3.9687 12 | 4.5053 13 | 4.8394 14 | 5.1754 15 | 5.9895 16 | 6.246 17 | 6.9111 18 | 7.4531 19 | 7.8332 20 | 8.177 21 | 8.0218 22 | 8.328 23 | 8.4322 24 | 8.0207 25 | 7.8592 26 | -------------------------------------------------------------------------------- /raw-results/control-bench_mbw-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 7989,280,7709,0,18,174 3 | 7989,280,7708,0,18,174 4 | 7989,280,7708,0,18,174 5 | 7989,281,7708,0,18,174 6 | 7989,281,7707,0,18,174 7 | 7989,281,7707,0,18,174 8 | 7989,282,7707,0,18,174 9 | 7989,281,7707,0,18,174 10 | 7989,282,7707,0,18,174 11 | 7989,282,7707,0,18,174 12 | 7989,282,7706,0,18,174 13 | 7989,282,7707,0,18,174 14 | 7989,282,7707,0,18,174 15 | 7989,282,7707,0,18,174 16 | 7989,282,7707,0,18,174 17 | 7989,282,7707,0,18,174 18 | 7989,282,7707,0,18,174 19 | 7989,282,7707,0,18,174 20 | 7989,282,7707,0,18,174 21 | 7989,282,7706,0,18,174 22 | 7989,282,7707,0,18,174 23 | 7989,282,7707,0,18,174 24 | 7989,282,7707,0,18,174 25 | 7989,282,7706,0,18,174 26 | 7989,282,7707,0,18,174 27 | 7989,282,7707,0,18,174 28 | 7989,282,7707,0,18,174 29 | 7989,282,7707,0,18,174 30 | 7989,282,7707,0,18,174 31 | 7989,282,7707,0,18,174 32 | 7989,282,7707,0,18,174 33 | 7989,282,7707,0,18,174 34 | 7989,282,7707,0,18,174 35 | 7989,282,7707,0,18,174 36 | 7989,282,7707,0,18,174 37 | 7989,282,7707,0,18,174 38 | 7989,282,7707,0,18,174 39 | 7989,282,7707,0,18,174 40 | 7989,282,7707,0,18,174 41 | 7989,282,7706,0,18,174 42 | 7989,282,7706,0,18,174 43 | 7989,282,7707,0,18,174 44 | 7989,282,7707,0,18,174 45 | 7989,282,7706,0,18,174 46 | 7989,282,7707,0,18,174 47 | 7989,282,7707,0,18,174 48 | 7989,282,7707,0,18,174 49 | 7989,282,7706,0,18,174 50 | 7989,282,7706,0,18,174 51 | 7989,282,7707,0,18,174 52 | 7989,282,7707,0,18,174 53 | 7989,282,7707,0,18,174 54 | 7989,282,7707,0,18,174 55 | 7989,282,7707,0,18,174 56 | 7989,282,7707,0,18,174 57 | 7989,282,7707,0,18,174 58 | 7989,282,7707,0,18,174 59 | 7989,282,7707,0,18,174 60 | 7989,282,7707,0,18,174 61 | 7989,282,7707,0,18,174 62 | 7989,282,7707,0,18,174 63 | 7989,282,7707,0,18,174 64 | 7989,282,7707,0,18,174 65 | 7989,282,7706,0,18,174 66 | 7989,282,7707,0,18,174 67 | 7989,282,7707,0,18,174 68 | 7989,282,7707,0,18,174 69 | 7989,282,7707,0,18,174 70 | 7989,282,7707,0,18,174 71 | 7989,282,7707,0,18,174 72 | 7989,282,7706,0,18,174 73 | 7989,282,7707,0,18,174 74 | 7989,282,7707,0,18,174 75 | 7989,282,7707,0,18,174 76 | 7989,282,7706,0,18,174 77 | 7989,247,7742,0,6,148 78 | 7989,302,7687,0,9,189 79 | 7989,331,7658,0,9,217 80 | 7989,364,7625,0,9,249 81 | 7989,405,7584,0,9,284 82 | 7989,451,7537,0,9,318 83 | 7989,486,7503,0,9,324 84 | 7989,518,7470,0,9,355 85 | 7989,551,7438,0,9,386 86 | 7989,576,7413,0,9,411 87 | 7989,601,7387,0,9,436 88 | 7989,629,7360,0,10,462 89 | 7989,654,7334,0,10,488 90 | 7989,689,7299,0,10,521 91 | 7989,728,7260,0,10,559 92 | 7989,763,7226,0,10,587 93 | 7989,783,7205,0,10,592 94 | 7989,817,7172,0,10,592 95 | 7989,844,7145,0,10,593 96 | 7989,869,7119,0,10,593 97 | 7989,1022,6967,0,10,598 98 | 7989,1022,6966,0,10,598 99 | 7989,1023,6966,0,10,598 100 | 7989,1002,6987,0,10,600 101 | 7989,1002,6987,0,10,600 102 | 7989,1002,6986,0,10,600 103 | 7989,916,7073,0,10,602 104 | 7989,1003,6985,0,10,602 105 | 7989,1004,6985,0,10,602 106 | 7989,873,7115,0,10,600 107 | 7989,1005,6984,0,10,604 108 | 7989,1008,6981,0,11,605 109 | 7989,880,7109,0,11,605 110 | 7989,1006,6983,0,11,606 111 | 7989,1006,6982,0,11,606 112 | 7989,1006,6982,0,11,606 113 | 7989,1010,6979,0,11,608 114 | 7989,1011,6978,0,11,608 115 | 7989,1011,6978,0,11,608 116 | 7989,1012,6977,0,11,609 117 | 7989,1012,6977,0,11,610 118 | 7989,1013,6976,0,11,610 119 | 7989,1013,6975,0,11,611 120 | 7989,1014,6975,0,11,611 121 | 7989,1014,6975,0,11,611 122 | 7989,884,7105,0,11,609 123 | 7989,1015,6973,0,11,613 124 | 7989,1016,6973,0,11,613 125 | 7989,882,7106,0,11,610 126 | 7989,1015,6974,0,11,615 127 | 7989,1015,6973,0,11,615 128 | 7989,1016,6973,0,11,615 129 | 7989,1019,6970,0,11,616 130 | 7989,1020,6969,0,11,616 131 | 7989,1019,6969,0,11,616 132 | 7989,1021,6968,0,11,618 133 | 7989,1021,6967,0,11,618 134 | 7989,1022,6967,0,11,618 135 | 7989,959,7030,0,11,620 136 | 7989,1023,6966,0,11,620 137 | 7989,1024,6964,0,11,620 138 | 7989,892,7097,0,11,618 139 | 7989,1024,6964,0,11,622 140 | 7989,1025,6964,0,11,622 141 | 7989,894,7095,0,11,619 142 | 7989,1024,6965,0,11,623 143 | 7989,1025,6964,0,11,624 144 | 7989,1025,6964,0,11,624 145 | 7989,1027,6961,0,11,625 146 | 7989,1028,6961,0,11,625 147 | 7989,1029,6959,0,11,625 148 | 7989,1029,6960,0,11,627 149 | 7989,1029,6959,0,11,627 150 | 7989,1029,6959,0,11,627 151 | 7989,900,7089,0,11,625 152 | 7989,1031,6957,0,11,628 153 | 7989,1032,6957,0,11,629 154 | 7989,901,7088,0,11,626 155 | 7989,1033,6956,0,11,630 156 | 7989,1033,6955,0,11,630 157 | 7989,1035,6954,0,11,630 158 | 7989,1035,6954,0,11,632 159 | 7989,1036,6953,0,11,632 160 | 7989,1036,6953,0,11,632 161 | 7989,1036,6952,0,11,633 162 | 7989,1037,6952,0,11,633 163 | 7989,1037,6952,0,11,634 164 | 7989,1040,6948,0,11,636 165 | 7989,1041,6948,0,11,636 166 | 7989,1041,6948,0,11,636 167 | 7989,908,7081,0,11,634 168 | 7989,1040,6949,0,11,637 169 | 7989,1041,6948,0,11,638 170 | 7989,1041,6948,0,11,638 171 | 7989,1042,6947,0,11,639 172 | 7989,1042,6947,0,11,639 173 | 7989,1042,6946,0,11,639 174 | 7989,1046,6943,0,11,641 175 | 7989,1046,6942,0,11,641 176 | 7989,1046,6942,0,11,641 177 | 7989,1045,6943,0,11,643 178 | 7989,1046,6943,0,11,643 179 | 7989,1046,6943,0,11,643 180 | 7989,920,7069,0,11,644 181 | 7989,1050,6939,0,11,645 182 | 7989,1050,6938,0,11,645 183 | 7989,917,7072,0,11,643 184 | 7989,1050,6938,0,11,647 185 | 7989,1050,6938,0,11,647 186 | 7989,1051,6938,0,11,647 187 | 7989,1053,6936,0,11,650 188 | 7989,1053,6936,0,11,650 189 | 7989,1053,6935,0,11,650 190 | 7989,1046,6943,0,11,651 191 | 7989,1055,6934,0,11,651 192 | 7989,1055,6933,0,11,652 193 | 7989,924,7064,0,11,650 194 | 7989,1056,6932,0,11,653 195 | 7989,1057,6932,0,11,653 196 | 7989,929,7059,0,11,654 197 | 7989,1061,6928,0,11,656 198 | 7989,1061,6928,0,11,656 199 | 7989,1061,6928,0,11,656 200 | 7989,1062,6927,0,11,657 201 | 7989,1062,6926,0,11,657 202 | 7989,1063,6926,0,11,657 203 | 7989,930,7059,0,11,655 204 | 7989,1062,6927,0,11,659 205 | 7989,1062,6927,0,11,659 206 | 7989,930,7058,0,11,656 207 | 7989,1064,6924,0,11,661 208 | 7989,1065,6924,0,11,661 209 | 7989,1065,6924,0,11,661 210 | 7989,1067,6921,0,11,663 211 | 7989,1068,6921,0,11,663 212 | 7989,1068,6920,0,11,663 213 | 7989,1067,6922,0,11,664 214 | 7989,1068,6921,0,11,664 215 | 7989,1068,6921,0,11,664 216 | 7989,1021,6967,0,11,666 217 | 7989,1070,6918,0,11,667 218 | 7989,1070,6918,0,11,667 219 | 7989,941,7048,0,11,664 220 | 7989,1073,6915,0,11,668 221 | 7989,1074,6915,0,11,668 222 | 7989,947,7042,0,11,669 223 | 7989,1074,6915,0,11,670 224 | 7989,1074,6915,0,11,670 225 | 7989,1074,6915,0,11,670 226 | 7989,1078,6911,0,11,672 227 | 7989,1079,6910,0,11,672 228 | 7989,1079,6910,0,11,672 229 | 7989,1079,6910,0,11,674 230 | 7989,1079,6910,0,11,674 231 | 7989,1079,6910,0,11,674 232 | 7989,951,7038,0,11,675 233 | 7989,1081,6908,0,11,675 234 | 7989,1081,6908,0,11,675 235 | 7989,948,7040,0,11,674 236 | 7989,1081,6908,0,11,677 237 | 7989,1081,6907,0,11,678 238 | 7989,954,7035,0,11,678 239 | 7989,1085,6904,0,11,679 240 | 7989,1085,6904,0,11,679 241 | 7989,1085,6904,0,11,679 242 | 7989,1087,6902,0,11,681 243 | 7989,1087,6902,0,11,681 244 | 7989,1087,6901,0,11,682 245 | 7989,957,7032,0,11,680 246 | 7989,1090,6899,0,11,683 247 | 7989,1091,6898,0,11,683 248 | 7989,958,7030,0,11,681 249 | 7989,1090,6898,0,11,685 250 | 7989,1091,6898,0,11,685 251 | 7989,963,7026,0,11,685 252 | 7989,1093,6896,0,11,687 253 | 7989,1093,6896,0,11,687 254 | 7989,1094,6895,0,11,687 255 | 7989,1092,6897,0,11,688 256 | 7989,1093,6896,0,11,688 257 | 7989,1093,6896,0,11,689 258 | 7989,1094,6895,0,11,690 259 | 7989,1094,6894,0,11,690 260 | 7989,1094,6895,0,11,690 261 | 7989,968,7020,0,11,692 262 | 7989,1097,6892,0,11,693 263 | 7989,1097,6892,0,11,693 264 | 7989,966,7023,0,11,690 265 | 7989,1098,6891,0,11,694 266 | 7989,1098,6890,0,11,694 267 | 7989,971,7017,0,11,695 268 | 7989,1102,6887,0,11,696 269 | 7989,1102,6887,0,11,696 270 | 7989,1102,6887,0,11,696 271 | 7989,1104,6885,0,11,698 272 | 7989,1104,6885,0,11,698 273 | 7989,1104,6885,0,11,698 274 | 7989,978,7011,0,11,700 275 | 7989,1106,6883,0,11,700 276 | 7989,1108,6881,0,11,700 277 | 7989,975,7013,0,11,698 278 | 7989,1108,6881,0,11,701 279 | 7989,1108,6880,0,11,701 280 | 7989,976,7013,0,11,698 281 | 7989,1110,6879,0,11,704 282 | 7989,1110,6879,0,11,704 283 | 7989,1110,6879,0,11,704 284 | 7989,1055,6933,0,11,705 285 | 7989,1112,6877,0,11,705 286 | 7989,1112,6876,0,11,706 287 | 7989,981,7007,0,11,703 288 | 7989,1113,6875,0,11,707 289 | 7989,1114,6875,0,11,707 290 | 7989,985,7004,0,11,707 291 | 7989,1115,6874,0,11,709 292 | 7989,1115,6874,0,11,709 293 | 7989,1115,6873,0,11,709 294 | 7989,1114,6875,0,11,711 295 | 7989,1114,6874,0,11,711 296 | 7989,1114,6874,0,11,711 297 | 7989,1116,6873,0,11,713 298 | 7989,1116,6873,0,11,713 299 | 7989,1116,6873,0,11,713 300 | 7989,989,7000,0,11,711 301 | 7989,1120,6868,0,11,715 302 | 7989,1120,6868,0,11,715 303 | 7989,990,6999,0,11,713 304 | 7989,1122,6867,0,11,716 305 | 7989,1122,6866,0,11,716 306 | 7989,1123,6866,0,11,717 307 | 7989,1123,6865,0,11,718 308 | 7989,1124,6865,0,11,718 309 | 7989,1124,6865,0,11,718 310 | 7989,1119,6869,0,11,720 311 | 7989,1125,6864,0,11,720 312 | 7989,1125,6864,0,11,720 313 | 7989,996,6993,0,11,718 314 | 7989,1128,6861,0,11,722 315 | 7989,1130,6859,0,11,722 316 | 7989,1002,6986,0,11,723 317 | 7989,1127,6862,0,11,724 318 | 7989,1127,6862,0,11,724 319 | 7989,1127,6861,0,11,724 320 | 7989,1129,6860,0,11,725 321 | 7989,1130,6859,0,11,726 322 | 7989,1130,6859,0,11,726 323 | 7989,1091,6898,0,11,727 324 | 7989,1133,6855,0,11,727 325 | 7989,1135,6854,0,11,727 326 | 7989,1001,6988,0,11,726 327 | 7989,1133,6856,0,11,729 328 | 7989,1133,6856,0,11,729 329 | 7989,1006,6983,0,11,729 330 | 7989,1137,6852,0,11,731 331 | 7989,1138,6851,0,11,732 332 | 7989,1138,6851,0,11,732 333 | 7989,1139,6850,0,11,733 334 | 7989,1139,6850,0,11,733 335 | 7989,1141,6848,0,11,733 336 | 7989,1011,6978,0,11,735 337 | 7989,1139,6850,0,11,735 338 | 7989,1139,6849,0,11,735 339 | 7989,1008,6980,0,11,733 340 | 7989,1140,6848,0,11,737 341 | 7989,1141,6847,0,11,737 342 | 7989,1141,6847,0,11,737 343 | 7989,1143,6846,0,11,738 344 | 7989,1143,6846,0,11,739 345 | 7989,1143,6845,0,11,739 346 | 7989,1144,6844,0,11,740 347 | 7989,1145,6844,0,11,740 348 | 7989,1145,6844,0,11,740 349 | 7989,1016,6972,0,11,739 350 | 7989,1148,6841,0,11,742 351 | 7989,1149,6840,0,11,743 352 | 7989,1017,6972,0,11,739 353 | 7989,1150,6839,0,11,744 354 | 7989,1150,6838,0,11,744 355 | 7989,1151,6838,0,11,744 356 | 7989,1150,6839,0,11,746 357 | 7989,1150,6839,0,11,746 358 | 7989,1150,6838,0,11,746 359 | 7989,1154,6835,0,11,748 360 | 7989,1155,6834,0,11,748 361 | 7989,1155,6834,0,11,748 362 | 7989,1021,6968,0,11,746 363 | 7989,1154,6835,0,11,750 364 | 7989,1154,6834,0,11,750 365 | 7989,1027,6962,0,11,750 366 | 7989,1155,6834,0,11,751 367 | 7989,1155,6834,0,11,751 368 | 7989,1156,6833,0,11,751 369 | 7989,1157,6831,0,11,753 370 | 7989,1158,6831,0,11,753 371 | 7989,1158,6830,0,11,754 372 | 7989,1032,6957,0,11,753 373 | 7989,1161,6828,0,11,755 374 | 7989,1161,6827,0,11,755 375 | 7989,1163,6826,0,11,755 376 | 7989,1164,6825,0,11,757 377 | 7989,1164,6825,0,11,757 378 | 7989,1164,6825,0,11,757 379 | 7989,1165,6824,0,11,759 380 | 7989,1165,6823,0,11,759 381 | 7989,1166,6823,0,11,759 382 | 7989,1035,6954,0,11,757 383 | 7989,1167,6822,0,11,760 384 | 7989,1167,6822,0,11,761 385 | 7989,1041,6948,0,11,761 386 | 7989,1169,6820,0,11,762 387 | 7989,1169,6820,0,11,762 388 | 7989,1169,6819,0,11,762 389 | 7989,1170,6818,0,11,764 390 | 7989,1171,6817,0,11,765 391 | 7989,1172,6817,0,11,765 392 | 7989,1044,6944,0,11,766 393 | 7989,1172,6816,0,11,766 394 | 7989,1173,6816,0,11,766 395 | 7989,1041,6947,0,11,764 396 | 7989,1174,6814,0,11,768 397 | 7989,1175,6814,0,11,768 398 | 7989,1175,6814,0,11,768 399 | 7989,1174,6814,0,11,770 400 | 7989,1175,6814,0,11,770 401 | 7989,1175,6814,0,11,770 402 | 7989,1176,6812,0,11,772 403 | 7989,1177,6812,0,11,772 404 | 7989,1177,6812,0,11,772 405 | 7989,1160,6829,0,11,773 406 | 7989,1179,6810,0,11,773 407 | 7989,1179,6810,0,11,774 408 | 7989,1050,6939,0,11,772 409 | 7989,1183,6806,0,11,775 410 | 7989,1183,6806,0,11,775 411 | 7989,1050,6938,0,11,772 412 | 7989,1186,6803,0,11,777 413 | 7989,1186,6803,0,11,777 414 | 7989,1188,6800,0,11,777 415 | 7989,1186,6802,0,11,779 416 | 7989,1187,6802,0,11,779 417 | 7989,1187,6801,0,11,779 418 | 7989,1188,6801,0,11,781 419 | 7989,1189,6800,0,11,781 420 | 7989,1189,6800,0,11,781 421 | 7989,1052,6937,0,11,778 422 | 7989,1052,6937,0,11,778 423 | 7989,1052,6937,0,11,778 424 | 7989,1051,6937,0,11,778 425 | 7989,1051,6938,0,11,778 426 | 7989,1051,6938,0,11,778 427 | 7989,1051,6938,0,11,778 428 | 7989,1051,6938,0,11,778 429 | 7989,1051,6938,0,11,778 430 | 7989,1051,6938,0,11,778 431 | 7989,1051,6938,0,11,778 432 | 7989,1051,6938,0,11,778 433 | 7989,1051,6938,0,11,778 434 | 7989,1035,6954,0,11,778 435 | 7989,1036,6953,0,11,778 436 | 7989,1035,6953,0,11,778 437 | 7989,1035,6953,0,11,778 438 | 7989,1035,6953,0,11,778 439 | 7989,1036,6953,0,11,778 440 | 7989,1036,6953,0,11,778 441 | 7989,1036,6953,0,11,778 442 | 7989,1036,6953,0,11,778 443 | 7989,1035,6953,0,11,778 444 | 7989,1035,6953,0,11,778 445 | 7989,1036,6953,0,11,778 446 | 7989,1036,6953,0,11,778 447 | 7989,1036,6953,0,11,778 448 | 7989,1036,6953,0,11,778 449 | 7989,1036,6953,0,11,778 450 | 7989,1035,6954,0,11,778 451 | 7989,1035,6953,0,11,778 452 | 7989,1035,6953,0,11,778 453 | 7989,1035,6953,0,11,778 454 | 7989,1035,6953,0,11,778 455 | 7989,1035,6953,0,11,778 456 | 7989,1035,6953,0,11,778 457 | 7989,1035,6953,0,11,778 458 | 7989,1035,6954,0,11,778 459 | 7989,1035,6953,0,11,778 460 | 7989,1035,6953,0,11,778 461 | 7989,1035,6953,0,11,778 462 | 7989,1035,6953,0,11,778 463 | 7989,1036,6953,0,11,778 464 | 7989,1035,6953,0,11,778 465 | 7989,1035,6954,0,11,778 466 | 7989,1035,6953,0,11,778 467 | 7989,1035,6953,0,11,778 468 | 7989,1035,6954,0,11,778 469 | 7989,1036,6953,0,11,778 470 | 7989,1035,6953,0,11,778 471 | 7989,1035,6953,0,11,778 472 | 7989,1035,6953,0,11,778 473 | 7989,1035,6953,0,11,778 474 | 7989,1035,6953,0,11,778 475 | 7989,1035,6954,0,11,778 476 | 7989,1035,6953,0,11,778 477 | 7989,1035,6954,0,11,778 478 | 7989,1035,6954,0,11,778 479 | 7989,1035,6953,0,11,778 480 | 7989,1035,6953,0,11,778 481 | -------------------------------------------------------------------------------- /raw-results/control-bench_mbw-results.txt: -------------------------------------------------------------------------------- 1 | Starting test on 2 cores 2 | Waiting for tests to finish 3 | MEMCPY Total AVG: 7781.474 MiB/s 4 | DUMB Total AVG: 5266.766 MiB/s 5 | MCBLOCK Total AVG: 9094.090 MiB/s 6 | Starting test on 2 cores 7 | Waiting for tests to finish 8 | MEMCPY Total AVG: 7639.208 MiB/s 9 | DUMB Total AVG: 5361.637 MiB/s 10 | MCBLOCK Total AVG: 8978.540 MiB/s 11 | Starting test on 2 cores 12 | Waiting for tests to finish 13 | MEMCPY Total AVG: 7654.967 MiB/s 14 | DUMB Total AVG: 5209.994 MiB/s 15 | MCBLOCK Total AVG: 9124.015 MiB/s 16 | Starting test on 2 cores 17 | Waiting for tests to finish 18 | MEMCPY Total AVG: 7773.114 MiB/s 19 | DUMB Total AVG: 5269.672 MiB/s 20 | MCBLOCK Total AVG: 9171.261 MiB/s 21 | Starting test on 2 cores 22 | Waiting for tests to finish 23 | MEMCPY Total AVG: 7795.344 MiB/s 24 | DUMB Total AVG: 5344.419 MiB/s 25 | MCBLOCK Total AVG: 9211.623 MiB/s 26 | Starting test on 2 cores 27 | Waiting for tests to finish 28 | MEMCPY Total AVG: 7725.780 MiB/s 29 | DUMB Total AVG: 5301.198 MiB/s 30 | MCBLOCK Total AVG: 9126.706 MiB/s 31 | Starting test on 2 cores 32 | Waiting for tests to finish 33 | MEMCPY Total AVG: 7589.061 MiB/s 34 | DUMB Total AVG: 5278.742 MiB/s 35 | MCBLOCK Total AVG: 9095.446 MiB/s 36 | Starting test on 2 cores 37 | Waiting for tests to finish 38 | MEMCPY Total AVG: 7719.013 MiB/s 39 | DUMB Total AVG: 5333.181 MiB/s 40 | MCBLOCK Total AVG: 9190.417 MiB/s 41 | Starting test on 2 cores 42 | Waiting for tests to finish 43 | MEMCPY Total AVG: 7789.099 MiB/s 44 | DUMB Total AVG: 5333.269 MiB/s 45 | MCBLOCK Total AVG: 9136.391 MiB/s 46 | Starting test on 2 cores 47 | Waiting for tests to finish 48 | MEMCPY Total AVG: 7753.113 MiB/s 49 | DUMB Total AVG: 5309.058 MiB/s 50 | MCBLOCK Total AVG: 8968.708 MiB/s 51 | Starting test on 2 cores 52 | Waiting for tests to finish 53 | MEMCPY Total AVG: 7719.439 MiB/s 54 | DUMB Total AVG: 5293.428 MiB/s 55 | MCBLOCK Total AVG: 9118.988 MiB/s 56 | Starting test on 2 cores 57 | Waiting for tests to finish 58 | MEMCPY Total AVG: 7765.544 MiB/s 59 | DUMB Total AVG: 5377.595 MiB/s 60 | MCBLOCK Total AVG: 9185.056 MiB/s 61 | Starting test on 2 cores 62 | Waiting for tests to finish 63 | MEMCPY Total AVG: 7832.196 MiB/s 64 | DUMB Total AVG: 5335.915 MiB/s 65 | MCBLOCK Total AVG: 9091.284 MiB/s 66 | Starting test on 2 cores 67 | Waiting for tests to finish 68 | MEMCPY Total AVG: 7800.144 MiB/s 69 | DUMB Total AVG: 5362.306 MiB/s 70 | MCBLOCK Total AVG: 9027.622 MiB/s 71 | Starting test on 2 cores 72 | Waiting for tests to finish 73 | MEMCPY Total AVG: 7772.817 MiB/s 74 | DUMB Total AVG: 5311.259 MiB/s 75 | MCBLOCK Total AVG: 9161.986 MiB/s 76 | Starting test on 2 cores 77 | Waiting for tests to finish 78 | MEMCPY Total AVG: 7833.239 MiB/s 79 | DUMB Total AVG: 5440.887 MiB/s 80 | MCBLOCK Total AVG: 9259.771 MiB/s 81 | Starting test on 2 cores 82 | Waiting for tests to finish 83 | MEMCPY Total AVG: 7843.197 MiB/s 84 | DUMB Total AVG: 5349.805 MiB/s 85 | MCBLOCK Total AVG: 9247.569 MiB/s 86 | Starting test on 2 cores 87 | Waiting for tests to finish 88 | MEMCPY Total AVG: 7810.250 MiB/s 89 | DUMB Total AVG: 5312.126 MiB/s 90 | MCBLOCK Total AVG: 9136.966 MiB/s 91 | Starting test on 2 cores 92 | Waiting for tests to finish 93 | MEMCPY Total AVG: 7827.706 MiB/s 94 | DUMB Total AVG: 5317.318 MiB/s 95 | MCBLOCK Total AVG: 9275.301 MiB/s 96 | Starting test on 2 cores 97 | Waiting for tests to finish 98 | MEMCPY Total AVG: 7756.730 MiB/s 99 | DUMB Total AVG: 5355.990 MiB/s 100 | MCBLOCK Total AVG: 9290.067 MiB/s 101 | Starting test on 2 cores 102 | Waiting for tests to finish 103 | MEMCPY Total AVG: 7836.073 MiB/s 104 | DUMB Total AVG: 5270.863 MiB/s 105 | MCBLOCK Total AVG: 8949.883 MiB/s 106 | Starting test on 2 cores 107 | Waiting for tests to finish 108 | MEMCPY Total AVG: 7830.779 MiB/s 109 | DUMB Total AVG: 5382.094 MiB/s 110 | MCBLOCK Total AVG: 9194.956 MiB/s 111 | Starting test on 2 cores 112 | Waiting for tests to finish 113 | MEMCPY Total AVG: 7804.792 MiB/s 114 | DUMB Total AVG: 5267.248 MiB/s 115 | MCBLOCK Total AVG: 9224.445 MiB/s 116 | Starting test on 2 cores 117 | Waiting for tests to finish 118 | MEMCPY Total AVG: 7816.603 MiB/s 119 | DUMB Total AVG: 5357.746 MiB/s 120 | MCBLOCK Total AVG: 9279.343 MiB/s 121 | Starting test on 2 cores 122 | Waiting for tests to finish 123 | MEMCPY Total AVG: 7860.134 MiB/s 124 | DUMB Total AVG: 5320.331 MiB/s 125 | MCBLOCK Total AVG: 9167.293 MiB/s 126 | Starting test on 2 cores 127 | Waiting for tests to finish 128 | MEMCPY Total AVG: 7828.351 MiB/s 129 | DUMB Total AVG: 5340.126 MiB/s 130 | MCBLOCK Total AVG: 9257.607 MiB/s 131 | Starting test on 2 cores 132 | Waiting for tests to finish 133 | MEMCPY Total AVG: 7743.143 MiB/s 134 | DUMB Total AVG: 5314.893 MiB/s 135 | MCBLOCK Total AVG: 8994.825 MiB/s 136 | Starting test on 2 cores 137 | Waiting for tests to finish 138 | MEMCPY Total AVG: 7791.618 MiB/s 139 | DUMB Total AVG: 5361.148 MiB/s 140 | MCBLOCK Total AVG: 9304.386 MiB/s 141 | Starting test on 2 cores 142 | Waiting for tests to finish 143 | MEMCPY Total AVG: 7351.686 MiB/s 144 | DUMB Total AVG: 5261.125 MiB/s 145 | MCBLOCK Total AVG: 9131.187 MiB/s 146 | Starting test on 2 cores 147 | Waiting for tests to finish 148 | MEMCPY Total AVG: 7820.954 MiB/s 149 | DUMB Total AVG: 5313.421 MiB/s 150 | MCBLOCK Total AVG: 9143.442 MiB/s 151 | Starting test on 2 cores 152 | Waiting for tests to finish 153 | MEMCPY Total AVG: 7694.005 MiB/s 154 | DUMB Total AVG: 5305.954 MiB/s 155 | MCBLOCK Total AVG: 9246.318 MiB/s 156 | Starting test on 2 cores 157 | Waiting for tests to finish 158 | MEMCPY Total AVG: 7811.588 MiB/s 159 | DUMB Total AVG: 5357.022 MiB/s 160 | MCBLOCK Total AVG: 9185.463 MiB/s 161 | Starting test on 2 cores 162 | Waiting for tests to finish 163 | MEMCPY Total AVG: 7804.544 MiB/s 164 | DUMB Total AVG: 5270.888 MiB/s 165 | MCBLOCK Total AVG: 9187.730 MiB/s 166 | Starting test on 2 cores 167 | Waiting for tests to finish 168 | MEMCPY Total AVG: 7744.684 MiB/s 169 | DUMB Total AVG: 5333.931 MiB/s 170 | MCBLOCK Total AVG: 9200.355 MiB/s 171 | Starting test on 2 cores 172 | Waiting for tests to finish 173 | MEMCPY Total AVG: 7789.016 MiB/s 174 | DUMB Total AVG: 5318.182 MiB/s 175 | MCBLOCK Total AVG: 9282.755 MiB/s 176 | Starting test on 2 cores 177 | Waiting for tests to finish 178 | MEMCPY Total AVG: 7841.067 MiB/s 179 | DUMB Total AVG: 5307.302 MiB/s 180 | MCBLOCK Total AVG: 9184.401 MiB/s 181 | Starting test on 2 cores 182 | Waiting for tests to finish 183 | MEMCPY Total AVG: 7752.800 MiB/s 184 | DUMB Total AVG: 5318.676 MiB/s 185 | MCBLOCK Total AVG: 9283.471 MiB/s 186 | Starting test on 2 cores 187 | Waiting for tests to finish 188 | MEMCPY Total AVG: 7767.574 MiB/s 189 | DUMB Total AVG: 5318.190 MiB/s 190 | MCBLOCK Total AVG: 9271.184 MiB/s 191 | Starting test on 2 cores 192 | Waiting for tests to finish 193 | MEMCPY Total AVG: 7841.110 MiB/s 194 | DUMB Total AVG: 5323.323 MiB/s 195 | MCBLOCK Total AVG: 8850.327 MiB/s 196 | Starting test on 2 cores 197 | Waiting for tests to finish 198 | MEMCPY Total AVG: 7685.575 MiB/s 199 | DUMB Total AVG: 5340.660 MiB/s 200 | MCBLOCK Total AVG: 9268.722 MiB/s 201 | Starting test on 2 cores 202 | Waiting for tests to finish 203 | MEMCPY Total AVG: 7833.420 MiB/s 204 | DUMB Total AVG: 5458.412 MiB/s 205 | MCBLOCK Total AVG: 9323.991 MiB/s 206 | Starting test on 2 cores 207 | Waiting for tests to finish 208 | MEMCPY Total AVG: 7819.967 MiB/s 209 | DUMB Total AVG: 5358.194 MiB/s 210 | MCBLOCK Total AVG: 9246.211 MiB/s 211 | Starting test on 2 cores 212 | Waiting for tests to finish 213 | MEMCPY Total AVG: 7836.934 MiB/s 214 | DUMB Total AVG: 5296.201 MiB/s 215 | MCBLOCK Total AVG: 9056.690 MiB/s 216 | Starting test on 2 cores 217 | Waiting for tests to finish 218 | MEMCPY Total AVG: 7808.835 MiB/s 219 | DUMB Total AVG: 5331.716 MiB/s 220 | MCBLOCK Total AVG: 9236.056 MiB/s 221 | Starting test on 2 cores 222 | Waiting for tests to finish 223 | MEMCPY Total AVG: 7860.006 MiB/s 224 | DUMB Total AVG: 5357.201 MiB/s 225 | MCBLOCK Total AVG: 9247.532 MiB/s 226 | Starting test on 2 cores 227 | Waiting for tests to finish 228 | MEMCPY Total AVG: 7817.817 MiB/s 229 | DUMB Total AVG: 5348.194 MiB/s 230 | MCBLOCK Total AVG: 9199.709 MiB/s 231 | Starting test on 2 cores 232 | Waiting for tests to finish 233 | MEMCPY Total AVG: 7822.058 MiB/s 234 | DUMB Total AVG: 5295.445 MiB/s 235 | MCBLOCK Total AVG: 9169.683 MiB/s 236 | Starting test on 2 cores 237 | Waiting for tests to finish 238 | MEMCPY Total AVG: 7855.363 MiB/s 239 | DUMB Total AVG: 5404.628 MiB/s 240 | MCBLOCK Total AVG: 9281.498 MiB/s 241 | Starting test on 2 cores 242 | Waiting for tests to finish 243 | MEMCPY Total AVG: 7838.711 MiB/s 244 | DUMB Total AVG: 5333.895 MiB/s 245 | MCBLOCK Total AVG: 9230.610 MiB/s 246 | Starting test on 2 cores 247 | Waiting for tests to finish 248 | MEMCPY Total AVG: 7833.591 MiB/s 249 | DUMB Total AVG: 5359.628 MiB/s 250 | MCBLOCK Total AVG: 9227.513 MiB/s 251 | Starting test on 2 cores 252 | Waiting for tests to finish 253 | MEMCPY Total AVG: 7778.644 MiB/s 254 | DUMB Total AVG: 5307.716 MiB/s 255 | MCBLOCK Total AVG: 9232.393 MiB/s 256 | Starting test on 2 cores 257 | Waiting for tests to finish 258 | MEMCPY Total AVG: 7743.183 MiB/s 259 | DUMB Total AVG: 5317.895 MiB/s 260 | MCBLOCK Total AVG: 9219.735 MiB/s 261 | Starting test on 2 cores 262 | Waiting for tests to finish 263 | MEMCPY Total AVG: 7824.041 MiB/s 264 | DUMB Total AVG: 5309.906 MiB/s 265 | MCBLOCK Total AVG: 9244.073 MiB/s 266 | Starting test on 2 cores 267 | Waiting for tests to finish 268 | MEMCPY Total AVG: 7812.877 MiB/s 269 | DUMB Total AVG: 5362.502 MiB/s 270 | MCBLOCK Total AVG: 9167.892 MiB/s 271 | Starting test on 2 cores 272 | Waiting for tests to finish 273 | MEMCPY Total AVG: 7703.489 MiB/s 274 | DUMB Total AVG: 5334.468 MiB/s 275 | MCBLOCK Total AVG: 9207.057 MiB/s 276 | Starting test on 2 cores 277 | Waiting for tests to finish 278 | MEMCPY Total AVG: 7846.403 MiB/s 279 | DUMB Total AVG: 5323.813 MiB/s 280 | MCBLOCK Total AVG: 9265.042 MiB/s 281 | Starting test on 2 cores 282 | Waiting for tests to finish 283 | MEMCPY Total AVG: 7772.117 MiB/s 284 | DUMB Total AVG: 5356.845 MiB/s 285 | MCBLOCK Total AVG: 9241.721 MiB/s 286 | Starting test on 2 cores 287 | Waiting for tests to finish 288 | MEMCPY Total AVG: 7570.346 MiB/s 289 | DUMB Total AVG: 5264.113 MiB/s 290 | MCBLOCK Total AVG: 9250.981 MiB/s 291 | Starting test on 2 cores 292 | Waiting for tests to finish 293 | MEMCPY Total AVG: 7851.558 MiB/s 294 | DUMB Total AVG: 5333.782 MiB/s 295 | MCBLOCK Total AVG: 9151.848 MiB/s 296 | Starting test on 2 cores 297 | Waiting for tests to finish 298 | MEMCPY Total AVG: 7848.160 MiB/s 299 | DUMB Total AVG: 5340.901 MiB/s 300 | MCBLOCK Total AVG: 9175.120 MiB/s 301 | Starting test on 2 cores 302 | Waiting for tests to finish 303 | MEMCPY Total AVG: 7740.666 MiB/s 304 | DUMB Total AVG: 5328.337 MiB/s 305 | MCBLOCK Total AVG: 9223.494 MiB/s 306 | Starting test on 2 cores 307 | Waiting for tests to finish 308 | MEMCPY Total AVG: 7682.277 MiB/s 309 | DUMB Total AVG: 5360.580 MiB/s 310 | MCBLOCK Total AVG: 9181.390 MiB/s 311 | Starting test on 2 cores 312 | Waiting for tests to finish 313 | MEMCPY Total AVG: 7793.453 MiB/s 314 | DUMB Total AVG: 5384.213 MiB/s 315 | MCBLOCK Total AVG: 9279.471 MiB/s 316 | Starting test on 2 cores 317 | Waiting for tests to finish 318 | MEMCPY Total AVG: 7860.335 MiB/s 319 | DUMB Total AVG: 5319.976 MiB/s 320 | MCBLOCK Total AVG: 9315.884 MiB/s 321 | Starting test on 2 cores 322 | Waiting for tests to finish 323 | MEMCPY Total AVG: 7842.086 MiB/s 324 | DUMB Total AVG: 5328.167 MiB/s 325 | MCBLOCK Total AVG: 9047.851 MiB/s 326 | Starting test on 2 cores 327 | Waiting for tests to finish 328 | MEMCPY Total AVG: 7793.886 MiB/s 329 | DUMB Total AVG: 5325.629 MiB/s 330 | MCBLOCK Total AVG: 9303.019 MiB/s 331 | Starting test on 2 cores 332 | Waiting for tests to finish 333 | MEMCPY Total AVG: 7785.860 MiB/s 334 | DUMB Total AVG: 5329.580 MiB/s 335 | MCBLOCK Total AVG: 9173.447 MiB/s 336 | Starting test on 2 cores 337 | Waiting for tests to finish 338 | MEMCPY Total AVG: 7766.778 MiB/s 339 | DUMB Total AVG: 5327.935 MiB/s 340 | MCBLOCK Total AVG: 9194.594 MiB/s 341 | Starting test on 2 cores 342 | Waiting for tests to finish 343 | MEMCPY Total AVG: 7669.190 MiB/s 344 | DUMB Total AVG: 5269.840 MiB/s 345 | MCBLOCK Total AVG: 8913.140 MiB/s 346 | Starting test on 2 cores 347 | Waiting for tests to finish 348 | MEMCPY Total AVG: 7714.656 MiB/s 349 | DUMB Total AVG: 5317.829 MiB/s 350 | MCBLOCK Total AVG: 9070.155 MiB/s 351 | Starting test on 2 cores 352 | Waiting for tests to finish 353 | MEMCPY Total AVG: 7777.789 MiB/s 354 | DUMB Total AVG: 5387.081 MiB/s 355 | MCBLOCK Total AVG: 9138.080 MiB/s 356 | Starting test on 2 cores 357 | Waiting for tests to finish 358 | MEMCPY Total AVG: 7744.919 MiB/s 359 | DUMB Total AVG: 5306.788 MiB/s 360 | MCBLOCK Total AVG: 9214.183 MiB/s 361 | Starting test on 2 cores 362 | Waiting for tests to finish 363 | MEMCPY Total AVG: 7771.835 MiB/s 364 | DUMB Total AVG: 5297.894 MiB/s 365 | MCBLOCK Total AVG: 9085.156 MiB/s 366 | Starting test on 2 cores 367 | Waiting for tests to finish 368 | MEMCPY Total AVG: 7650.489 MiB/s 369 | DUMB Total AVG: 5293.595 MiB/s 370 | MCBLOCK Total AVG: 8928.073 MiB/s 371 | Starting test on 2 cores 372 | Waiting for tests to finish 373 | MEMCPY Total AVG: 7776.995 MiB/s 374 | DUMB Total AVG: 5306.564 MiB/s 375 | MCBLOCK Total AVG: 9170.177 MiB/s 376 | Starting test on 2 cores 377 | Waiting for tests to finish 378 | MEMCPY Total AVG: 7748.907 MiB/s 379 | DUMB Total AVG: 5199.286 MiB/s 380 | MCBLOCK Total AVG: 8854.091 MiB/s 381 | Starting test on 2 cores 382 | Waiting for tests to finish 383 | MEMCPY Total AVG: 7749.123 MiB/s 384 | DUMB Total AVG: 5282.146 MiB/s 385 | MCBLOCK Total AVG: 9073.299 MiB/s 386 | Starting test on 2 cores 387 | Waiting for tests to finish 388 | MEMCPY Total AVG: 7778.459 MiB/s 389 | DUMB Total AVG: 5282.530 MiB/s 390 | MCBLOCK Total AVG: 9143.990 MiB/s 391 | Starting test on 2 cores 392 | Waiting for tests to finish 393 | MEMCPY Total AVG: 7778.640 MiB/s 394 | DUMB Total AVG: 5262.889 MiB/s 395 | MCBLOCK Total AVG: 9187.808 MiB/s 396 | Starting test on 2 cores 397 | Waiting for tests to finish 398 | MEMCPY Total AVG: 7669.712 MiB/s 399 | DUMB Total AVG: 5233.267 MiB/s 400 | MCBLOCK Total AVG: 8907.809 MiB/s 401 | Starting test on 2 cores 402 | Waiting for tests to finish 403 | MEMCPY Total AVG: 7827.960 MiB/s 404 | DUMB Total AVG: 5290.269 MiB/s 405 | MCBLOCK Total AVG: 9189.622 MiB/s 406 | Starting test on 2 cores 407 | Waiting for tests to finish 408 | MEMCPY Total AVG: 7774.945 MiB/s 409 | DUMB Total AVG: 5260.990 MiB/s 410 | MCBLOCK Total AVG: 9114.415 MiB/s 411 | Starting test on 2 cores 412 | Waiting for tests to finish 413 | MEMCPY Total AVG: 7728.578 MiB/s 414 | DUMB Total AVG: 5278.896 MiB/s 415 | MCBLOCK Total AVG: 9042.757 MiB/s 416 | Starting test on 2 cores 417 | Waiting for tests to finish 418 | MEMCPY Total AVG: 7701.407 MiB/s 419 | DUMB Total AVG: 5406.985 MiB/s 420 | MCBLOCK Total AVG: 9077.520 MiB/s 421 | Starting test on 2 cores 422 | Waiting for tests to finish 423 | MEMCPY Total AVG: 7771.277 MiB/s 424 | DUMB Total AVG: 5319.909 MiB/s 425 | MCBLOCK Total AVG: 9118.761 MiB/s 426 | Starting test on 2 cores 427 | Waiting for tests to finish 428 | MEMCPY Total AVG: 7860.039 MiB/s 429 | DUMB Total AVG: 5361.595 MiB/s 430 | MCBLOCK Total AVG: 9022.361 MiB/s 431 | Starting test on 2 cores 432 | Waiting for tests to finish 433 | MEMCPY Total AVG: 7720.292 MiB/s 434 | DUMB Total AVG: 5217.159 MiB/s 435 | MCBLOCK Total AVG: 8730.239 MiB/s 436 | Starting test on 2 cores 437 | Waiting for tests to finish 438 | MEMCPY Total AVG: 7746.105 MiB/s 439 | DUMB Total AVG: 5297.389 MiB/s 440 | MCBLOCK Total AVG: 9082.381 MiB/s 441 | Starting test on 2 cores 442 | Waiting for tests to finish 443 | MEMCPY Total AVG: 7792.103 MiB/s 444 | DUMB Total AVG: 5321.523 MiB/s 445 | MCBLOCK Total AVG: 9070.293 MiB/s 446 | Starting test on 2 cores 447 | Waiting for tests to finish 448 | MEMCPY Total AVG: 7679.567 MiB/s 449 | DUMB Total AVG: 5254.149 MiB/s 450 | MCBLOCK Total AVG: 9169.652 MiB/s 451 | Starting test on 2 cores 452 | Waiting for tests to finish 453 | MEMCPY Total AVG: 7684.997 MiB/s 454 | DUMB Total AVG: 5209.949 MiB/s 455 | MCBLOCK Total AVG: 8951.386 MiB/s 456 | Starting test on 2 cores 457 | Waiting for tests to finish 458 | MEMCPY Total AVG: 7555.116 MiB/s 459 | DUMB Total AVG: 5222.975 MiB/s 460 | MCBLOCK Total AVG: 8948.299 MiB/s 461 | Starting test on 2 cores 462 | Waiting for tests to finish 463 | MEMCPY Total AVG: 7601.165 MiB/s 464 | DUMB Total AVG: 5231.754 MiB/s 465 | MCBLOCK Total AVG: 9148.587 MiB/s 466 | Starting test on 2 cores 467 | Waiting for tests to finish 468 | MEMCPY Total AVG: 7696.272 MiB/s 469 | DUMB Total AVG: 4936.831 MiB/s 470 | MCBLOCK Total AVG: 8697.727 MiB/s 471 | Starting test on 2 cores 472 | Waiting for tests to finish 473 | MEMCPY Total AVG: 7657.542 MiB/s 474 | DUMB Total AVG: 5279.938 MiB/s 475 | MCBLOCK Total AVG: 9020.667 MiB/s 476 | Starting test on 2 cores 477 | Waiting for tests to finish 478 | MEMCPY Total AVG: 7748.558 MiB/s 479 | DUMB Total AVG: 5306.105 MiB/s 480 | MCBLOCK Total AVG: 8991.956 MiB/s 481 | Starting test on 2 cores 482 | Waiting for tests to finish 483 | MEMCPY Total AVG: 7633.569 MiB/s 484 | DUMB Total AVG: 5221.956 MiB/s 485 | MCBLOCK Total AVG: 8970.312 MiB/s 486 | Starting test on 2 cores 487 | Waiting for tests to finish 488 | MEMCPY Total AVG: 7694.685 MiB/s 489 | DUMB Total AVG: 5247.112 MiB/s 490 | MCBLOCK Total AVG: 9117.202 MiB/s 491 | Starting test on 2 cores 492 | Waiting for tests to finish 493 | MEMCPY Total AVG: 7787.700 MiB/s 494 | DUMB Total AVG: 5297.416 MiB/s 495 | MCBLOCK Total AVG: 9125.646 MiB/s 496 | Starting test on 2 cores 497 | Waiting for tests to finish 498 | MEMCPY Total AVG: 7730.412 MiB/s 499 | DUMB Total AVG: 5249.601 MiB/s 500 | MCBLOCK Total AVG: 9111.754 MiB/s 501 | -------------------------------------------------------------------------------- /raw-results/control-bench_mbw-results_DUMB.csv: -------------------------------------------------------------------------------- 1 | 5266.766 2 | 5361.637 3 | 5209.994 4 | 5269.672 5 | 5344.419 6 | 5301.198 7 | 5278.742 8 | 5333.181 9 | 5333.269 10 | 5309.058 11 | 5293.428 12 | 5377.595 13 | 5335.915 14 | 5362.306 15 | 5311.259 16 | 5440.887 17 | 5349.805 18 | 5312.126 19 | 5317.318 20 | 5355.990 21 | 5270.863 22 | 5382.094 23 | 5267.248 24 | 5357.746 25 | 5320.331 26 | 5340.126 27 | 5314.893 28 | 5361.148 29 | 5261.125 30 | 5313.421 31 | 5305.954 32 | 5357.022 33 | 5270.888 34 | 5333.931 35 | 5318.182 36 | 5307.302 37 | 5318.676 38 | 5318.190 39 | 5323.323 40 | 5340.660 41 | 5458.412 42 | 5358.194 43 | 5296.201 44 | 5331.716 45 | 5357.201 46 | 5348.194 47 | 5295.445 48 | 5404.628 49 | 5333.895 50 | 5359.628 51 | 5307.716 52 | 5317.895 53 | 5309.906 54 | 5362.502 55 | 5334.468 56 | 5323.813 57 | 5356.845 58 | 5264.113 59 | 5333.782 60 | 5340.901 61 | 5328.337 62 | 5360.580 63 | 5384.213 64 | 5319.976 65 | 5328.167 66 | 5325.629 67 | 5329.580 68 | 5327.935 69 | 5269.840 70 | 5317.829 71 | 5387.081 72 | 5306.788 73 | 5297.894 74 | 5293.595 75 | 5306.564 76 | 5199.286 77 | 5282.146 78 | 5282.530 79 | 5262.889 80 | 5233.267 81 | 5290.269 82 | 5260.990 83 | 5278.896 84 | 5406.985 85 | 5319.909 86 | 5361.595 87 | 5217.159 88 | 5297.389 89 | 5321.523 90 | 5254.149 91 | 5209.949 92 | 5222.975 93 | 5231.754 94 | 4936.831 95 | 5279.938 96 | 5306.105 97 | 5221.956 98 | 5247.112 99 | 5297.416 100 | 5249.601 101 | -------------------------------------------------------------------------------- /raw-results/control-bench_mbw-results_MCBLOCK.csv: -------------------------------------------------------------------------------- 1 | 9094.090 2 | 8978.540 3 | 9124.015 4 | 9171.261 5 | 9211.623 6 | 9126.706 7 | 9095.446 8 | 9190.417 9 | 9136.391 10 | 8968.708 11 | 9118.988 12 | 9185.056 13 | 9091.284 14 | 9027.622 15 | 9161.986 16 | 9259.771 17 | 9247.569 18 | 9136.966 19 | 9275.301 20 | 9290.067 21 | 8949.883 22 | 9194.956 23 | 9224.445 24 | 9279.343 25 | 9167.293 26 | 9257.607 27 | 8994.825 28 | 9304.386 29 | 9131.187 30 | 9143.442 31 | 9246.318 32 | 9185.463 33 | 9187.730 34 | 9200.355 35 | 9282.755 36 | 9184.401 37 | 9283.471 38 | 9271.184 39 | 8850.327 40 | 9268.722 41 | 9323.991 42 | 9246.211 43 | 9056.690 44 | 9236.056 45 | 9247.532 46 | 9199.709 47 | 9169.683 48 | 9281.498 49 | 9230.610 50 | 9227.513 51 | 9232.393 52 | 9219.735 53 | 9244.073 54 | 9167.892 55 | 9207.057 56 | 9265.042 57 | 9241.721 58 | 9250.981 59 | 9151.848 60 | 9175.120 61 | 9223.494 62 | 9181.390 63 | 9279.471 64 | 9315.884 65 | 9047.851 66 | 9303.019 67 | 9173.447 68 | 9194.594 69 | 8913.140 70 | 9070.155 71 | 9138.080 72 | 9214.183 73 | 9085.156 74 | 8928.073 75 | 9170.177 76 | 8854.091 77 | 9073.299 78 | 9143.990 79 | 9187.808 80 | 8907.809 81 | 9189.622 82 | 9114.415 83 | 9042.757 84 | 9077.520 85 | 9118.761 86 | 9022.361 87 | 8730.239 88 | 9082.381 89 | 9070.293 90 | 9169.652 91 | 8951.386 92 | 8948.299 93 | 9148.587 94 | 8697.727 95 | 9020.667 96 | 8991.956 97 | 8970.312 98 | 9117.202 99 | 9125.646 100 | 9111.754 101 | -------------------------------------------------------------------------------- /raw-results/control-bench_mbw-results_MEMCPY.csv: -------------------------------------------------------------------------------- 1 | 7781.474 2 | 7639.208 3 | 7654.967 4 | 7773.114 5 | 7795.344 6 | 7725.780 7 | 7589.061 8 | 7719.013 9 | 7789.099 10 | 7753.113 11 | 7719.439 12 | 7765.544 13 | 7832.196 14 | 7800.144 15 | 7772.817 16 | 7833.239 17 | 7843.197 18 | 7810.250 19 | 7827.706 20 | 7756.730 21 | 7836.073 22 | 7830.779 23 | 7804.792 24 | 7816.603 25 | 7860.134 26 | 7828.351 27 | 7743.143 28 | 7791.618 29 | 7351.686 30 | 7820.954 31 | 7694.005 32 | 7811.588 33 | 7804.544 34 | 7744.684 35 | 7789.016 36 | 7841.067 37 | 7752.800 38 | 7767.574 39 | 7841.110 40 | 7685.575 41 | 7833.420 42 | 7819.967 43 | 7836.934 44 | 7808.835 45 | 7860.006 46 | 7817.817 47 | 7822.058 48 | 7855.363 49 | 7838.711 50 | 7833.591 51 | 7778.644 52 | 7743.183 53 | 7824.041 54 | 7812.877 55 | 7703.489 56 | 7846.403 57 | 7772.117 58 | 7570.346 59 | 7851.558 60 | 7848.160 61 | 7740.666 62 | 7682.277 63 | 7793.453 64 | 7860.335 65 | 7842.086 66 | 7793.886 67 | 7785.860 68 | 7766.778 69 | 7669.190 70 | 7714.656 71 | 7777.789 72 | 7744.919 73 | 7771.835 74 | 7650.489 75 | 7776.995 76 | 7748.907 77 | 7749.123 78 | 7778.459 79 | 7778.640 80 | 7669.712 81 | 7827.960 82 | 7774.945 83 | 7728.578 84 | 7701.407 85 | 7771.277 86 | 7860.039 87 | 7720.292 88 | 7746.105 89 | 7792.103 90 | 7679.567 91 | 7684.997 92 | 7555.116 93 | 7601.165 94 | 7696.272 95 | 7657.542 96 | 7748.558 97 | 7633.569 98 | 7694.685 99 | 7787.700 100 | 7730.412 101 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 7989,279,7709,0,18,174 3 | 7989,282,7707,0,19,175 4 | 7989,282,7706,0,19,175 5 | 7989,282,7706,0,19,175 6 | 7989,283,7706,0,19,175 7 | 7989,262,7726,0,0,175 8 | 7989,818,7171,0,10,592 9 | 7989,1214,6775,0,10,679 10 | 7989,1385,6603,0,10,777 11 | 7989,1676,6313,0,10,997 12 | 7989,1681,6308,0,11,1000 13 | 7989,1684,6305,0,11,1001 14 | 7989,1686,6302,0,11,1002 15 | 7989,1247,6742,0,11,766 16 | 7989,1429,6559,0,11,872 17 | 7989,1720,6269,0,11,1092 18 | 7989,1721,6268,0,11,1093 19 | 7989,1722,6267,0,11,1094 20 | 7989,1724,6264,0,11,1096 21 | 7989,1343,6646,0,11,859 22 | 7989,1567,6421,0,11,986 23 | 7989,1813,6175,0,11,1181 24 | 7989,1815,6174,0,11,1182 25 | 7989,1815,6174,0,11,1182 26 | 7989,1818,6171,0,11,1183 27 | 7989,1432,6556,0,11,947 28 | 7989,1693,6296,0,11,1097 29 | 7989,1906,6083,0,11,1274 30 | 7989,1908,6081,0,11,1275 31 | 7989,1908,6081,0,11,1276 32 | 7989,1910,6079,0,11,1277 33 | 7989,1530,6459,0,11,1048 34 | 7989,1849,6140,0,11,1234 35 | 7989,1996,5993,0,11,1368 36 | 7989,1998,5991,0,11,1368 37 | 7989,1999,5990,0,11,1369 38 | 7989,1999,5989,0,11,1370 39 | 7989,1621,6367,0,11,1141 40 | 7989,1961,6028,0,11,1351 41 | 7989,2085,5903,0,11,1459 42 | 7989,2089,5899,0,11,1460 43 | 7989,2090,5899,0,11,1460 44 | 7989,2090,5898,0,11,1461 45 | 7989,1713,6276,0,11,1232 46 | 7989,2101,5887,0,11,1494 47 | 7989,2172,5817,0,11,1551 48 | 7989,2173,5816,0,11,1552 49 | 7989,2174,5815,0,11,1553 50 | 7989,2174,5814,0,11,1554 51 | 7989,1799,6190,0,11,1324 52 | 7989,2206,5782,0,11,1599 53 | 7989,2267,5722,0,11,1645 54 | 7989,2268,5721,0,11,1645 55 | 7989,2266,5723,0,11,1646 56 | 7989,2266,5722,0,11,1647 57 | 7989,1888,6101,0,11,1418 58 | 7989,2295,5694,0,11,1692 59 | 7989,2353,5636,0,11,1737 60 | 7989,2357,5631,0,11,1737 61 | 7989,2360,5629,0,11,1738 62 | 7989,2360,5628,0,11,1739 63 | 7989,1979,6010,0,11,1510 64 | 7989,2396,5592,0,11,1795 65 | 7989,2446,5542,0,11,1828 66 | 7989,2447,5542,0,11,1828 67 | 7989,2447,5541,0,11,1829 68 | 7989,2449,5540,0,11,1830 69 | 7989,2064,5924,0,11,1601 70 | 7989,2524,5465,0,11,1911 71 | 7989,2526,5463,0,11,1911 72 | 7989,2526,5463,0,11,1911 73 | 7989,2528,5461,0,11,1911 74 | 7989,2059,5929,0,11,1627 75 | 7989,2171,5818,0,11,1688 76 | 7989,2525,5463,0,11,1911 77 | 7989,2526,5462,0,11,1911 78 | 7989,2526,5463,0,11,1911 79 | 7989,2527,5462,0,11,1911 80 | 7989,2135,5853,0,11,1669 81 | 7989,2220,5769,0,11,1712 82 | 7989,2522,5467,0,11,1911 83 | 7989,2525,5464,0,11,1911 84 | 7989,2525,5464,0,11,1911 85 | 7989,2524,5464,0,11,1911 86 | 7989,2137,5852,0,11,1669 87 | 7989,2284,5705,0,11,1744 88 | 7989,2525,5463,0,11,1911 89 | 7989,2527,5462,0,11,1911 90 | 7989,2527,5462,0,11,1911 91 | 7989,2528,5461,0,11,1911 92 | 7989,2146,5843,0,11,1676 93 | 7989,2379,5610,0,11,1791 94 | 7989,2527,5462,0,11,1911 95 | 7989,2527,5461,0,11,1911 96 | 7989,2530,5459,0,11,1911 97 | 7989,2530,5459,0,11,1911 98 | 7989,2142,5847,0,11,1676 99 | 7989,2416,5573,0,11,1815 100 | 7989,2526,5463,0,11,1911 101 | 7989,2526,5462,0,11,1911 102 | 7989,2526,5463,0,11,1911 103 | 7989,2527,5462,0,11,1911 104 | 7989,2142,5847,0,11,1676 105 | 7989,2438,5550,0,11,1839 106 | 7989,2523,5465,0,11,1911 107 | 7989,2524,5464,0,11,1911 108 | 7989,2524,5464,0,11,1911 109 | 7989,2526,5463,0,11,1911 110 | 7989,2141,5848,0,11,1676 111 | 7989,2481,5508,0,11,1879 112 | 7989,2528,5461,0,11,1911 113 | 7989,2527,5461,0,11,1911 114 | 7989,2527,5461,0,11,1911 115 | 7989,2529,5459,0,11,1911 116 | 7989,2146,5843,0,11,1676 117 | 7989,2520,5469,0,11,1911 118 | 7989,2526,5463,0,11,1911 119 | 7989,2526,5462,0,11,1911 120 | 7989,2528,5461,0,11,1911 121 | 7989,2047,5942,0,11,1615 122 | 7989,2143,5846,0,11,1676 123 | 7989,2526,5463,0,11,1911 124 | 7989,2528,5461,0,11,1911 125 | 7989,2528,5461,0,11,1911 126 | 7989,2527,5461,0,11,1911 127 | 7989,2136,5853,0,11,1669 128 | 7989,2198,5791,0,11,1704 129 | 7989,2526,5462,0,11,1911 130 | 7989,2527,5461,0,11,1911 131 | 7989,2527,5461,0,11,1911 132 | 7989,2528,5461,0,11,1911 133 | 7989,2137,5852,0,11,1669 134 | 7989,2283,5705,0,11,1744 135 | 7989,2522,5466,0,11,1911 136 | 7989,2523,5466,0,11,1911 137 | 7989,2524,5465,0,11,1911 138 | 7989,2524,5464,0,11,1911 139 | 7989,2141,5848,0,11,1669 140 | 7989,2332,5657,0,11,1767 141 | 7989,2528,5460,0,11,1911 142 | 7989,2529,5460,0,11,1911 143 | 7989,2530,5458,0,11,1911 144 | 7989,2530,5459,0,11,1911 145 | 7989,2147,5841,0,11,1676 146 | 7989,2396,5593,0,11,1799 147 | 7989,2527,5462,0,11,1911 148 | 7989,2527,5462,0,11,1911 149 | 7989,2527,5461,0,11,1911 150 | 7989,2527,5461,0,11,1911 151 | 7989,2145,5844,0,11,1676 152 | 7989,2435,5553,0,11,1831 153 | 7989,2530,5459,0,11,1911 154 | 7989,2529,5460,0,11,1911 155 | 7989,2530,5458,0,11,1911 156 | 7989,2530,5458,0,11,1911 157 | 7989,2146,5843,0,11,1676 158 | 7989,2475,5514,0,11,1871 159 | 7989,2529,5459,0,11,1911 160 | 7989,2529,5460,0,11,1911 161 | 7989,2531,5458,0,11,1911 162 | 7989,2531,5458,0,11,1911 163 | 7989,2143,5845,0,11,1676 164 | 7989,2513,5476,0,11,1911 165 | 7989,2527,5462,0,11,1911 166 | 7989,2527,5462,0,11,1911 167 | 7989,2531,5458,0,11,1911 168 | 7989,2531,5458,0,11,1911 169 | 7989,2146,5843,0,11,1676 170 | 7989,2529,5460,0,11,1911 171 | 7989,2530,5459,0,11,1911 172 | 7989,2530,5458,0,11,1911 173 | 7989,2532,5457,0,11,1911 174 | 7989,2055,5934,0,11,1624 175 | 7989,2157,5832,0,11,1680 176 | 7989,2527,5462,0,11,1911 177 | 7989,2527,5462,0,11,1911 178 | 7989,2527,5461,0,11,1911 179 | 7989,2528,5461,0,11,1911 180 | 7989,2136,5853,0,11,1669 181 | 7989,2215,5774,0,11,1712 182 | 7989,2524,5464,0,11,1911 183 | 7989,2526,5462,0,11,1911 184 | 7989,2527,5462,0,11,1911 185 | 7989,2528,5460,0,11,1911 186 | 7989,2140,5849,0,11,1669 187 | 7989,2304,5684,0,11,1751 188 | 7989,2527,5461,0,11,1911 189 | 7989,2528,5461,0,11,1911 190 | 7989,2528,5460,0,11,1911 191 | 7989,2528,5461,0,11,1911 192 | 7989,2149,5840,0,11,1676 193 | 7989,2385,5604,0,11,1791 194 | 7989,2526,5462,0,11,1911 195 | 7989,2531,5457,0,11,1911 196 | 7989,2531,5458,0,11,1911 197 | 7989,2533,5456,0,11,1911 198 | 7989,2107,5882,0,11,1676 199 | 7989,2409,5580,0,11,1807 200 | 7989,2527,5462,0,11,1911 201 | 7989,2527,5462,0,11,1911 202 | 7989,2528,5461,0,11,1911 203 | 7989,2528,5461,0,11,1911 204 | 7989,2144,5845,0,11,1676 205 | 7989,2457,5531,0,11,1855 206 | 7989,2527,5462,0,11,1911 207 | 7989,2527,5462,0,11,1911 208 | 7989,2527,5461,0,11,1911 209 | 7989,2528,5461,0,11,1911 210 | 7989,2145,5843,0,11,1676 211 | 7989,2507,5482,0,11,1903 212 | 7989,2529,5459,0,11,1911 213 | 7989,2529,5460,0,11,1911 214 | 7989,2529,5460,0,11,1911 215 | 7989,2530,5459,0,11,1911 216 | 7989,2148,5841,0,11,1676 217 | 7989,2526,5462,0,11,1912 218 | 7989,2530,5458,0,11,1912 219 | 7989,2531,5457,0,11,1912 220 | 7989,2532,5457,0,11,1912 221 | 7989,2119,5869,0,11,1656 222 | 7989,2194,5794,0,11,1696 223 | 7989,2529,5459,0,11,1912 224 | 7989,2531,5458,0,11,1912 225 | 7989,2530,5458,0,11,1912 226 | 7989,2531,5457,0,11,1912 227 | 7989,2140,5848,0,11,1669 228 | 7989,2255,5734,0,11,1728 229 | 7989,2528,5461,0,11,1912 230 | 7989,2528,5461,0,11,1912 231 | 7989,2528,5461,0,11,1912 232 | 7989,2529,5459,0,11,1912 233 | 7989,2140,5849,0,11,1669 234 | 7989,2317,5672,0,11,1760 235 | 7989,2530,5459,0,11,1912 236 | 7989,2532,5457,0,11,1912 237 | 7989,2532,5457,0,11,1912 238 | 7989,2531,5457,0,11,1912 239 | 7989,2146,5842,0,11,1676 240 | 7989,2388,5601,0,11,1799 241 | 7989,2526,5463,0,11,1912 242 | 7989,2527,5462,0,11,1912 243 | 7989,2527,5462,0,11,1912 244 | 7989,2528,5460,0,11,1912 245 | 7989,2148,5841,0,11,1676 246 | 7989,2419,5570,0,11,1815 247 | 7989,2528,5461,0,11,1912 248 | 7989,2533,5456,0,11,1912 249 | 7989,2533,5455,0,11,1912 250 | 7989,2533,5455,0,11,1912 251 | 7989,2146,5843,0,11,1676 252 | 7989,2441,5548,0,11,1839 253 | 7989,2528,5461,0,11,1912 254 | 7989,2529,5460,0,11,1912 255 | 7989,2529,5460,0,11,1912 256 | 7989,2529,5460,0,11,1912 257 | 7989,2148,5841,0,11,1676 258 | 7989,2468,5520,0,11,1864 259 | 7989,2529,5460,0,11,1912 260 | 7989,2533,5456,0,11,1912 261 | 7989,2532,5457,0,11,1912 262 | 7989,2533,5455,0,11,1912 263 | 7989,2147,5842,0,11,1676 264 | 7989,2484,5505,0,11,1879 265 | 7989,2528,5460,0,11,1912 266 | 7989,2528,5461,0,11,1912 267 | 7989,2530,5459,0,11,1912 268 | 7989,2530,5459,0,11,1912 269 | 7989,2147,5841,0,11,1676 270 | 7989,2516,5472,0,11,1912 271 | 7989,2535,5454,0,11,1912 272 | 7989,2534,5454,0,11,1912 273 | 7989,2536,5453,0,11,1912 274 | 7989,2536,5453,0,11,1912 275 | 7989,2144,5845,0,11,1676 276 | 7989,2525,5464,0,11,1912 277 | 7989,2525,5464,0,11,1912 278 | 7989,2525,5464,0,11,1912 279 | 7989,2526,5463,0,11,1912 280 | 7989,2068,5921,0,11,1634 281 | 7989,2160,5828,0,11,1681 282 | 7989,2527,5462,0,11,1912 283 | 7989,2531,5458,0,11,1912 284 | 7989,2530,5458,0,11,1912 285 | 7989,2531,5458,0,11,1912 286 | 7989,2140,5849,0,11,1669 287 | 7989,2241,5747,0,11,1720 288 | 7989,2530,5458,0,11,1912 289 | 7989,2532,5457,0,11,1912 290 | 7989,2532,5457,0,11,1912 291 | 7989,2531,5457,0,11,1912 292 | 7989,2142,5847,0,11,1670 293 | 7989,2301,5688,0,11,1751 294 | 7989,2527,5462,0,11,1912 295 | 7989,2529,5460,0,11,1912 296 | 7989,2529,5460,0,11,1912 297 | 7989,2530,5458,0,11,1912 298 | 7989,2139,5850,0,11,1670 299 | 7989,2319,5670,0,11,1760 300 | 7989,2527,5462,0,11,1912 301 | 7989,2527,5462,0,11,1912 302 | 7989,2528,5461,0,11,1912 303 | 7989,2526,5462,0,11,1912 304 | 7989,2147,5842,0,11,1675 305 | 7989,2368,5621,0,11,1783 306 | 7989,2530,5458,0,11,1912 307 | 7989,2535,5454,0,11,1912 308 | 7989,2535,5453,0,11,1912 309 | 7989,2535,5454,0,11,1912 310 | 7989,2108,5881,0,11,1676 311 | 7989,2410,5579,0,11,1808 312 | 7989,2527,5461,0,11,1912 313 | 7989,2528,5461,0,11,1912 314 | 7989,2528,5461,0,11,1912 315 | 7989,2529,5460,0,11,1912 316 | 7989,2147,5842,0,11,1676 317 | 7989,2443,5545,0,11,1840 318 | 7989,2528,5461,0,11,1912 319 | 7989,2528,5461,0,11,1912 320 | 7989,2528,5461,0,11,1912 321 | 7989,2528,5461,0,11,1912 322 | 7989,2148,5841,0,11,1676 323 | 7989,2474,5514,0,11,1872 324 | 7989,2528,5461,0,11,1912 325 | 7989,2533,5456,0,11,1912 326 | 7989,2532,5457,0,11,1912 327 | 7989,2532,5457,0,11,1912 328 | 7989,2143,5846,0,11,1676 329 | 7989,2515,5474,0,11,1912 330 | 7989,2528,5461,0,11,1912 331 | 7989,2530,5459,0,11,1912 332 | 7989,2529,5459,0,11,1912 333 | 7989,2532,5457,0,11,1912 334 | 7989,2144,5845,0,11,1676 335 | 7989,2525,5464,0,11,1912 336 | 7989,2526,5463,0,11,1912 337 | 7989,2526,5463,0,11,1912 338 | 7989,2527,5461,0,11,1912 339 | 7989,2049,5939,0,11,1615 340 | 7989,2150,5839,0,11,1676 341 | 7989,2531,5457,0,11,1912 342 | 7989,2532,5456,0,11,1912 343 | 7989,2533,5456,0,11,1912 344 | 7989,2534,5455,0,11,1912 345 | 7989,2137,5852,0,11,1670 346 | 7989,2206,5783,0,11,1705 347 | 7989,2525,5463,0,11,1912 348 | 7989,2525,5463,0,11,1912 349 | 7989,2527,5462,0,11,1912 350 | 7989,2527,5462,0,11,1912 351 | 7989,2138,5850,0,11,1670 352 | 7989,2288,5701,0,11,1745 353 | 7989,2527,5461,0,11,1912 354 | 7989,2528,5461,0,11,1912 355 | 7989,2530,5459,0,11,1912 356 | 7989,2530,5459,0,11,1912 357 | 7989,2139,5849,0,11,1670 358 | 7989,2305,5684,0,11,1752 359 | 7989,2528,5461,0,11,1912 360 | 7989,2528,5461,0,11,1912 361 | 7989,2530,5459,0,11,1912 362 | 7989,2530,5459,0,11,1912 363 | 7989,2142,5847,0,11,1673 364 | 7989,2360,5629,0,11,1784 365 | 7989,2526,5463,0,11,1912 366 | 7989,2528,5461,0,11,1912 367 | 7989,2528,5461,0,11,1912 368 | 7989,2530,5459,0,11,1912 369 | 7989,2111,5877,0,11,1676 370 | 7989,2409,5580,0,11,1808 371 | 7989,2530,5458,0,11,1912 372 | 7989,2532,5457,0,11,1912 373 | 7989,2532,5457,0,11,1912 374 | 7989,2534,5455,0,11,1912 375 | 7989,2146,5843,0,11,1676 376 | 7989,2426,5562,0,11,1824 377 | 7989,2529,5460,0,11,1912 378 | 7989,2533,5456,0,11,1912 379 | 7989,2533,5456,0,11,1912 380 | 7989,2533,5456,0,11,1912 381 | 7989,2146,5843,0,11,1676 382 | 7989,2451,5538,0,11,1856 383 | 7989,2530,5459,0,11,1912 384 | 7989,2530,5459,0,11,1912 385 | 7989,2532,5456,0,11,1912 386 | 7989,2534,5454,0,11,1912 387 | 7989,2143,5845,0,11,1676 388 | 7989,2477,5511,0,11,1880 389 | 7989,2527,5461,0,11,1912 390 | 7989,2527,5462,0,11,1912 391 | 7989,2529,5460,0,11,1912 392 | 7989,2529,5460,0,11,1912 393 | 7989,2147,5841,0,11,1676 394 | 7989,2508,5481,0,11,1904 395 | 7989,2531,5457,0,11,1912 396 | 7989,2531,5457,0,11,1912 397 | 7989,2533,5456,0,11,1912 398 | 7989,2533,5456,0,11,1912 399 | 7989,2146,5843,0,11,1676 400 | 7989,2528,5460,0,11,1912 401 | 7989,2531,5458,0,11,1912 402 | 7989,2530,5459,0,11,1912 403 | 7989,2532,5457,0,11,1912 404 | 7989,2067,5922,0,11,1632 405 | 7989,2166,5823,0,11,1681 406 | 7989,2528,5461,0,11,1912 407 | 7989,2531,5458,0,11,1912 408 | 7989,2531,5458,0,11,1912 409 | 7989,2531,5457,0,11,1912 410 | 7989,2140,5848,0,11,1670 411 | 7989,2226,5763,0,11,1713 412 | 7989,2528,5460,0,11,1912 413 | 7989,2532,5457,0,11,1912 414 | 7989,2531,5457,0,11,1912 415 | 7989,2533,5456,0,11,1912 416 | 7989,2141,5848,0,11,1670 417 | 7989,2318,5671,0,11,1760 418 | 7989,2529,5460,0,11,1912 419 | 7989,2532,5457,0,11,1912 420 | 7989,2531,5458,0,11,1912 421 | 7989,2532,5456,0,11,1912 422 | 7989,2147,5842,0,11,1676 423 | 7989,2394,5595,0,11,1800 424 | 7989,2526,5462,0,11,1912 425 | 7989,2527,5462,0,11,1912 426 | 7989,2528,5461,0,11,1912 427 | 7989,2529,5460,0,11,1912 428 | 7989,2150,5839,0,11,1676 429 | 7989,2430,5559,0,11,1824 430 | 7989,2532,5456,0,11,1912 431 | 7989,2537,5452,0,11,1912 432 | 7989,2537,5452,0,11,1912 433 | 7989,2538,5450,0,11,1912 434 | 7989,2148,5841,0,11,1677 435 | 7989,2469,5520,0,11,1864 436 | 7989,2530,5459,0,11,1912 437 | 7989,2532,5457,0,11,1912 438 | 7989,2531,5458,0,11,1912 439 | 7989,2532,5457,0,11,1912 440 | 7989,2149,5840,0,11,1677 441 | 7989,2514,5475,0,11,1912 442 | 7989,2529,5459,0,11,1912 443 | 7989,2530,5459,0,11,1912 444 | 7989,2531,5458,0,11,1912 445 | 7989,2529,5459,0,11,1912 446 | 7989,2145,5843,0,11,1677 447 | 7989,2531,5458,0,11,1912 448 | 7989,2530,5459,0,11,1912 449 | 7989,2530,5458,0,11,1912 450 | 7989,2530,5459,0,11,1912 451 | 7989,2141,5848,0,11,1670 452 | 7989,2196,5793,0,11,1697 453 | 7989,2529,5460,0,11,1912 454 | 7989,2529,5459,0,11,1912 455 | 7989,2531,5458,0,11,1912 456 | 7989,2531,5458,0,11,1912 457 | 7989,2139,5849,0,11,1670 458 | 7989,2260,5729,0,11,1729 459 | 7989,2527,5462,0,11,1912 460 | 7989,2528,5461,0,11,1912 461 | 7989,2528,5461,0,11,1912 462 | 7989,2529,5460,0,11,1912 463 | 7989,2140,5848,0,11,1670 464 | 7989,2333,5656,0,11,1768 465 | 7989,2526,5463,0,11,1912 466 | 7989,2526,5463,0,11,1912 467 | 7989,2527,5461,0,11,1912 468 | 7989,2527,5461,0,11,1912 469 | 7989,2114,5875,0,11,1676 470 | 7989,2413,5576,0,11,1808 471 | 7989,2531,5458,0,11,1912 472 | 7989,2532,5457,0,11,1912 473 | 7989,2535,5454,0,11,1912 474 | 7989,2537,5452,0,11,1912 475 | 7989,2149,5840,0,11,1677 476 | 7989,2445,5544,0,11,1840 477 | 7989,2532,5457,0,11,1912 478 | 7989,2536,5453,0,11,1912 479 | 7989,2537,5451,0,11,1912 480 | 7989,2537,5452,0,11,1912 481 | 7989,2146,5843,0,11,1677 482 | 7989,2460,5529,0,11,1864 483 | 7989,2525,5464,0,11,1912 484 | 7989,2526,5463,0,11,1912 485 | 7989,2530,5459,0,11,1912 486 | 7989,2530,5459,0,11,1912 487 | 7989,2148,5841,0,11,1677 488 | 7989,2476,5513,0,11,1872 489 | 7989,2528,5460,0,11,1912 490 | 7989,2529,5460,0,11,1912 491 | 7989,2530,5459,0,11,1912 492 | 7989,2529,5459,0,11,1912 493 | 7989,2149,5839,0,11,1677 494 | 7989,2485,5504,0,11,1880 495 | 7989,2532,5457,0,11,1912 496 | 7989,2531,5457,0,11,1912 497 | 7989,2532,5456,0,11,1912 498 | 7989,2532,5456,0,11,1912 499 | 7989,2150,5839,0,11,1677 500 | 7989,2502,5487,0,11,1897 501 | 7989,2531,5458,0,11,1912 502 | 7989,2530,5458,0,11,1912 503 | 7989,2531,5457,0,11,1912 504 | 7989,2531,5457,0,11,1912 505 | 7989,2150,5839,0,11,1677 506 | 7989,2471,5517,0,11,1864 507 | 7989,2532,5456,0,11,1912 508 | 7989,2532,5457,0,11,1912 509 | 7989,2533,5456,0,11,1912 510 | 7989,2533,5456,0,11,1912 511 | 7989,2145,5843,0,11,1677 512 | 7989,2516,5473,0,11,1913 513 | 7989,2528,5460,0,11,1912 514 | 7989,2528,5460,0,11,1912 515 | 7989,2530,5458,0,11,1912 516 | 7989,2530,5458,0,11,1912 517 | 7989,2148,5841,0,11,1677 518 | 7989,2529,5459,0,11,1912 519 | 7989,2530,5458,0,11,1912 520 | 7989,2530,5458,0,11,1912 521 | 7989,2531,5458,0,11,1912 522 | 7989,2141,5847,0,11,1670 523 | 7989,2209,5780,0,11,1705 524 | 7989,2530,5459,0,11,1912 525 | 7989,2533,5456,0,11,1912 526 | 7989,2536,5452,0,11,1912 527 | 7989,2538,5451,0,11,1912 528 | 7989,2141,5848,0,11,1670 529 | 7989,2286,5703,0,11,1744 530 | 7989,2529,5460,0,11,1912 531 | 7989,2531,5458,0,11,1912 532 | 7989,2530,5458,0,11,1912 533 | 7989,2532,5457,0,11,1912 534 | 7989,2140,5848,0,11,1670 535 | 7989,2371,5617,0,11,1784 536 | 7989,2529,5459,0,11,1912 537 | 7989,2529,5459,0,11,1912 538 | 7989,2529,5459,0,11,1912 539 | 7989,2529,5459,0,11,1912 540 | 7989,2146,5842,0,11,1677 541 | 7989,2426,5563,0,11,1824 542 | 7989,2527,5461,0,11,1912 543 | 7989,2527,5462,0,11,1912 544 | 7989,2527,5461,0,11,1912 545 | 7989,2527,5461,0,11,1912 546 | 7989,2149,5840,0,11,1677 547 | 7989,2463,5526,0,11,1856 548 | 7989,2531,5457,0,11,1912 549 | 7989,2532,5457,0,11,1912 550 | 7989,2532,5457,0,11,1912 551 | 7989,2533,5455,0,11,1912 552 | 7989,2150,5838,0,11,1677 553 | 7989,2509,5480,0,11,1904 554 | 7989,2531,5457,0,11,1912 555 | 7989,2535,5454,0,11,1912 556 | 7989,2534,5454,0,11,1912 557 | 7989,2535,5454,0,11,1912 558 | 7989,2148,5841,0,11,1677 559 | 7989,2531,5458,0,11,1912 560 | 7989,2531,5458,0,11,1912 561 | 7989,2533,5456,0,11,1912 562 | 7989,2532,5456,0,11,1912 563 | 7989,2140,5849,0,11,1670 564 | 7989,2211,5777,0,11,1705 565 | 7989,2530,5459,0,11,1912 566 | 7989,2532,5457,0,11,1912 567 | 7989,2532,5457,0,11,1912 568 | 7989,2533,5456,0,11,1912 569 | 7989,2147,5841,0,11,1670 570 | 7989,2308,5680,0,11,1752 571 | 7989,2532,5457,0,11,1912 572 | 7989,2533,5456,0,11,1912 573 | 7989,2535,5454,0,11,1912 574 | 7989,2535,5454,0,11,1912 575 | 7989,2151,5838,0,11,1677 576 | 7989,2413,5576,0,11,1808 577 | 7989,2528,5461,0,11,1912 578 | 7989,2530,5459,0,11,1912 579 | 7989,2530,5459,0,11,1912 580 | 7989,2531,5458,0,11,1912 581 | 7989,2149,5840,0,11,1677 582 | 7989,2452,5536,0,11,1848 583 | 7989,2529,5460,0,11,1912 584 | 7989,2529,5460,0,11,1912 585 | 7989,2529,5459,0,11,1912 586 | 7989,2530,5459,0,11,1912 587 | 7989,2149,5840,0,11,1677 588 | 7989,2492,5496,0,11,1888 589 | 7989,2531,5458,0,11,1912 590 | 7989,2531,5458,0,11,1912 591 | 7989,2531,5458,0,11,1912 592 | 7989,2532,5457,0,11,1912 593 | 7989,2150,5839,0,11,1677 594 | 7989,2530,5459,0,11,1912 595 | 7989,2533,5456,0,11,1912 596 | 7989,2533,5455,0,11,1912 597 | 7989,2535,5454,0,11,1912 598 | 7989,2047,5942,0,11,1616 599 | 7989,2046,5942,0,11,1616 600 | 7989,2046,5943,0,11,1616 601 | 7989,2048,5941,0,11,1616 602 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql-results.csv: -------------------------------------------------------------------------------- 1 | 895.04 2 | 882.08 3 | 884.36 4 | 865.99 5 | 878.29 6 | 901.81 7 | 886.61 8 | 893.34 9 | 895.57 10 | 894.29 11 | 894.76 12 | 891.05 13 | 897.02 14 | 889.99 15 | 887.09 16 | 889.53 17 | 878.40 18 | 895.57 19 | 893.45 20 | 889.43 21 | 858.32 22 | 890.80 23 | 893.29 24 | 891.08 25 | 891.55 26 | 880.21 27 | 891.10 28 | 852.85 29 | 833.07 30 | 874.53 31 | 885.24 32 | 880.85 33 | 903.47 34 | 888.50 35 | 888.86 36 | 873.60 37 | 894.07 38 | 895.88 39 | 885.95 40 | 863.16 41 | 866.34 42 | 891.61 43 | 886.44 44 | 887.79 45 | 890.63 46 | 890.10 47 | 890.59 48 | 889.56 49 | 894.37 50 | 878.76 51 | 878.69 52 | 888.16 53 | 881.97 54 | 892.28 55 | 886.69 56 | 881.67 57 | 885.47 58 | 888.87 59 | 892.15 60 | 886.00 61 | 891.56 62 | 893.44 63 | 898.31 64 | 865.65 65 | 871.33 66 | 886.46 67 | 872.53 68 | 885.17 69 | 867.45 70 | 876.94 71 | 890.91 72 | 898.11 73 | 889.19 74 | 886.63 75 | 900.32 76 | 900.99 77 | 873.85 78 | 886.08 79 | 891.94 80 | 897.70 81 | 895.82 82 | 891.24 83 | 896.31 84 | 891.72 85 | 886.44 86 | 881.69 87 | 880.35 88 | 893.88 89 | 891.65 90 | 889.07 91 | 897.35 92 | 886.79 93 | 897.29 94 | 884.43 95 | 888.66 96 | 890.37 97 | 892.19 98 | 887.81 99 | 887.51 100 | 886.65 101 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql-results.txt: -------------------------------------------------------------------------------- 1 | for 2 | 895.04 3 | for 4 | 882.08 5 | for 6 | 884.36 7 | for 8 | 865.99 9 | for 10 | 878.29 11 | for 12 | 901.81 13 | for 14 | 886.61 15 | for 16 | 893.34 17 | for 18 | 895.57 19 | for 20 | 894.29 21 | for 22 | 894.76 23 | for 24 | 891.05 25 | for 26 | 897.02 27 | for 28 | 889.99 29 | for 30 | 887.09 31 | for 32 | 889.53 33 | for 34 | 878.40 35 | for 36 | 895.57 37 | for 38 | 893.45 39 | for 40 | 889.43 41 | for 42 | 858.32 43 | for 44 | 890.80 45 | for 46 | 893.29 47 | for 48 | 891.08 49 | for 50 | 891.55 51 | for 52 | 880.21 53 | for 54 | 891.10 55 | for 56 | 852.85 57 | for 58 | 833.07 59 | for 60 | 874.53 61 | for 62 | 885.24 63 | for 64 | 880.85 65 | for 66 | 903.47 67 | for 68 | 888.50 69 | for 70 | 888.86 71 | for 72 | 873.60 73 | for 74 | 894.07 75 | for 76 | 895.88 77 | for 78 | 885.95 79 | for 80 | 863.16 81 | for 82 | 866.34 83 | for 84 | 891.61 85 | for 86 | 886.44 87 | for 88 | 887.79 89 | for 90 | 890.63 91 | for 92 | 890.10 93 | for 94 | 890.59 95 | for 96 | 889.56 97 | for 98 | 894.37 99 | for 100 | 878.76 101 | for 102 | 878.69 103 | for 104 | 888.16 105 | for 106 | 881.97 107 | for 108 | 892.28 109 | for 110 | 886.69 111 | for 112 | 881.67 113 | for 114 | 885.47 115 | for 116 | 888.87 117 | for 118 | 892.15 119 | for 120 | 886.00 121 | for 122 | 891.56 123 | for 124 | 893.44 125 | for 126 | 898.31 127 | for 128 | 865.65 129 | for 130 | 871.33 131 | for 132 | 886.46 133 | for 134 | 872.53 135 | for 136 | 885.17 137 | for 138 | 867.45 139 | for 140 | 876.94 141 | for 142 | 890.91 143 | for 144 | 898.11 145 | for 146 | 889.19 147 | for 148 | 886.63 149 | for 150 | 900.32 151 | for 152 | 900.99 153 | for 154 | 873.85 155 | for 156 | 886.08 157 | for 158 | 891.94 159 | for 160 | 897.70 161 | for 162 | 895.82 163 | for 164 | 891.24 165 | for 166 | 896.31 167 | for 168 | 891.72 169 | for 170 | 886.44 171 | for 172 | 881.69 173 | for 174 | 880.35 175 | for 176 | 893.88 177 | for 178 | 891.65 179 | for 180 | 889.07 181 | for 182 | 897.35 183 | for 184 | 886.79 185 | for 186 | 897.29 187 | for 188 | 884.43 189 | for 190 | 888.66 191 | for 192 | 890.37 193 | for 194 | 892.19 195 | for 196 | 887.81 197 | for 198 | 887.51 199 | for 200 | 886.65 201 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql_index-cpu.csv: -------------------------------------------------------------------------------- 1 | x,user,nice,system,idle,iowait,irq,softirq,steal,guest,guest_nice 2 | cpu,189,0,361,4058,13,6,3,0,0,0 3 | cpu,192,0,362,7053,13,7,3,0,0,0 4 | cpu,192,0,363,10050,13,7,4,0,0,0 5 | cpu,193,0,364,13047,13,7,4,0,0,0 6 | cpu,193,0,365,16046,13,7,4,0,0,0 7 | cpu,195,0,369,19042,13,7,4,0,0,0 8 | cpu,1249,0,737,20500,25,35,66,0,0,0 9 | cpu,1890,0,1230,22256,94,51,79,0,0,0 10 | cpu,2452,0,1292,24595,122,57,82,0,0,0 11 | cpu,5217,0,1480,24608,126,79,91,0,0,0 12 | cpu,7972,0,1682,24616,129,103,101,0,0,0 13 | cpu,10719,0,1896,24622,129,126,112,0,0,0 14 | cpu,13472,0,2101,24628,133,150,123,0,0,0 15 | cpu,16173,0,2328,24654,144,174,137,0,0,0 16 | cpu,18764,0,2578,24730,187,199,151,0,0,0 17 | cpu,21188,0,2877,24846,297,225,169,0,0,0 18 | cpu,23546,0,3181,24984,448,250,186,0,0,0 19 | cpu,25030,0,3436,26028,625,268,201,0,0,0 20 | cpu,25927,0,3520,27988,671,276,204,0,0,0 21 | cpu,28685,0,3713,28002,675,299,214,0,0,0 22 | cpu,31443,0,3914,28010,676,322,225,0,0,0 23 | cpu,34200,0,4121,28014,677,345,236,0,0,0 24 | cpu,36944,0,4333,28021,679,369,248,0,0,0 25 | cpu,39629,0,4569,28045,697,394,262,0,0,0 26 | cpu,42194,0,4817,28131,755,419,277,0,0,0 27 | cpu,44635,0,5098,28256,858,444,293,0,0,0 28 | cpu,47009,0,5391,28382,1012,470,311,0,0,0 29 | cpu,48105,0,5605,29828,1223,484,321,0,0,0 30 | cpu,49388,0,5695,31391,1273,495,326,0,0,0 31 | cpu,52155,0,5889,31396,1275,518,336,0,0,0 32 | cpu,54923,0,6086,31399,1276,541,346,0,0,0 33 | cpu,57693,0,6283,31399,1276,565,357,0,0,0 34 | cpu,60438,0,6504,31399,1276,589,369,0,0,0 35 | cpu,63090,0,6739,31445,1304,614,384,0,0,0 36 | cpu,65627,0,7001,31538,1368,639,399,0,0,0 37 | cpu,68057,0,7277,31672,1477,664,415,0,0,0 38 | cpu,70401,0,7574,31829,1629,689,434,0,0,0 39 | cpu,71267,0,7753,33557,1829,701,442,0,0,0 40 | cpu,72873,0,7869,34795,1852,715,448,0,0,0 41 | cpu,75631,0,8066,34804,1855,738,458,0,0,0 42 | cpu,78392,0,8269,34808,1857,761,469,0,0,0 43 | cpu,81154,0,8472,34809,1858,784,481,0,0,0 44 | cpu,83911,0,8677,34813,1858,808,493,0,0,0 45 | cpu,86546,0,8912,34871,1891,833,507,0,0,0 46 | cpu,89046,0,9175,34978,1976,858,523,0,0,0 47 | cpu,91428,0,9473,35119,2106,883,541,0,0,0 48 | cpu,93760,0,9787,35259,2265,909,560,0,0,0 49 | cpu,94029,0,9889,37764,2375,915,564,0,0,0 50 | cpu,96354,0,10058,38217,2402,934,572,0,0,0 51 | cpu,99117,0,10256,38223,2404,957,582,0,0,0 52 | cpu,101873,0,10461,38228,2406,981,594,0,0,0 53 | cpu,104622,0,10671,38234,2407,1004,605,0,0,0 54 | cpu,107351,0,10891,38243,2412,1029,618,0,0,0 55 | cpu,109959,0,11139,38295,2462,1054,633,0,0,0 56 | cpu,112438,0,11424,38399,2549,1079,649,0,0,0 57 | cpu,114819,0,11731,38542,2667,1105,667,0,0,0 58 | cpu,116841,0,12050,38903,2914,1130,685,0,0,0 59 | cpu,116977,0,12087,41680,2962,1132,686,0,0,0 60 | cpu,119738,0,12279,41693,2966,1155,696,0,0,0 61 | cpu,122498,0,12478,41700,2969,1178,706,0,0,0 62 | cpu,125253,0,12681,41707,2971,1201,717,0,0,0 63 | cpu,128000,0,12895,41711,2972,1225,729,0,0,0 64 | cpu,130707,0,13128,41726,2982,1249,742,0,0,0 65 | cpu,133294,0,13371,41795,3041,1274,757,0,0,0 66 | cpu,135765,0,13640,41912,3136,1299,773,0,0,0 67 | cpu,138133,0,13949,42040,3277,1325,792,0,0,0 68 | cpu,139811,0,14233,42814,3494,1346,807,0,0,0 69 | cpu,140435,0,14303,45065,3542,1352,810,0,0,0 70 | cpu,143200,0,14499,45072,3544,1375,819,0,0,0 71 | cpu,145962,0,14696,45079,3547,1398,830,0,0,0 72 | cpu,148725,0,14891,45086,3549,1422,841,0,0,0 73 | cpu,151472,0,15105,45092,3550,1446,853,0,0,0 74 | cpu,154181,0,15326,45110,3564,1470,866,0,0,0 75 | cpu,156758,0,15570,45194,3617,1495,881,0,0,0 76 | cpu,159151,0,15846,45347,3747,1520,897,0,0,0 77 | cpu,161490,0,16137,45526,3885,1546,915,0,0,0 78 | cpu,163206,0,16408,46288,4090,1567,930,0,0,0 79 | cpu,163815,0,16471,48570,4124,1573,932,0,0,0 80 | cpu,166578,0,16665,48579,4128,1596,942,0,0,0 81 | cpu,169350,0,16858,48581,4130,1619,953,0,0,0 82 | cpu,172102,0,17070,48583,4131,1642,964,0,0,0 83 | cpu,174868,0,17270,48584,4131,1666,976,0,0,0 84 | cpu,177558,0,17498,48608,4149,1691,990,0,0,0 85 | cpu,180149,0,17747,48674,4201,1716,1005,0,0,0 86 | cpu,182595,0,18027,48798,4302,1741,1023,0,0,0 87 | cpu,184977,0,18331,48922,4438,1767,1042,0,0,0 88 | cpu,186130,0,18548,50310,4643,1783,1052,0,0,0 89 | cpu,187374,0,18635,51939,4670,1793,1057,0,0,0 90 | cpu,190144,0,18825,51945,4673,1816,1066,0,0,0 91 | cpu,192909,0,19019,51953,4674,1838,1077,0,0,0 92 | cpu,195683,0,19208,51957,4676,1862,1088,0,0,0 93 | cpu,198424,0,19426,51961,4677,1885,1101,0,0,0 94 | cpu,201109,0,19645,51995,4702,1909,1114,0,0,0 95 | cpu,203706,0,19892,52061,4749,1934,1129,0,0,0 96 | cpu,206098,0,20163,52230,4869,1959,1146,0,0,0 97 | cpu,208450,0,20460,52383,5015,1984,1164,0,0,0 98 | cpu,209285,0,20637,54179,5179,1996,1172,0,0,0 99 | cpu,210957,0,20760,55334,5209,2010,1178,0,0,0 100 | cpu,213713,0,20956,55346,5214,2033,1188,0,0,0 101 | cpu,216465,0,21161,55354,5215,2056,1199,0,0,0 102 | cpu,219221,0,21366,55359,5217,2080,1211,0,0,0 103 | cpu,221972,0,21579,55361,5218,2104,1223,0,0,0 104 | cpu,224578,0,21822,55432,5258,2128,1238,0,0,0 105 | cpu,227123,0,22089,55508,5324,2154,1254,0,0,0 106 | cpu,229531,0,22385,55637,5440,2180,1272,0,0,0 107 | cpu,231871,0,22686,55798,5586,2205,1291,0,0,0 108 | cpu,232020,0,22769,58455,5684,2210,1294,0,0,0 109 | cpu,234490,0,22951,58744,5716,2231,1303,0,0,0 110 | cpu,237258,0,23143,58750,5719,2254,1313,0,0,0 111 | cpu,240020,0,23341,58756,5720,2277,1324,0,0,0 112 | cpu,242783,0,23542,58758,5720,2301,1336,0,0,0 113 | cpu,245481,0,23773,58782,5730,2325,1349,0,0,0 114 | cpu,248054,0,24017,58862,5790,2350,1364,0,0,0 115 | cpu,250519,0,24293,58974,5891,2375,1380,0,0,0 116 | cpu,252882,0,24598,59112,6030,2401,1399,0,0,0 117 | cpu,254695,0,24885,59766,6224,2423,1414,0,0,0 118 | cpu,255187,0,24946,62167,6264,2428,1416,0,0,0 119 | cpu,257950,0,25139,62176,6266,2451,1426,0,0,0 120 | cpu,260706,0,25347,62178,6267,2475,1437,0,0,0 121 | cpu,263465,0,25549,62183,6269,2498,1448,0,0,0 122 | cpu,266223,0,25750,62189,6272,2522,1460,0,0,0 123 | cpu,268943,0,25970,62202,6282,2546,1473,0,0,0 124 | cpu,271489,0,26215,62298,6351,2571,1488,0,0,0 125 | cpu,273938,0,26500,62417,6449,2596,1505,0,0,0 126 | cpu,276341,0,26805,62529,6576,2622,1523,0,0,0 127 | cpu,277802,0,27052,63622,6740,2641,1536,0,0,0 128 | cpu,278724,0,27142,65551,6785,2649,1540,0,0,0 129 | cpu,281483,0,27344,65558,6787,2672,1550,0,0,0 130 | cpu,284238,0,27547,65564,6788,2696,1561,0,0,0 131 | cpu,286990,0,27755,65569,6790,2719,1572,0,0,0 132 | cpu,289750,0,27956,65571,6793,2744,1583,0,0,0 133 | cpu,292425,0,28193,65598,6818,2768,1597,0,0,0 134 | cpu,294835,0,28437,65827,6889,2792,1612,0,0,0 135 | cpu,297276,0,28720,65955,6990,2818,1629,0,0,0 136 | cpu,299636,0,29029,66086,7134,2844,1648,0,0,0 137 | cpu,300741,0,29247,67539,7323,2858,1658,0,0,0 138 | cpu,302016,0,29338,69130,7352,2869,1662,0,0,0 139 | cpu,304780,0,29538,69133,7354,2892,1673,0,0,0 140 | cpu,307554,0,29726,69138,7356,2915,1683,0,0,0 141 | cpu,310310,0,29930,69143,7357,2938,1694,0,0,0 142 | cpu,313051,0,30152,69144,7358,2963,1708,0,0,0 143 | cpu,315690,0,30388,69204,7383,2987,1723,0,0,0 144 | cpu,318234,0,30651,69284,7452,3013,1739,0,0,0 145 | cpu,320666,0,30944,69408,7554,3038,1757,0,0,0 146 | cpu,323032,0,31264,69535,7688,3064,1776,0,0,0 147 | cpu,323918,0,31455,71272,7844,3076,1786,0,0,0 148 | cpu,325490,0,31559,72547,7875,3090,1791,0,0,0 149 | cpu,328277,0,31736,72551,7876,3113,1801,0,0,0 150 | cpu,331049,0,31926,72554,7877,3136,1812,0,0,0 151 | cpu,333816,0,32125,72556,7877,3160,1823,0,0,0 152 | cpu,336569,0,32333,72559,7878,3184,1835,0,0,0 153 | cpu,339255,0,32564,72585,7898,3209,1850,0,0,0 154 | cpu,341811,0,32818,72663,7966,3234,1865,0,0,0 155 | cpu,344243,0,33104,72791,8071,3259,1882,0,0,0 156 | cpu,346571,0,33390,72960,8237,3284,1899,0,0,0 157 | cpu,347679,0,33609,74421,8417,3299,1910,0,0,0 158 | cpu,349019,0,33704,75945,8444,3310,1914,0,0,0 159 | cpu,351785,0,33894,75953,8448,3333,1925,0,0,0 160 | cpu,354564,0,34079,75956,8450,3356,1935,0,0,0 161 | cpu,357326,0,34279,75961,8451,3380,1946,0,0,0 162 | cpu,360069,0,34493,75967,8453,3404,1958,0,0,0 163 | cpu,362719,0,34727,76014,8482,3429,1972,0,0,0 164 | cpu,365238,0,34998,76115,8546,3454,1988,0,0,0 165 | cpu,367657,0,35292,76237,8665,3479,2006,0,0,0 166 | cpu,370004,0,35605,76369,8821,3505,2024,0,0,0 167 | cpu,370614,0,35750,78472,8942,3514,2031,0,0,0 168 | cpu,372555,0,35876,79355,8971,3530,2037,0,0,0 169 | cpu,375327,0,36068,79358,8972,3553,2047,0,0,0 170 | cpu,378096,0,36263,79360,8973,3577,2059,0,0,0 171 | cpu,380853,0,36464,79366,8975,3600,2071,0,0,0 172 | cpu,383595,0,36679,79374,8978,3624,2083,0,0,0 173 | cpu,386200,0,36934,79430,9017,3649,2098,0,0,0 174 | cpu,388684,0,37199,79543,9106,3675,2114,0,0,0 175 | cpu,391084,0,37500,79662,9237,3701,2133,0,0,0 176 | cpu,393199,0,37823,79979,9428,3726,2150,0,0,0 177 | cpu,393368,0,37860,82685,9512,3728,2152,0,0,0 178 | cpu,396127,0,38058,82695,9515,3751,2161,0,0,0 179 | cpu,398873,0,38270,82701,9518,3774,2172,0,0,0 180 | cpu,401614,0,38488,82707,9519,3797,2184,0,0,0 181 | cpu,404360,0,38703,82711,9521,3821,2196,0,0,0 182 | cpu,407062,0,38929,82734,9533,3845,2209,0,0,0 183 | cpu,409661,0,39175,82806,9577,3870,2224,0,0,0 184 | cpu,412114,0,39455,82924,9678,3895,2241,0,0,0 185 | cpu,414508,0,39767,83034,9808,3922,2260,0,0,0 186 | cpu,415914,0,40006,84176,9983,3939,2273,0,0,0 187 | cpu,416904,0,40096,86048,10017,3949,2277,0,0,0 188 | cpu,419665,0,40294,86054,10022,3971,2286,0,0,0 189 | cpu,422412,0,40503,86061,10025,3995,2297,0,0,0 190 | cpu,425173,0,40708,86062,10026,4018,2309,0,0,0 191 | cpu,427921,0,40924,86064,10026,4042,2321,0,0,0 192 | cpu,430598,0,41157,86098,10044,4066,2335,0,0,0 193 | cpu,433170,0,41417,86165,10097,4094,2351,0,0,0 194 | cpu,435633,0,41711,86258,10204,4119,2368,0,0,0 195 | cpu,437985,0,42021,86406,10340,4145,2387,0,0,0 196 | cpu,438757,0,42185,88287,10498,4156,2395,0,0,0 197 | cpu,440449,0,42310,89420,10529,4170,2401,0,0,0 198 | cpu,443208,0,42513,89425,10531,4193,2411,0,0,0 199 | cpu,445949,0,42731,89430,10533,4216,2422,0,0,0 200 | cpu,448702,0,42938,89436,10535,4240,2433,0,0,0 201 | cpu,451448,0,43154,89438,10537,4263,2446,0,0,0 202 | cpu,454066,0,43408,89497,10562,4289,2461,0,0,0 203 | cpu,456555,0,43684,89601,10646,4315,2477,0,0,0 204 | cpu,458963,0,43976,89725,10770,4340,2495,0,0,0 205 | cpu,461308,0,44294,89860,10917,4367,2515,0,0,0 206 | cpu,461703,0,44411,92181,11068,4374,2520,0,0,0 207 | cpu,463894,0,44568,92780,11096,4393,2527,0,0,0 208 | cpu,466662,0,44765,92783,11096,4416,2537,0,0,0 209 | cpu,469434,0,44957,92785,11098,4439,2548,0,0,0 210 | cpu,472183,0,45166,92793,11099,4462,2560,0,0,0 211 | cpu,474922,0,45388,92795,11100,4487,2573,0,0,0 212 | cpu,477563,0,45634,92837,11129,4512,2588,0,0,0 213 | cpu,480056,0,45903,92945,11212,4537,2605,0,0,0 214 | cpu,482464,0,46195,93070,11333,4563,2623,0,0,0 215 | cpu,484731,0,46498,93281,11505,4589,2642,0,0,0 216 | cpu,485355,0,46647,95299,11693,4598,2649,0,0,0 217 | cpu,487200,0,46786,96255,11732,4613,2656,0,0,0 218 | cpu,489969,0,46981,96257,11733,4636,2666,0,0,0 219 | cpu,492725,0,47185,96263,11735,4659,2678,0,0,0 220 | cpu,495481,0,47396,96263,11735,4683,2690,0,0,0 221 | cpu,498224,0,47613,96269,11736,4707,2702,0,0,0 222 | cpu,500892,0,47842,96306,11764,4732,2716,0,0,0 223 | cpu,503432,0,48094,96404,11829,4756,2731,0,0,0 224 | cpu,505853,0,48380,96532,11944,4781,2748,0,0,0 225 | cpu,508200,0,48679,96676,12103,4807,2766,0,0,0 226 | cpu,509157,0,48871,98351,12249,4820,2775,0,0,0 227 | cpu,510620,0,48978,99716,12297,4833,2780,0,0,0 228 | cpu,513381,0,49182,99718,12298,4856,2790,0,0,0 229 | cpu,516141,0,49376,99728,12302,4879,2801,0,0,0 230 | cpu,518905,0,49578,99730,12303,4902,2812,0,0,0 231 | cpu,521646,0,49788,99740,12307,4927,2824,0,0,0 232 | cpu,524299,0,50016,99791,12335,4951,2838,0,0,0 233 | cpu,526808,0,50280,99897,12408,4977,2854,0,0,0 234 | cpu,529229,0,50568,100020,12526,5002,2872,0,0,0 235 | cpu,531558,0,50877,100183,12675,5028,2890,0,0,0 236 | cpu,532414,0,51062,101923,12869,5040,2899,0,0,0 237 | cpu,534013,0,51178,103160,12899,5054,2904,0,0,0 238 | cpu,536787,0,51367,103164,12901,5076,2914,0,0,0 239 | cpu,539559,0,51558,103167,12903,5099,2925,0,0,0 240 | cpu,542322,0,51755,103173,12906,5122,2936,0,0,0 241 | cpu,545081,0,51955,103178,12907,5146,2948,0,0,0 242 | cpu,547736,0,52182,103229,12939,5170,2962,0,0,0 243 | cpu,550224,0,52417,103378,13024,5194,2976,0,0,0 244 | cpu,552555,0,52676,103586,13182,5218,2992,0,0,0 245 | cpu,554842,0,52945,103808,13354,5242,3008,0,0,0 246 | cpu,556506,0,53210,104580,13608,5262,3023,0,0,0 247 | cpu,557125,0,53278,106814,13680,5269,3026,0,0,0 248 | cpu,559871,0,53486,106823,13686,5291,3036,0,0,0 249 | cpu,562626,0,53697,106824,13687,5315,3047,0,0,0 250 | cpu,565378,0,53899,106836,13690,5338,3057,0,0,0 251 | cpu,568127,0,54100,106850,13694,5361,3068,0,0,0 252 | cpu,570847,0,54328,106860,13702,5385,3081,0,0,0 253 | cpu,573416,0,54576,106946,13758,5410,3096,0,0,0 254 | cpu,575871,0,54855,107065,13857,5435,3112,0,0,0 255 | cpu,578202,0,55165,107228,14001,5460,3130,0,0,0 256 | cpu,579830,0,55400,108211,14118,5478,3143,0,0,0 257 | cpu,579831,0,55401,111208,14118,5479,3143,0,0,0 258 | cpu,579831,0,55402,114205,14119,5479,3143,0,0,0 259 | cpu,579832,0,55403,117204,14119,5479,3144,0,0,0 260 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql_index-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 7989,280,7709,0,19,174 3 | 7989,282,7707,0,19,175 4 | 7989,282,7706,0,19,175 5 | 7989,283,7706,0,19,175 6 | 7989,282,7706,0,19,175 7 | 7989,264,7724,0,1,175 8 | 7989,848,7141,0,9,609 9 | 7989,1284,6705,0,10,719 10 | 7989,1348,6641,0,10,751 11 | 7989,1458,6530,0,10,826 12 | 7989,1559,6430,0,11,896 13 | 7989,1662,6327,0,11,972 14 | 7989,1756,6232,0,11,1043 15 | 7989,1850,6138,0,11,1128 16 | 7989,1959,6030,0,11,1234 17 | 7989,2098,5891,0,11,1371 18 | 7989,2246,5743,0,11,1519 19 | 7989,1931,6058,0,11,1423 20 | 7989,2003,5986,0,11,1459 21 | 7989,2110,5879,0,11,1531 22 | 7989,2222,5767,0,11,1610 23 | 7989,2308,5681,0,11,1674 24 | 7989,2414,5575,0,11,1754 25 | 7989,2511,5478,0,11,1845 26 | 7989,2532,5457,0,11,1864 27 | 7989,2547,5441,0,11,1880 28 | 7989,2556,5432,0,11,1888 29 | 7989,2220,5769,0,11,1710 30 | 7989,2291,5698,0,11,1737 31 | 7989,2355,5633,0,11,1769 32 | 7989,2407,5582,0,11,1793 33 | 7989,2453,5535,0,11,1817 34 | 7989,2494,5494,0,11,1833 35 | 7989,2521,5468,0,11,1857 36 | 7989,2540,5449,0,11,1873 37 | 7989,2547,5441,0,11,1881 38 | 7989,2557,5432,0,11,1889 39 | 7989,2214,5775,0,11,1711 40 | 7989,2297,5691,0,11,1745 41 | 7989,2352,5637,0,11,1769 42 | 7989,2406,5582,0,11,1793 43 | 7989,2455,5534,0,11,1817 44 | 7989,2499,5490,0,11,1841 45 | 7989,2519,5470,0,11,1857 46 | 7989,2536,5452,0,11,1873 47 | 7989,2537,5452,0,11,1881 48 | 7989,2545,5444,0,11,1889 49 | 7989,2206,5782,0,11,1711 50 | 7989,2296,5692,0,11,1745 51 | 7989,2359,5629,0,11,1777 52 | 7989,2412,5577,0,11,1801 53 | 7989,2459,5530,0,11,1825 54 | 7989,2497,5492,0,11,1849 55 | 7989,2508,5481,0,11,1865 56 | 7989,2516,5472,0,11,1873 57 | 7989,2524,5464,0,11,1881 58 | 7989,2168,5821,0,11,1686 59 | 7989,2235,5754,0,11,1721 60 | 7989,2306,5682,0,11,1753 61 | 7989,2369,5620,0,11,1785 62 | 7989,2417,5571,0,11,1809 63 | 7989,2457,5532,0,11,1825 64 | 7989,2491,5497,0,11,1849 65 | 7989,2509,5480,0,11,1865 66 | 7989,2517,5472,0,11,1873 67 | 7989,2534,5455,0,11,1889 68 | 7989,2195,5794,0,11,1704 69 | 7989,2256,5733,0,11,1729 70 | 7989,2322,5667,0,11,1761 71 | 7989,2373,5616,0,11,1785 72 | 7989,2421,5567,0,11,1809 73 | 7989,2468,5520,0,11,1833 74 | 7989,2493,5496,0,11,1849 75 | 7989,2511,5478,0,11,1865 76 | 7989,2518,5471,0,11,1873 77 | 7989,2536,5453,0,11,1889 78 | 7989,2191,5798,0,11,1704 79 | 7989,2251,5737,0,11,1729 80 | 7989,2319,5669,0,11,1761 81 | 7989,2372,5617,0,11,1785 82 | 7989,2422,5567,0,11,1809 83 | 7989,2468,5521,0,11,1833 84 | 7989,2496,5493,0,11,1852 85 | 7989,2509,5479,0,11,1865 86 | 7989,2525,5464,0,11,1881 87 | 7989,2534,5454,0,11,1889 88 | 7989,2163,5825,0,11,1711 89 | 7989,2267,5722,0,11,1737 90 | 7989,2325,5664,0,11,1761 91 | 7989,2385,5603,0,11,1793 92 | 7989,2434,5554,0,11,1817 93 | 7989,2475,5514,0,11,1833 94 | 7989,2502,5487,0,11,1857 95 | 7989,2519,5469,0,11,1873 96 | 7989,2527,5462,0,11,1881 97 | 7989,2537,5451,0,11,1889 98 | 7989,2199,5790,0,11,1711 99 | 7989,2282,5707,0,11,1745 100 | 7989,2338,5651,0,11,1769 101 | 7989,2392,5597,0,11,1793 102 | 7989,2439,5549,0,11,1817 103 | 7989,2484,5505,0,11,1841 104 | 7989,2501,5488,0,11,1857 105 | 7989,2519,5470,0,11,1873 106 | 7989,2526,5463,0,11,1881 107 | 7989,2534,5454,0,11,1889 108 | 7989,2200,5788,0,11,1711 109 | 7989,2301,5688,0,11,1753 110 | 7989,2358,5631,0,11,1777 111 | 7989,2408,5581,0,11,1801 112 | 7989,2455,5534,0,11,1825 113 | 7989,2493,5496,0,11,1849 114 | 7989,2511,5477,0,11,1865 115 | 7989,2520,5469,0,11,1873 116 | 7989,2536,5453,0,11,1889 117 | 7989,2195,5793,0,11,1704 118 | 7989,2250,5739,0,11,1729 119 | 7989,2319,5670,0,11,1761 120 | 7989,2375,5614,0,11,1785 121 | 7989,2425,5564,0,11,1809 122 | 7989,2469,5519,0,11,1833 123 | 7989,2495,5494,0,11,1849 124 | 7989,2515,5474,0,11,1865 125 | 7989,2522,5467,0,11,1873 126 | 7989,2539,5450,0,11,1889 127 | 7989,2193,5795,0,11,1704 128 | 7989,2258,5731,0,11,1729 129 | 7989,2324,5665,0,11,1761 130 | 7989,2384,5604,0,11,1793 131 | 7989,2426,5562,0,11,1809 132 | 7989,2470,5518,0,11,1833 133 | 7989,2504,5485,0,11,1857 134 | 7989,2512,5477,0,11,1865 135 | 7989,2527,5461,0,11,1881 136 | 7989,2537,5452,0,11,1889 137 | 7989,2164,5825,0,11,1711 138 | 7989,2270,5719,0,11,1737 139 | 7989,2335,5654,0,11,1769 140 | 7989,2388,5600,0,11,1793 141 | 7989,2434,5555,0,11,1817 142 | 7989,2474,5514,0,11,1833 143 | 7989,2502,5487,0,11,1857 144 | 7989,2519,5469,0,12,1873 145 | 7989,2528,5461,0,12,1881 146 | 7989,2535,5453,0,12,1889 147 | 7989,2198,5791,0,12,1711 148 | 7989,2270,5719,0,12,1737 149 | 7989,2333,5656,0,12,1769 150 | 7989,2383,5605,0,12,1793 151 | 7989,2423,5565,0,12,1809 152 | 7989,2471,5518,0,12,1833 153 | 7989,2499,5489,0,12,1857 154 | 7989,2509,5480,0,12,1865 155 | 7989,2525,5464,0,12,1881 156 | 7989,2533,5455,0,12,1889 157 | 7989,2163,5825,0,12,1711 158 | 7989,2271,5718,0,12,1737 159 | 7989,2333,5656,0,12,1769 160 | 7989,2385,5604,0,12,1793 161 | 7989,2433,5556,0,12,1817 162 | 7989,2472,5517,0,12,1833 163 | 7989,2499,5489,0,12,1857 164 | 7989,2509,5480,0,12,1865 165 | 7989,2525,5464,0,12,1881 166 | 7989,2533,5455,0,12,1889 167 | 7989,2197,5792,0,12,1711 168 | 7989,2284,5705,0,12,1745 169 | 7989,2342,5647,0,12,1769 170 | 7989,2403,5586,0,12,1801 171 | 7989,2440,5549,0,12,1817 172 | 7989,2485,5504,0,12,1841 173 | 7989,2502,5486,0,12,1857 174 | 7989,2520,5469,0,12,1873 175 | 7989,2527,5461,0,12,1881 176 | 7989,2128,5861,0,12,1676 177 | 7989,2237,5752,0,12,1721 178 | 7989,2307,5682,0,12,1753 179 | 7989,2368,5620,0,12,1785 180 | 7989,2421,5568,0,12,1809 181 | 7989,2459,5530,0,12,1825 182 | 7989,2493,5495,0,12,1849 183 | 7989,2511,5478,0,12,1865 184 | 7989,2520,5469,0,12,1873 185 | 7989,2536,5453,0,12,1889 186 | 7989,2193,5796,0,12,1704 187 | 7989,2255,5733,0,12,1729 188 | 7989,2319,5669,0,12,1761 189 | 7989,2382,5607,0,12,1793 190 | 7989,2430,5559,0,12,1817 191 | 7989,2471,5518,0,12,1833 192 | 7989,2498,5491,0,12,1857 193 | 7989,2515,5474,0,12,1873 194 | 7989,2523,5466,0,12,1881 195 | 7989,2532,5457,0,12,1889 196 | 7989,2200,5789,0,12,1711 197 | 7989,2275,5714,0,12,1737 198 | 7989,2336,5653,0,12,1769 199 | 7989,2391,5597,0,12,1793 200 | 7989,2438,5551,0,12,1817 201 | 7989,2485,5503,0,12,1841 202 | 7989,2502,5486,0,12,1857 203 | 7989,2519,5469,0,12,1873 204 | 7989,2527,5462,0,12,1881 205 | 7989,2536,5452,0,12,1889 206 | 7989,2198,5790,0,12,1711 207 | 7989,2289,5700,0,12,1745 208 | 7989,2341,5648,0,12,1769 209 | 7989,2401,5587,0,12,1801 210 | 7989,2439,5549,0,12,1817 211 | 7989,2485,5504,0,12,1841 212 | 7989,2502,5487,0,12,1857 213 | 7989,2520,5469,0,12,1873 214 | 7989,2527,5461,0,12,1881 215 | 7989,2535,5453,0,12,1889 216 | 7989,2200,5789,0,12,1711 217 | 7989,2287,5702,0,12,1745 218 | 7989,2339,5650,0,12,1769 219 | 7989,2391,5598,0,12,1793 220 | 7989,2437,5552,0,12,1817 221 | 7989,2477,5512,0,12,1833 222 | 7989,2503,5486,0,12,1857 223 | 7989,2520,5468,0,12,1873 224 | 7989,2528,5461,0,12,1881 225 | 7989,2537,5452,0,12,1889 226 | 7989,2199,5790,0,12,1711 227 | 7989,2273,5716,0,12,1737 228 | 7989,2337,5652,0,12,1769 229 | 7989,2390,5599,0,12,1793 230 | 7989,2436,5553,0,12,1817 231 | 7989,2476,5513,0,12,1833 232 | 7989,2504,5484,0,12,1857 233 | 7989,2521,5467,0,12,1873 234 | 7989,2530,5459,0,12,1881 235 | 7989,2538,5451,0,12,1889 236 | 7989,2201,5788,0,12,1711 237 | 7989,2273,5716,0,12,1737 238 | 7989,2336,5653,0,12,1769 239 | 7989,2389,5599,0,12,1793 240 | 7989,2437,5552,0,12,1817 241 | 7989,2486,5503,0,12,1841 242 | 7989,2503,5485,0,12,1857 243 | 7989,2512,5476,0,12,1865 244 | 7989,2528,5460,0,12,1881 245 | 7989,2538,5451,0,12,1889 246 | 7989,2193,5795,0,12,1704 247 | 7989,2249,5740,0,12,1729 248 | 7989,2317,5672,0,12,1761 249 | 7989,2369,5620,0,12,1785 250 | 7989,2417,5572,0,12,1809 251 | 7989,2454,5534,0,12,1825 252 | 7989,2490,5498,0,12,1849 253 | 7989,2508,5480,0,12,1865 254 | 7989,2515,5473,0,12,1873 255 | 7989,2533,5455,0,12,1889 256 | 7989,2097,5892,0,12,1650 257 | 7989,2097,5892,0,12,1650 258 | 7989,2097,5892,0,12,1650 259 | 7989,2097,5892,0,12,1650 260 | -------------------------------------------------------------------------------- /raw-results/control-bench_mysql_index-results.csv: -------------------------------------------------------------------------------- 1 | 2 | 7587.8 318.6 3 | 7611.0 315.1 4 | 7575.3 316.9 5 | 7713.9 324.8 6 | 7685.9 322.6 7 | 7624.5 318.3 8 | 7484.5 317.9 9 | 7696.2 326.2 10 | 7605.1 310.8 11 | 7720.0 312.6 12 | 7718.3 323.8 13 | 7611.8 321.7 14 | 7605.9 316.2 15 | 7579.3 310.2 16 | 7401.5 319.9 17 | 7660.5 321.1 18 | 7789.7 327.0 19 | 7732.3 332.3 20 | 7713.1 312.6 21 | 7632.0 323.8 22 | 7394.1 302.7 23 | 7369.6 315.7 24 | 7535.7 321.5 25 | 7188.1 297.4 26 | 7494.0 319.6 27 | -------------------------------------------------------------------------------- /raw-results/primary-bench_app_ab-results.csv: -------------------------------------------------------------------------------- 1 | 3244.94 2 | 3587.09 3 | 3658.71 4 | 3652.69 5 | 3683.61 6 | 3657.19 7 | 3606.26 8 | 3612.59 9 | 3604.92 10 | 3709.53 11 | 3676.59 12 | 3559.18 13 | 3609.57 14 | 3636.43 15 | -------------------------------------------------------------------------------- /raw-results/primary-bench_app_blog-results_reads.csv: -------------------------------------------------------------------------------- 1 | 717827 2 | 694169 3 | 678994 4 | 653390 5 | 588316 6 | 683097 7 | 699179 8 | 628360 9 | 688582 10 | 671809 11 | 708698 12 | 664135 13 | 631910 14 | 663501 15 | 666877 16 | 633204 17 | 658997 18 | 677899 19 | 646079 20 | 653859 21 | 659279 22 | 649300 23 | 638037 24 | -------------------------------------------------------------------------------- /raw-results/primary-bench_app_blog-results_writes.csv: -------------------------------------------------------------------------------- 1 | 640 2 | 632 3 | 632 4 | 613 5 | 609 6 | 622 7 | 611 8 | 615 9 | 638 10 | 612 11 | 599 12 | 630 13 | 586 14 | 597 15 | 606 16 | 595 17 | 622 18 | 619 19 | 616 20 | 610 21 | 644 22 | 611 23 | 600 24 | -------------------------------------------------------------------------------- /raw-results/primary-bench_boot_ssp-100-results.txt: -------------------------------------------------------------------------------- 1 | c70b6ebdbf566a77e0a9dd69af1534f8263cf2a127050e6dd85750cd34a44a17 2 | ebdf21cafc3e644af4bd2ddf8024998cc3f6aebb0756a1285924fb158a36df86 3 | 61034e292d9fc93f9c5df0de73d2bfa8f6abbbbc815bc3ddd181c10068b1c4db 4 | 9641fa06573b48d8425e5dfaf05a5c70a3e7264f8d99a84aa1e595d48a4d5fe3 5 | 49fd7866ee16f56cdf7bc40eebfe355a467723366342e3362bd07153b57364af 6 | ed0a5d30408840d9e16a3fd984ac47d5c117bba8c0b94e33f95ee0418cb98293 7 | 6a07b247b47e96017737f1985d67199b33b71292aa0d6bb7de85cf9221d468a6 8 | 1d27ccdb55bdf37fa5e7cdd15dfe52b88694e7b8b668a505755a8158f248bf43 9 | 90290a3aacebad3548eff0140e10f1af3561873f4618fc774535f1a663936a53 10 | 67f093741575e34b1de89cff40bafade39676108d08886983d209d978f3147d1 11 | 07664ab89a5a9184cc148f4bd0db3dc124e56d132ca4146279e298bfa0edaa75 12 | a667baa31e74124365daece5a4fc164ee3d231c18f7272b2f0199fdfe1f64386 13 | 92e5106f398ab94057fbcfead76acf36424d025e36373884fa324659e38d7827 14 | e31e99a581f48db299e657330b00bda17e0b9e00548579ee234c86f7f5c8d7c4 15 | 13f4ffc734c995e9c1e4f0f3e8d406ebe7012e15f43921e28cf7e783d82b2153 16 | 7ad1d10574db97d8fb579e6311afd20c0c3f67aba54909bea36aad6ea7a14af7 17 | 03b722b9d45fe734a7c012537fc89d49d8635ba8c61fd7bac2a524eb58f648df 18 | 6f28900cd54749a646ad6313678f0a928bd3f2df4b5600c2eb694d81e20ff96d 19 | 43f123f92aedd00f489ae96182adb8c4ac74496292e51d030c05000f8a9865b2 20 | cd590d019a33931b424778c3f80f6f10c8896a56692ee0145c4a15b18f8c4c57 21 | 3f485110b1e5560610c125b421de90f95c012bfca880b880180ad1854fa8c4be 22 | f2b5f6ae49fb999a0657cffe76ff46a4a68be20cfa244aa0f38693a882d9a23b 23 | 5e72fe137ce323184d18459ef4bb682bfa1b2e17422440a657034d9d063f4d97 24 | a8c3fa5fdefe5292ef5eb0db024201af83f9f719bde6f24cd9d8d23829b39d1d 25 | 570a61cf85766070d3c43cf7e8edfe47dbcb0a8ac245c5a3fef70d409250052c 26 | 63595bd3602337fa2e0f598d7e2d14360e9c42418c752c44ac9856e88a9be5da 27 | 882f8793af0ccb15857bf6de90e0167014eadeb20171fd89f7869ed1e144c3aa 28 | 27da8cccaab38fa35d3e82e3e1f32f10bf53703c3bc8de1b24e89f64b16986e6 29 | 2d6f1210f2b75e794037725149fa9b9eff0a9d70bc20246c3412977cd88b6904 30 | ed5ef0f7fc4152b5fde11ebf4c2959573fd2f9225dcfe1e2cb9e39379491dfbb 31 | 1c678a36d1897e831c472c86d4aa6af97349fd3ea60c4b55d88679d455d709d0 32 | c3f84c9fe99265966023fbce760a274e1e590eadec13b1efc2344cbab9dad89c 33 | 938f3c89e303eaf420e45ae8b9e0b3e75adc93842603b569ea44c6a8910700c7 34 | ecc7f9bea6963c79a3b01c45fa72f8087204d1429ed419ddba11fb689c85b7a1 35 | 69ca72d69da52d74aaf0794369f228fa01acfcc001cf308deb1ceaf0f03586b0 36 | 049e1277725cddb062732596337c754eeaaccf6565d0298942588e02f164ec30 37 | 9dd9075bd5f4f6bc0b0316eae810c584884e1d15b360be40a0d6dc5f131a88a2 38 | 0a2bb3e0c6da86adf7645909a4638d4c1d64aa434c0e89f339747be4b5d6c40e 39 | da9c6caa01fcc97d6c9fd8ab78a9e0c08a44d4913c49094bd7ac5e48b5753a87 40 | 5b79e46b3e4f52ac75fdc7ad3f05ee562e9b64e59fcb7e6179f4da79ea626552 41 | d60d148caa904cd44cc348e4fe7ba7aca1c6c161de8763d8a253350e8286fae7 42 | 163cae676e51553f80d84b15a82822eb1bf116dadc1c2065fb739132d31e5f88 43 | 158719eda2d54fc8447918179067ef6e9e166e89b87be54a9a0b204221b7c3d2 44 | d50e064c8c75993e6bddef434d9a924f4c4f5d13cac46876281a5366f78b2ae5 45 | 63d1144d5de205f649d9d305814196ad469b376a690965d2170d1c6b0362469d 46 | 6ce2592b5aceb4d0d04f515929ddb7cdba97726080b4c8d1c5705f73e884940e 47 | 637e1493ca839c12b6e6b02ef3e067b70b1546b98f8334131003c343bce99e4b 48 | 74102b78a506f9c52d2f7bb1cde409cd3378812d2630c18ec170842bb677a5fc 49 | 7c2399af1ac4b6865cef48cd228b167f447ee28892e45b2f425e2b181757df92 50 | 43a071894e635d8701f0daea9005ad47a8db51f01d17443a856f94a8d618fd86 51 | f58ccffe0417713a3e9af6a47b1b48cc3fbbadb7c1915186ee3e1d9282e796c6 52 | 0dedbcc20cbcc9eb9a3742c99c0a6d948e0dcf1cd184f54a473fe00a3aab0f65 53 | 8fc2d3731b6e3e90f596832b3b6afa35130047ed8ec6e731222ab48498872329 54 | f55c4ab4bbd2dcce432a95b64a8b61e20fbf800d26b47b8e0de2d21184b8920f 55 | 8e15a2d98ec7104dee185420f46397d89d4234e3ed4220ad743686c01589f75c 56 | 80595e1902083379b6b55d456424253d2e5c9c82fac598fba9abb9560ac6054a 57 | fa222cf252e90dccf57f408474aab09de5d9f32acaca0861a662b1589b66311f 58 | 0ba3bb909cc060b80756454b2c982c438bc9ca9138ec34c3d12b88c25851e6e7 59 | c60ffa26234db6a8e30f6fbf89913189c79152a8dead86ed768caeb1442475e7 60 | b30f361b9f94cd45cee5b0ee1e4e9b5760c60d427d28e73bc5338708bdc1b5b9 61 | 0090ef3db640ca07a535f875370d68bff2cc0284a53397709c7bda7281e016c5 62 | a01e8a0028144c0875f85200ccea766821abeb904fa4072571aae3522441420a 63 | 94529737e394dee274e3ce5b3476e3961c2d4e9b2aa2eb2a0b13337ee9310416 64 | 42f3770c6972a1b50b90c185e00ff8934a7343d7d7322e5ac6eee2b1ba30cd1f 65 | 1a55c70ba17cda618ab590c3c0bd91fb951b2115ba4a08b4960046f2f685d2f6 66 | 9e8e2342b5f55b35aa8b7fc9f2c9049e1f5b31461c0546ff77e12fd2e55a82a6 67 | 3b074fc394c32faa6b7293e701aa42ae3c252a3e6b7e26992a10c2c11b4df01c 68 | 06423e79bad97f181724b58997f293e55d898af0945425114194bb7b33d5ce27 69 | 1bc64a57c57f76f836c8bd0a2881aabffb911c6435c018c1a6c3f1bbc4acee91 70 | fd38f79922a05dc91dd33870b334697dc1765ca18768c9a29f6f840603bf0e50 71 | 30ddc862701a84d50ed8ae1d069dd3afa00fba8f61cfd96786da5b74ef20a5e2 72 | 9115b033618b38b8ba0b990c1d71416427cc1d7498431b9b26aad63ac9e10537 73 | dcb8124f1b3105b09e56b5dfb560c953ad0388cb5e49cc4bd43f208b7f8a8c85 74 | a9487d003d0fc6a5ac4aff77f12867698cf306e739c097cf8819439b6bc8786e 75 | dd1f76ada2aa001c4afa8d8287d7b4f148028ffbd5fc4001755230c9c73bebf2 76 | c32042e45fdd6a49d9d6b0d0a80b5aa3bd08aad71dca020172650f44a49a2c87 77 | 43ef05d58ff13d973411e7902acab739676f1c66c067c8e9251ac593c052dcc9 78 | 01676b5aaaceb785cf0fef5c5ed79da4b952593b605b6dc6dca8640ec8839086 79 | 4d8af996fcf26f117fa5b64e563f2b2c97451bf9a58d9d1991774d4147ac281b 80 | 4de3a2a9315e9388f2c975edd82e005f8f7dcfbea5e6b09c5a3b5b21e6bb498e 81 | 34b4d23232119f550a4c94b2ca65eb8cdc3b917312f6fa547e4f83853da52dc2 82 | fd66b1e3933d8305804da098f0cf4340455d7d1d2a6620da586e38605917eddb 83 | ae1f19dfd36df0c07e553d8737663eca066eb6491d1446e8faac17032a4d42cd 84 | 61cf3045d862d3d98ad9702b0f03044c329718e637b995f5d04477be4f70c94b 85 | ef8a9eac02b7f2351a7850fd814e29b70b914622128671242cfd320f2e8495af 86 | 71e954b77ada642fbff3809be86b794aef5038bee68f52c8ef7d387b480cbb92 87 | 15b98f5dc67d4642a5ae74907e9c5dfe3d8129d0f67049515fd80a9d0279ef8a 88 | e0224fdfa4c64f8ecb718f8f98c1b74d6255a20f2892dcb39338963f61ec1e95 89 | 23d77257392005194ddb84f56a1da9e2e42aef0b610106af275a99c6aa599fa3 90 | 8abe81f87adfe99e96f89e0c99aead626b037ab8e9f227357afa75b6e0f543fc 91 | 74c4ab31bd9535ef4c14d9060132e37db6ff4ab87f37f85b99e66e95ee7f30a4 92 | f34b3495e1af20556f78ae865956b7a2921c6ea82b53302b0394985c74e58d23 93 | 2c58c0853927bd0d48e2fdc3ececda46e5bf1f507d36ae7ce6c63d30684499bd 94 | 85d4b42aea60bfdfbf0cff4da5c551cbdf5cf196898fe779607f61dcb2091814 95 | 7edc635c0be55edb0565538d762ec7184607b0bebe452348770cb558d99d62ad 96 | 35b1b5ec5cf526d7f7d3e26f83b7f532d3d6930324cb04527d9175681914ba0e 97 | 8f7648ce901c3549e5203891f2cc4b0f614abee970015e77b2f6e0242d5bd803 98 | 7ab640689f445ada31fcc580ab155aa6b199e65d9e99816044902955918f0d48 99 | c36626a02e96567309acf6236c7709bd7f756bace8dd0ad5b79a3bf35eaa3a49 100 | 5e1188d728d8a2fbb8f79c1ea4597fa8083b1473f20c526bfea91f7fc1aeab99 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_boot_ssp-15-results.txt: -------------------------------------------------------------------------------- 1 | 2c57ad4e88bf03e692654489a7ad623364d138019871cde24f452d27aa634189 2 | 99470ac0cc5627f9c667fdcd323950447e793c3c2fdce206cb1d75c21f52f097 3 | 991bb60bd393d784986ca7f9740e71dd2b465d1937752f7e5f0976b5818f5e2e 4 | 349ea0a7f6f538b98c77de7ef4323057f2deab3114c488f28fc3fb363e88f5ef 5 | 09dc030088c37af0589cdd7917a5fa82472c12e357beccadddde7177c62bfb6b 6 | 2a5c9d61a4d9368febb57ea413610a0afd96439b18dfddcbd3b4c48170b91ee4 7 | fc053bb8b57e153b44647bfb45cefd8f8d707c9fbea6f07d8c39891ebf910ea9 8 | 169a997493207440257e1b4c2d5e5dae2d84863b8397b464787e6a793c66757d 9 | d4e771b42b2589ddbe7d9f03b4a922fb9ba22939a0c34c96a121986255b9d157 10 | ee417a57b0abc63b76d3686ba3920c73e8051deda1e3a3249337540775773319 11 | a3250552c446112560777b9141470852af10e789ed941c8ce029c0731cf5f8e0 12 | 2f1619306a56920eede8e996c7707e323ea778fc0917c5224801b1e87497536e 13 | c32a896d9e83484f9b66672ae6584c87c0ac0875ea51a8abaa40f5971865ebb9 14 | f00a04b5e387fb37bfcf7a7eb27f960af99665b498d3b74a4c147466e24c166b 15 | 66bc64f5c97981a6847017195884f11c6649f56f0beebd3cbf385e5a7d8c7e3d 16 | -------------------------------------------------------------------------------- /raw-results/primary-bench_cpu-results.txt: -------------------------------------------------------------------------------- 1 | 30.6375 2 | 30.6513 3 | 30.6540 4 | 30.6512 5 | 30.6388 6 | 30.6604 7 | 30.6720 8 | 30.6494 9 | 30.6677 10 | 30.6719 11 | 30.6702 12 | 30.6481 13 | 30.6623 14 | 30.6329 15 | 30.6466 16 | 30.6467 17 | 30.6349 18 | 30.6849 19 | 30.6518 20 | 30.6636 21 | 30.6429 22 | 30.6484 23 | 30.6450 24 | 30.6411 25 | 30.6403 26 | 30.6355 27 | 30.6377 28 | 30.6292 29 | 30.6414 30 | 30.6516 31 | 30.6442 32 | 30.6387 33 | 30.6394 34 | 30.6407 35 | 30.6377 36 | 30.6466 37 | 30.6505 38 | 30.6524 39 | 30.6585 40 | 30.6419 41 | 30.6363 42 | 30.6518 43 | 30.6440 44 | 30.6471 45 | 30.6551 46 | 30.6480 47 | 30.6440 48 | 30.6345 49 | 30.6714 50 | 30.6420 51 | 30.6462 52 | 30.6508 53 | 30.6280 54 | 30.6495 55 | 30.6489 56 | 30.6554 57 | 30.6477 58 | 30.6571 59 | 30.6489 60 | 30.6413 61 | 30.6469 62 | 30.6481 63 | 30.6369 64 | 30.6355 65 | 30.6587 66 | 30.6463 67 | 30.6780 68 | 30.6694 69 | 30.6515 70 | 30.6561 71 | 30.6425 72 | 30.6400 73 | 30.6455 74 | 30.6446 75 | 30.6912 76 | 30.6453 77 | 30.6566 78 | 30.6469 79 | 30.6630 80 | 30.6502 81 | 30.6402 82 | 30.6489 83 | 30.6294 84 | 30.6405 85 | 30.6512 86 | 30.6733 87 | 30.6443 88 | 30.6772 89 | 30.6480 90 | 30.6460 91 | 30.6378 92 | 30.6450 93 | 30.6740 94 | 30.6826 95 | 30.6382 96 | 30.6358 97 | 30.6503 98 | 30.6408 99 | 30.6812 100 | 30.6553 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_io-results.txt: -------------------------------------------------------------------------------- 1 | 1.7968 2 | 1.7916 3 | 1.8072 4 | 1.7656 5 | 1.7859 6 | 1.8072 7 | 1.8021 8 | 1.7864 9 | 1.8072 10 | 1.7965 11 | 1.7917 12 | 1.7916 13 | 1.7916 14 | 1.7864 15 | 1.7864 16 | 1.7917 17 | 1.8125 18 | 1.7969 19 | 1.802 20 | 1.7864 21 | 1.7804 22 | 1.8002 23 | 1.7961 24 | 1.7952 25 | 1.802 26 | -------------------------------------------------------------------------------- /raw-results/primary-bench_io_mod-results.txt: -------------------------------------------------------------------------------- 1 | 1.4843 2 | 1.5312 3 | 1.4946 4 | 1.5051 5 | 1.507 6 | 1.5103 7 | 1.4998 8 | 1.5052 9 | 1.4947 10 | 1.4947 11 | 1.4998 12 | 1.4947 13 | 1.63 14 | 1.5051 15 | 1.5077 16 | 1.4894 17 | 1.4947 18 | 1.5674 19 | 1.5051 20 | 1.4999 21 | 1.5104 22 | 1.6249 23 | 1.4999 24 | 1.4894 25 | 1.5052 26 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mbw-results_DUMB.csv: -------------------------------------------------------------------------------- 1 | 22921.448 2 | 22932.359 3 | 22925.182 4 | 22921.085 5 | 23127.173 6 | 22995.901 7 | 23308.027 8 | 22865.039 9 | 22900.344 10 | 22910.382 11 | 22881.883 12 | 22898.626 13 | 22905.976 14 | 22872.390 15 | 22917.269 16 | 22914.442 17 | 22911.124 18 | 22855.680 19 | 22923.884 20 | 22922.178 21 | 22951.595 22 | 22744.113 23 | 22922.608 24 | 22965.678 25 | 22887.766 26 | 22917.589 27 | 22910.199 28 | 22901.760 29 | 22947.608 30 | 22916.976 31 | 22926.950 32 | 22947.433 33 | 22920.232 34 | 22961.232 35 | 22925.053 36 | 22879.549 37 | 22954.046 38 | 22888.424 39 | 22911.834 40 | 22883.126 41 | 22872.123 42 | 22841.183 43 | 22914.670 44 | 22887.680 45 | 22856.287 46 | 22956.158 47 | 22971.880 48 | 22933.770 49 | 22942.950 50 | 22906.956 51 | 22945.714 52 | 22932.032 53 | 22922.350 54 | 22940.632 55 | 22874.750 56 | 22895.627 57 | 22905.680 58 | 22950.137 59 | 22957.124 60 | 22926.522 61 | 23064.619 62 | 23054.023 63 | 23054.208 64 | 22854.800 65 | 22888.239 66 | 22932.176 67 | 23309.963 68 | 22895.480 69 | 22903.507 70 | 22949.648 71 | 22980.992 72 | 22925.052 73 | 22891.647 74 | 23195.105 75 | 22981.537 76 | 22855.852 77 | 22916.543 78 | 22913.828 79 | 22784.633 80 | 23271.881 81 | 22941.702 82 | 22999.180 83 | 23020.416 84 | 22977.591 85 | 22957.631 86 | 22921.075 87 | 22856.702 88 | 22862.416 89 | 22933.248 90 | 22910.515 91 | 22930.852 92 | 22960.647 93 | 22842.797 94 | 23318.537 95 | 23292.256 96 | 22903.121 97 | 22874.660 98 | 22931.251 99 | 22895.320 100 | 22910.659 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mbw-results_MCBLOCK.csv: -------------------------------------------------------------------------------- 1 | 28974.302 2 | 28764.870 3 | 28964.964 4 | 28882.952 5 | 29323.119 6 | 28854.569 7 | 29486.238 8 | 28763.067 9 | 28901.232 10 | 28939.960 11 | 28828.946 12 | 28938.197 13 | 28849.695 14 | 28906.973 15 | 28849.947 16 | 28884.998 17 | 28876.257 18 | 29224.427 19 | 28972.016 20 | 28786.198 21 | 28855.095 22 | 28882.470 23 | 28794.425 24 | 28844.337 25 | 28914.402 26 | 28860.687 27 | 28852.173 28 | 29087.242 29 | 28922.587 30 | 28857.886 31 | 28878.384 32 | 29367.855 33 | 28866.255 34 | 28837.511 35 | 28884.083 36 | 29256.924 37 | 29214.337 38 | 28959.893 39 | 29167.985 40 | 28981.430 41 | 30261.225 42 | 29026.128 43 | 28964.880 44 | 28849.915 45 | 28963.556 46 | 28922.357 47 | 29123.504 48 | 29940.642 49 | 29183.972 50 | 29093.252 51 | 28724.132 52 | 28952.353 53 | 28889.482 54 | 28780.105 55 | 28844.580 56 | 28907.589 57 | 28899.472 58 | 29182.470 59 | 29063.289 60 | 29185.113 61 | 29716.550 62 | 30465.198 63 | 29017.455 64 | 28848.051 65 | 28941.565 66 | 28987.374 67 | 30441.637 68 | 28663.205 69 | 29453.822 70 | 28869.319 71 | 28924.251 72 | 28980.088 73 | 28896.206 74 | 31573.499 75 | 30031.255 76 | 28850.915 77 | 28908.143 78 | 28717.183 79 | 28888.638 80 | 30838.213 81 | 28904.288 82 | 29270.387 83 | 29247.885 84 | 28835.716 85 | 28731.837 86 | 28897.871 87 | 28921.483 88 | 28684.366 89 | 28956.974 90 | 29072.257 91 | 28841.009 92 | 28965.767 93 | 31938.077 94 | 30040.132 95 | 30330.017 96 | 28817.747 97 | 29036.463 98 | 28958.833 99 | 28950.531 100 | 28969.051 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mbw-results_MEMCPY.csv: -------------------------------------------------------------------------------- 1 | 28151.374 2 | 28029.830 3 | 28110.088 4 | 27952.659 5 | 28297.982 6 | 28085.643 7 | 28135.577 8 | 28208.011 9 | 28193.795 10 | 28130.110 11 | 28002.138 12 | 28016.154 13 | 28006.689 14 | 28013.319 15 | 27970.623 16 | 28011.648 17 | 28200.909 18 | 28317.791 19 | 27772.006 20 | 27830.993 21 | 28134.821 22 | 28008.167 23 | 27982.942 24 | 27878.302 25 | 27885.561 26 | 27830.958 27 | 27798.763 28 | 28023.238 29 | 27824.717 30 | 27794.793 31 | 27946.643 32 | 28179.528 33 | 27858.713 34 | 28080.026 35 | 27913.573 36 | 28253.666 37 | 28205.070 38 | 28025.424 39 | 28015.242 40 | 27915.077 41 | 27951.509 42 | 28348.656 43 | 28011.633 44 | 27996.922 45 | 28546.309 46 | 28216.025 47 | 28264.826 48 | 28046.227 49 | 28126.670 50 | 28051.574 51 | 27959.054 52 | 28068.580 53 | 28368.885 54 | 27959.772 55 | 27976.096 56 | 28003.517 57 | 28132.511 58 | 28058.905 59 | 28546.079 60 | 28218.795 61 | 28210.813 62 | 28900.586 63 | 28059.723 64 | 28277.885 65 | 28024.728 66 | 27984.771 67 | 28015.991 68 | 28028.358 69 | 27849.051 70 | 27832.873 71 | 28300.496 72 | 28054.952 73 | 28149.700 74 | 28803.858 75 | 28371.463 76 | 27937.756 77 | 27983.904 78 | 27783.256 79 | 27979.018 80 | 27967.010 81 | 27857.829 82 | 28270.913 83 | 27954.885 84 | 27802.713 85 | 27980.639 86 | 27802.668 87 | 27878.672 88 | 27817.962 89 | 28005.968 90 | 28209.820 91 | 28233.857 92 | 28066.262 93 | 27268.857 94 | 28144.277 95 | 28059.674 96 | 28015.821 97 | 28140.900 98 | 27946.639 99 | 27997.750 100 | 28092.919 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mysql-cpu.csv: -------------------------------------------------------------------------------- 1 | x,user,nice,system,idle,iowait,irq,softirq,steal,guest,guest_nice 2 | cpu,420,0,980,8501062,56,152,151,0,0,0 3 | cpu,428,0,984,8549065,56,153,152,0,0,0 4 | cpu,432,0,986,8597071,56,153,153,0,0,0 5 | cpu,433,0,989,8645077,56,154,157,0,0,0 6 | cpu,436,0,992,8693082,56,155,158,0,0,0 7 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mysql-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 80561,822,79738,0,19,176 3 | 80561,823,79738,0,19,176 4 | 80561,824,79737,0,19,176 5 | 80561,825,79735,0,19,176 6 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mysql-results.csv: -------------------------------------------------------------------------------- 1 | 1042.52 2 | 1018.99 3 | 1011.40 4 | 1054.68 5 | 1054.72 6 | 1007.15 7 | 1012.63 8 | 982.82 9 | 979.95 10 | 1007.30 11 | 990.14 12 | 987.24 13 | 1023.27 14 | 996.27 15 | 1037.66 16 | 1004.65 17 | 1069.96 18 | 1025.51 19 | 995.33 20 | 1025.69 21 | 1006.17 22 | 1000.89 23 | 989.17 24 | 999.51 25 | 1019.63 26 | 1053.19 27 | 1052.30 28 | 989.11 29 | 1017.33 30 | 979.41 31 | 974.39 32 | 1011.73 33 | 988.73 34 | 1015.64 35 | 991.47 36 | 993.47 37 | 1029.52 38 | 971.49 39 | 1006.27 40 | 1036.94 41 | 1041.61 42 | 1015.96 43 | 1013.47 44 | 1042.86 45 | 971.33 46 | 1021.33 47 | 989.22 48 | 1002.26 49 | 1074.62 50 | 1007.52 51 | 1023.78 52 | 999.65 53 | 1034.54 54 | 977.49 55 | 1040.75 56 | 1023.49 57 | 999.81 58 | 1036.66 59 | 980.57 60 | 1024.93 61 | 979.33 62 | 975.65 63 | 1043.00 64 | 1064.79 65 | 991.21 66 | 1055.09 67 | 1002.55 68 | 1038.09 69 | 1061.78 70 | 985.39 71 | 1027.76 72 | 1034.84 73 | 987.43 74 | 1024.56 75 | 979.74 76 | 977.68 77 | 995.46 78 | 998.78 79 | 1013.78 80 | 1065.33 81 | 1008.13 82 | 1015.48 83 | 983.15 84 | 1002.93 85 | 1045.20 86 | 986.24 87 | 982.42 88 | 1018.21 89 | 1033.13 90 | 1030.09 91 | 1023.82 92 | 980.75 93 | 978.26 94 | 1010.77 95 | 1028.51 96 | 979.41 97 | 1044.73 98 | 1022.58 99 | 1010.20 100 | 990.63 101 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mysql_index-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 80561,824,79737,0,19,175 3 | 80561,825,79736,0,19,175 4 | 80561,825,79735,0,19,175 5 | 80561,826,79735,0,19,176 6 | 80561,826,79734,0,19,176 7 | 80561,827,79734,0,19,175 8 | 80561,1331,79229,0,10,551 9 | 80561,1736,78825,0,10,659 10 | 80561,1848,78713,0,10,726 11 | 80561,2017,78543,0,11,821 12 | 80561,2113,78448,0,11,886 13 | 80561,2195,78365,0,11,948 14 | 80561,2286,78275,0,11,1019 15 | 80561,2353,78208,0,11,1070 16 | 80561,2405,78156,0,11,1121 17 | 80561,2462,78098,0,11,1177 18 | 80561,2526,78034,0,11,1242 19 | 80561,2573,77988,0,11,1289 20 | 80561,2623,77938,0,11,1341 21 | 80561,2692,77869,0,11,1407 22 | 80561,2783,77778,0,11,1496 23 | 80561,2870,77691,0,11,1582 24 | 80561,2953,77608,0,11,1665 25 | 80561,2622,77938,0,11,1541 26 | 80561,2685,77876,0,11,1574 27 | 80561,2802,77759,0,11,1650 28 | 80561,2889,77672,0,11,1715 29 | 80561,2979,77582,0,11,1781 30 | 80561,3038,77523,0,11,1824 31 | 80561,3065,77495,0,11,1840 32 | 80561,3078,77483,0,11,1856 33 | 80561,3086,77474,0,11,1864 34 | 80561,3098,77463,0,11,1872 35 | 80561,3096,77464,0,11,1872 36 | 80561,3109,77452,0,11,1880 37 | 80561,3121,77440,0,11,1888 38 | 80561,3118,77443,0,11,1888 39 | 80561,2793,77768,0,11,1703 40 | 80561,2847,77714,0,11,1728 41 | 80561,2916,77645,0,11,1760 42 | 80561,2965,77596,0,11,1784 43 | 80561,3012,77549,0,11,1808 44 | 80561,3042,77518,0,11,1824 45 | 80561,3071,77490,0,11,1840 46 | 80561,3089,77471,0,11,1856 47 | 80561,3096,77465,0,11,1863 48 | 80561,3093,77467,0,11,1864 49 | 80561,3104,77456,0,11,1872 50 | 80561,3112,77449,0,11,1880 51 | 80561,3112,77448,0,11,1880 52 | 80561,3122,77439,0,11,1888 53 | 80561,2727,77833,0,11,1672 54 | 80561,2832,77728,0,11,1720 55 | 80561,2920,77641,0,11,1760 56 | 80561,2970,77591,0,11,1784 57 | 80561,3008,77553,0,11,1800 58 | 80561,3047,77514,0,11,1824 59 | 80561,3077,77484,0,11,1840 60 | 80561,3092,77469,0,11,1856 61 | 80561,3090,77471,0,11,1856 62 | 80561,3100,77460,0,11,1864 63 | 80561,3111,77450,0,11,1872 64 | 80561,3111,77450,0,11,1880 65 | 80561,3119,77441,0,11,1888 66 | 80561,3119,77442,0,11,1888 67 | 80561,2704,77856,0,11,1658 68 | 80561,2794,77767,0,11,1713 69 | 80561,2896,77665,0,11,1752 70 | 80561,2956,77605,0,11,1784 71 | 80561,3003,77558,0,11,1808 72 | 80561,3031,77530,0,11,1824 73 | 80561,3063,77497,0,11,1840 74 | 80561,3078,77482,0,11,1856 75 | 80561,3087,77474,0,11,1864 76 | 80561,3095,77466,0,11,1872 77 | 80561,3093,77467,0,11,1872 78 | 80561,3102,77458,0,11,1880 79 | 80561,3103,77458,0,11,1880 80 | 80561,3106,77455,0,11,1888 81 | 80561,2773,77788,0,11,1702 82 | 80561,2830,77731,0,11,1728 83 | 80561,2904,77656,0,11,1760 84 | 80561,2953,77607,0,11,1784 85 | 80561,2997,77564,0,11,1808 86 | 80561,3034,77527,0,11,1824 87 | 80561,3061,77500,0,11,1840 88 | 80561,3076,77485,0,11,1856 89 | 80561,3081,77480,0,11,1864 90 | 80561,3090,77471,0,11,1872 91 | 80561,3089,77471,0,11,1872 92 | 80561,3099,77462,0,11,1880 93 | 80561,3108,77453,0,11,1888 94 | 80561,3106,77455,0,11,1888 95 | 80561,2785,77776,0,11,1703 96 | 80561,2840,77720,0,11,1728 97 | 80561,2907,77653,0,11,1760 98 | 80561,2953,77608,0,11,1784 99 | 80561,3001,77559,0,11,1808 100 | 80561,3037,77523,0,11,1824 101 | 80561,3061,77500,0,11,1840 102 | 80561,3080,77481,0,11,1856 103 | 80561,3081,77480,0,11,1856 104 | 80561,3089,77472,0,11,1864 105 | 80561,3096,77464,0,11,1872 106 | 80561,3106,77454,0,11,1880 107 | 80561,3104,77457,0,11,1880 108 | 80561,3111,77449,0,11,1888 109 | 80561,2783,77778,0,11,1703 110 | 80561,2836,77725,0,11,1728 111 | 80561,2917,77644,0,11,1760 112 | 80561,2962,77598,0,11,1784 113 | 80561,3006,77555,0,11,1808 114 | 80561,3040,77520,0,11,1824 115 | 80561,3065,77495,0,11,1840 116 | 80561,3080,77481,0,11,1856 117 | 80561,3081,77480,0,11,1856 118 | 80561,3096,77465,0,11,1872 119 | 80561,3099,77462,0,11,1872 120 | 80561,3108,77453,0,11,1880 121 | 80561,3121,77440,0,11,1888 122 | 80561,3117,77443,0,11,1888 123 | 80561,2780,77781,0,11,1704 124 | 80561,2832,77728,0,11,1728 125 | 80561,2905,77655,0,11,1760 126 | 80561,2952,77609,0,11,1784 127 | 80561,3000,77561,0,11,1808 128 | 80561,3032,77529,0,11,1824 129 | 80561,3059,77502,0,11,1840 130 | 80561,3068,77492,0,11,1848 131 | 80561,3078,77483,0,11,1856 132 | 80561,3086,77475,0,11,1864 133 | 80561,3097,77463,0,11,1872 134 | 80561,3108,77453,0,11,1880 135 | 80561,3107,77454,0,11,1880 136 | 80561,3114,77446,0,11,1888 137 | 80561,3122,77438,0,11,1896 138 | 80561,2785,77775,0,11,1710 139 | 80561,2888,77673,0,11,1752 140 | 80561,2937,77624,0,11,1776 141 | 80561,2984,77577,0,11,1800 142 | 80561,3021,77540,0,11,1816 143 | 80561,3068,77493,0,11,1840 144 | 80561,3075,77486,0,11,1848 145 | 80561,3083,77477,0,11,1856 146 | 80561,3091,77470,0,11,1864 147 | 80561,3100,77461,0,11,1872 148 | 80561,3106,77454,0,11,1880 149 | 80561,3108,77453,0,11,1880 150 | 80561,3118,77443,0,11,1888 151 | 80561,3122,77439,0,11,1888 152 | 80561,2794,77767,0,11,1710 153 | 80561,2898,77662,0,11,1752 154 | 80561,2946,77615,0,11,1776 155 | 80561,2996,77565,0,11,1800 156 | 80561,3026,77534,0,11,1816 157 | 80561,3067,77493,0,11,1840 158 | 80561,3075,77486,0,11,1848 159 | 80561,3083,77478,0,11,1856 160 | 80561,3093,77468,0,11,1864 161 | 80561,3099,77462,0,11,1872 162 | 80561,3106,77454,0,11,1880 163 | 80561,3107,77454,0,11,1880 164 | 80561,3119,77442,0,11,1888 165 | 80561,3118,77442,0,11,1888 166 | 80561,2795,77765,0,11,1710 167 | 80561,2868,77692,0,11,1736 168 | 80561,2933,77628,0,11,1768 169 | 80561,2983,77578,0,11,1792 170 | 80561,3022,77539,0,11,1808 171 | 80561,3059,77501,0,11,1832 172 | 80561,3077,77484,0,11,1840 173 | 80561,3090,77470,0,11,1856 174 | 80561,3098,77463,0,11,1864 175 | 80561,3099,77461,0,11,1864 176 | 80561,3110,77450,0,11,1872 177 | 80561,3120,77441,0,11,1880 178 | 80561,3125,77435,0,11,1884 179 | 80561,3128,77433,0,11,1888 180 | 80561,2727,77834,0,11,1672 181 | 80561,2829,77732,0,11,1720 182 | 80561,2917,77644,0,11,1760 183 | 80561,2967,77594,0,11,1784 184 | 80561,3014,77547,0,11,1808 185 | 80561,3047,77514,0,11,1824 186 | 80561,3075,77486,0,11,1840 187 | 80561,3094,77466,0,11,1856 188 | 80561,3098,77462,0,11,1864 189 | 80561,3105,77456,0,11,1872 190 | 80561,3103,77457,0,11,1872 191 | 80561,3115,77446,0,11,1880 192 | 80561,3112,77448,0,11,1880 193 | 80561,3122,77439,0,11,1888 194 | 80561,3122,77439,0,11,1888 195 | 80561,2793,77768,0,11,1710 196 | 80561,2900,77660,0,11,1752 197 | 80561,2950,77611,0,11,1776 198 | 80561,2998,77562,0,11,1800 199 | 80561,3033,77528,0,11,1816 200 | 80561,3071,77490,0,11,1840 201 | 80561,3077,77483,0,11,1848 202 | 80561,3086,77474,0,11,1856 203 | 80561,3095,77465,0,11,1864 204 | 80561,3103,77457,0,11,1872 205 | 80561,3112,77448,0,11,1880 206 | 80561,3113,77447,0,11,1880 207 | 80561,3122,77438,0,11,1888 208 | 80561,3119,77442,0,11,1888 209 | 80561,2760,77801,0,11,1710 210 | 80561,2875,77686,0,11,1744 211 | 80561,2933,77628,0,11,1768 212 | 80561,2979,77581,0,11,1792 213 | 80561,3023,77538,0,11,1816 214 | 80561,3057,77504,0,11,1832 215 | 80561,3076,77484,0,11,1848 216 | 80561,3085,77476,0,11,1856 217 | 80561,3091,77470,0,11,1864 218 | 80561,3098,77463,0,11,1872 219 | 80561,3099,77462,0,11,1872 220 | 80561,3111,77449,0,11,1880 221 | 80561,3121,77440,0,11,1888 222 | 80561,3122,77439,0,11,1888 223 | 80561,2793,77768,0,11,1702 224 | 80561,2845,77716,0,11,1728 225 | 80561,2920,77641,0,11,1760 226 | 80561,2970,77591,0,11,1784 227 | 80561,3016,77545,0,11,1808 228 | 80561,3049,77512,0,11,1824 229 | 80561,3077,77484,0,11,1840 230 | 80561,3090,77470,0,11,1856 231 | 80561,3095,77465,0,11,1864 232 | 80561,3098,77463,0,11,1864 233 | 80561,3110,77451,0,11,1872 234 | 80561,3115,77445,0,11,1880 235 | 80561,3116,77445,0,11,1880 236 | 80561,3124,77436,0,11,1888 237 | 80561,3124,77436,0,11,1888 238 | 80561,2795,77766,0,11,1710 239 | 80561,2888,77672,0,11,1744 240 | 80561,2950,77611,0,11,1776 241 | 80561,2993,77568,0,11,1800 242 | 80561,3025,77535,0,11,1816 243 | 80561,3063,77498,0,11,1832 244 | 80561,3079,77482,0,11,1848 245 | 80561,3089,77472,0,11,1856 246 | 80561,3096,77464,0,11,1864 247 | 80561,3104,77457,0,11,1872 248 | 80561,3110,77450,0,11,1880 249 | 80561,3109,77452,0,11,1880 250 | 80561,3118,77442,0,11,1888 251 | 80561,3119,77442,0,11,1888 252 | 80561,2791,77769,0,11,1709 253 | 80561,2865,77696,0,11,1736 254 | 80561,2935,77626,0,11,1768 255 | 80561,2983,77578,0,11,1792 256 | 80561,3026,77534,0,11,1816 257 | 80561,3059,77502,0,11,1832 258 | 80561,3080,77480,0,11,1848 259 | 80561,3089,77471,0,11,1856 260 | 80561,3097,77463,0,11,1864 261 | 80561,3108,77453,0,11,1872 262 | 80561,3113,77447,0,11,1880 263 | 80561,3116,77445,0,11,1880 264 | 80561,3122,77439,0,11,1888 265 | 80561,3123,77437,0,11,1888 266 | 80561,2799,77762,0,11,1707 267 | 80561,2872,77689,0,11,1736 268 | 80561,2933,77628,0,11,1768 269 | 80561,2982,77579,0,11,1792 270 | 80561,3020,77540,0,11,1808 271 | 80561,3065,77495,0,11,1832 272 | 80561,3079,77482,0,11,1840 273 | 80561,3096,77465,0,11,1856 274 | 80561,3103,77457,0,11,1864 275 | 80561,3110,77450,0,11,1872 276 | 80561,3109,77451,0,11,1872 277 | 80561,3119,77441,0,11,1880 278 | 80561,3116,77444,0,11,1880 279 | 80561,3125,77435,0,11,1888 280 | 80561,2712,77849,0,11,1657 281 | 80561,2806,77754,0,11,1713 282 | 80561,2916,77645,0,11,1760 283 | 80561,2971,77590,0,11,1784 284 | 80561,3005,77556,0,11,1800 285 | 80561,3046,77515,0,11,1824 286 | 80561,3076,77484,0,11,1840 287 | 80561,3084,77477,0,11,1848 288 | 80561,3095,77466,0,11,1856 289 | 80561,3102,77458,0,11,1864 290 | 80561,3108,77453,0,11,1872 291 | 80561,3119,77442,0,11,1880 292 | 80561,3118,77442,0,11,1880 293 | 80561,3127,77434,0,11,1888 294 | 80561,3127,77433,0,11,1888 295 | 80561,2803,77758,0,11,1710 296 | 80561,2902,77659,0,11,1752 297 | 80561,2948,77612,0,11,1776 298 | 80561,2999,77562,0,11,1800 299 | 80561,3030,77531,0,11,1816 300 | 80561,3065,77496,0,11,1832 301 | 80561,3083,77478,0,11,1848 302 | 80561,3090,77471,0,11,1856 303 | 80561,3096,77465,0,11,1864 304 | 80561,3103,77457,0,11,1872 305 | 80561,3114,77447,0,11,1880 306 | 80561,3113,77448,0,11,1880 307 | 80561,3125,77436,0,11,1888 308 | 80561,3127,77434,0,11,1888 309 | 80561,2766,77795,0,11,1710 310 | 80561,2870,77691,0,11,1736 311 | 80561,2929,77631,0,11,1768 312 | 80561,2979,77582,0,11,1792 313 | 80561,3011,77549,0,11,1808 314 | 80561,3042,77518,0,11,1824 315 | 80561,3070,77491,0,11,1840 316 | 80561,3088,77473,0,11,1856 317 | 80561,3104,77457,0,11,1864 318 | 80561,3113,77447,0,11,1872 319 | 80561,3111,77449,0,11,1872 320 | 80561,3122,77439,0,11,1880 321 | 80561,3120,77441,0,11,1880 322 | 80561,3128,77432,0,11,1888 323 | 80561,2735,77826,0,11,1674 324 | 80561,2835,77725,0,11,1720 325 | 80561,2919,77642,0,11,1760 326 | 80561,2966,77594,0,11,1784 327 | 80561,2999,77562,0,11,1800 328 | 80561,3040,77520,0,11,1824 329 | 80561,3070,77490,0,11,1840 330 | 80561,3086,77475,0,11,1856 331 | 80561,3086,77474,0,11,1856 332 | 80561,3095,77466,0,11,1864 333 | 80561,3110,77450,0,11,1872 334 | 80561,3117,77444,0,11,1880 335 | 80561,3119,77442,0,11,1880 336 | 80561,3128,77433,0,11,1888 337 | 80561,3126,77435,0,11,1888 338 | 80561,2799,77761,0,11,1709 339 | 80561,2886,77675,0,11,1744 340 | 80561,2944,77616,0,11,1768 341 | 80561,2995,77566,0,11,1792 342 | 80561,3035,77526,0,11,1816 343 | 80561,3068,77493,0,11,1832 344 | 80561,3088,77472,0,11,1848 345 | 80561,3096,77464,0,11,1856 346 | 80561,3104,77456,0,11,1864 347 | 80561,3114,77447,0,11,1872 348 | 80561,3120,77441,0,11,1880 349 | 80561,3118,77443,0,11,1880 350 | 80561,3124,77437,0,11,1888 351 | 80561,3125,77436,0,11,1888 352 | 80561,2790,77771,0,11,1703 353 | 80561,2865,77695,0,11,1736 354 | 80561,2931,77630,0,11,1768 355 | 80561,2979,77582,0,11,1792 356 | 80561,3015,77545,0,11,1808 357 | 80561,3061,77500,0,11,1832 358 | 80561,3077,77484,0,11,1840 359 | 80561,3096,77464,0,11,1856 360 | 80561,3103,77458,0,11,1864 361 | 80561,3110,77451,0,11,1872 362 | 80561,3107,77453,0,11,1872 363 | 80561,3119,77441,0,11,1880 364 | 80561,3128,77432,0,11,1888 365 | 80561,3131,77429,0,11,1888 366 | 80561,2705,77856,0,11,1650 367 | 80561,2699,77862,0,11,1649 368 | 80561,2693,77868,0,11,1649 369 | 80561,2691,77870,0,11,1649 370 | -------------------------------------------------------------------------------- /raw-results/primary-bench_mysql_index-results.csv: -------------------------------------------------------------------------------- 1 | 2 | 4567.8 210.9 3 | 5158.0 206.8 4 | 5125.5 198.5 5 | 5153.7 201.4 6 | 5239.9 204.0 7 | 5219.4 204.3 8 | 5175.8 203.8 9 | 5160.5 204.7 10 | 5052.9 204.0 11 | 5202.8 210.4 12 | 5022.9 204.9 13 | 5020.4 204.5 14 | 5119.3 197.9 15 | 5017.1 198.5 16 | 5046.7 195.9 17 | 5025.1 196.0 18 | 5099.9 206.7 19 | 5156.2 207.3 20 | 5018.3 206.5 21 | 5074.9 200.0 22 | 5052.0 199.5 23 | 5019.3 196.2 24 | 4998.9 204.2 25 | 5094.9 208.0 26 | 5058.3 204.1 27 | -------------------------------------------------------------------------------- /raw-results/primary-serial-container-boot-results.txt: -------------------------------------------------------------------------------- 1 | 918f94691d0e5c2cbd1ece131cd4dbeb84a06e628d4a817a03585194a2a05472 2 | 1f1e9a89edc6987c3b22d7ddb05072f81b0820f5ccdb6afd66fcf1bf76f9dab6 3 | 99f00e840b966ddfdd162dc4f216fe753b2855f860668267590c3b76bf19c769 4 | 81d4f78eead2dad9247e200133b3b2e9bbe96899507e988ed2d874b1343a44fe 5 | e15d61d3361106b0d9e833442b6e14c8ab23a6a91c1e206d68737c54cf0a3392 6 | aeb266b2bbbdc0ef33dad9b748ad4776c58ed9962dd51d0389ca83f7ab3cda4e 7 | a2b4fe7f002d1a043268dfcae461da82d3d63f8f133d0edb068095dc6eecb692 8 | a27cf03d3f18ad9311fc03505e3878d732fe9005892969efcdc31f34073cfc61 9 | 63d198908b301a1f3d4b30d499ed7dde2ab9ca36e80a4c0092736832e3ec4800 10 | b37745cf051eb37666266a56384e58fa3066a02af55fdf0830c36ab077fbb1b1 11 | 777b1784ed07cfdf7a1f55f6e0dda783184edcc3d7b8122e536f2789e770e2cc 12 | e943e714f0ec4ccf2d92207e40cb7e85bac21527eafa08e826c057e7b690cb8c 13 | 2ee8d728f11f6a97505b0e93f1be1ceab38dcad6444890ad8c4fc3e2482200d0 14 | 82eda7acb3c125e7f4a28ffe5b690f6ad21645cff639ec581129511918e3eb94 15 | 6e63f853127217bc950b292ecd073a47a6a45649eba1e5484f8a261e228338a0 16 | 194e7ffec8099fa7a8cb48cddb3738fd4c5e21de253b86fe365731287a7c8b49 17 | 19958e9896990d447771e16282b05031fa5b2017975f57de47ff08159f2532ee 18 | 150600ce3835d79907dff29f4c0c71e4216f82b2cf2f2cb8fc6e8e5ca258307f 19 | 9fae77498093c8ff39174ba18a17e4598d3515b0657e53a7e29d7f0d19942564 20 | 680f97e5f497a592d0493a094bee6c271b54cb17118a09e529f2ade2476d9e8d 21 | ea2b39d897aec016786b76ea74a639933491ddef8cded5c864c18904cb94e083 22 | dc3f4f071e297b4be537cdc445e2edea17853634a90979ac40ba433cfd452003 23 | c21e5dd433dc7163b18c6777b9b479af127eefb5823915eddd048d3f27ac55d8 24 | a55d106d41de8e7b19cb0bb21225f66f9f7e212f76ecd77bba350ec21c4ebf2d 25 | 5e1a09b8e20a8ac7b502c16c4958606fcd998c6391d3a61c4a12184803ec9e5c 26 | 4acbf8d3aad8ca74aef8f36a30628650ff51d002ca24c4e4d223ff4093410ed4 27 | d4bf081095d07fe0bba63cf6dcd3cf87f07c1936aabc1d8797e2877800e52a99 28 | 0a3158bc87e64f7c1087f8bc6dd55f72e9582bb2c0df9ad00e916bfd53fe68d2 29 | 490aaf63f2b2b46d43825e9b698ee2321bb4dcde2f36623aa5703add6b271e7b 30 | 269a8c93168d7ff5ee8714cc523bb71aa388883f777cb134aeb8c88d6579ca01 31 | 7b5c15fff1cdff97d1e315973b178d29a9eb078a32706737644da0f17702c3eb 32 | d56bc2abb0e3769c747f71cf420bf55e01dd1d4e80907bfc8f0e26622008b121 33 | 853e0db2855abcd1b449495413d85e9c060a7d96c0804356e1afc318b97b3b97 34 | 59b9d8c8bcd8505500366c2497910c45b6e03d4965aecf6632c0d7da3141d5d8 35 | 76d93bbba5fcecc18eb1c4f319c558b608534df5d88372400d8e82b3b46f7f81 36 | 48e7c26bd944a96965b275f566f62e0ef19606f09c1a4af5f18045abfa368548 37 | 6f10ae573625715cd50bf2094cd47c8fbdc1ade5532acb6bd7b12843a3a91d74 38 | 1517ff375ec17078c549f9bdb6e85ef5e4b1e63fd30fb6c3115d265e539c96cc 39 | 1016276ceb1d366f4f106844521d3bdaaf8256c349508b1af828e8173909a262 40 | b0b867f7a4f33f0cd286f5de6321e6ed92e40aa6b64cf9f7d235d90f27932803 41 | 9c294895a885ca15e9705efca3cdea50e45b890d80bfaf6dc5f4f5435a9b2128 42 | fdaf3dc799a50e179e922ab8d46af37e63d8f54bddb7e1135447ec45a0041024 43 | 7f75ddd8260de6e5d6c68f1a2723333f11e4e5511d63f20a55929afd3b1ae02d 44 | 9ca28b3068da38aaa7974f9b2b4cb7840ac81fb9f4835cfb1ed9afa7fd77056d 45 | 18e59abf18e85aac5de888013dd1a13807652cfd9da4bc483aa2a30c76d93db7 46 | f20c4c0e7a0196a6a36d1665db68a0a808e56df997675c1eabe80dae1fef2d49 47 | e6669b896bdb1f12017805c5af050243dc3bee4583a264a6a876e667f944b6d9 48 | 9000ba2e29576e6ec510678ea3526b681d8563d714ccd3c928587bddbdd6081e 49 | 6b10b52a36f363cecbee1cd989cd6e75a76d4709ae30c42370768c138f2ba413 50 | 2ec5c54ade26d513dd0f13559a5167f8d1dad21285571b54408414f3883a6da3 51 | e739577a545e94d233c1a23a57614e0ba6ece131072a131f3e6ab13793d46181 52 | d767e0a3b92fa1081b7068cecda51704ba33de9c11b520ed183d5fd31ecbc91e 53 | d18e2c1aeecaa0545b1a4964d4b85b85f040d698371d87985af98dbd8c7a2618 54 | 839bc69ac27c2633cb9e96679a2a905e769d5c139eea53cbd73485e57bd10c0f 55 | 066f948864a0b17f48b58f95b51a73d572dab828a08c7abf299380e2dcae2032 56 | 0401ac03ae1d72f43cbbcc8adcfcb4d114926840a3832730a25e377121c5d61c 57 | f1e7e64608f635288c704abe634d344f8e270b7c0f659c5a5fb8fdecec20e4f7 58 | d2251141339e062147004da613b5f4a264ec4847b5526770ba1eb5bf5a0efc0a 59 | 7c935d34aa11ac2fc552e04b3dd6b57336b3620899c3e7b8aa3d334f1beba065 60 | 72dabb13e55c0918d9881f84350612e5bc8336bec9a8fda23c029e31d6f90f84 61 | 5cf811d67ac13dedafddeaf90c3816aa96450ec782984fc4938e660009ae8e33 62 | 0596da05d6e8b7b4ddcae301ba6199bf73908e1bcdb8c7e9046fa68458878dab 63 | 08c1e2571c9c49f89926ea76be716710e6c2330fecf122136936d48247fc558e 64 | 02e9b10adbdd1420536e042fd1898884a016d59dd4dc750d17a953292cbf74f7 65 | 2a45e9b304cbc09ef0b03a4b13244f1eb522c28e915ab418be92f4d0c9763caa 66 | 714feedaafee685d28a3862d6c8ec57093348422c239b2bcc26d376806377778 67 | b5e37e2d316c0752ce69e4a0a8d3ec64723a2fe0b6a243d28d6ff936caf6c27a 68 | a86fb48d12a95c7f3f4a79b36b7c2b369e57ff39323101c100e375ae04a3769b 69 | af71114c4f7eba1db9ac6ec52fd9070f61fe50ba88970bb90f35826c395dd135 70 | 4bd9f1b0a13117988b6edafbf3f5b17b202e269c3128f9f6bb452dd8ddd3eb40 71 | e653cbf1df1a7857e2609bf20fccd87e3724b0b5924c8a6a153581880f8e69a6 72 | 07179db05bfe3d8fd6f5040b5dc1cfdc9132ab2d075748e7005a19d699c989fe 73 | e89c843c653c0ecf5606729e23d73e6a34f98f0e48e61a9e8a93510f58d711e1 74 | c72431e41e1525bacfb034896ad37dfbea08290519af89c7430d637934443d2b 75 | fa37ae9b5e40da3b1ac84b1a2226bfdb97543ef20bfa04d87993f99d1821539c 76 | f3776d3c40703f61cdc1ee8e007b389847aa34c93a5eb104e4b43a5ce480bb0c 77 | 212fc98dc235818a1f32c1a1c09060c487a2725f1428bc73b0d8a8c6037fb1b7 78 | 1853383061ef4114cb5cbe32574ee1ed27f65aa56ebfd37521da3fe5837bb2cb 79 | 84294a4560744c1c702038d683e86dac37510ac066a8ad1badf62a9582ae49e6 80 | ca64b7389f826df5d622495217cea9c5e5d7b67318e96817a1b08f30a7d65231 81 | 81e0911da264e4261a8ce3b679d88af551474257bb262ed8255cf3831e3a7be4 82 | 6a3f59a37953dc19bc94413ef6dd949dfd81bb3e85fc2377da1acfd9503b8a6f 83 | a16ad62a276b82c5e891dc16918559c05ac9d98915f6ddf257865d2db0222342 84 | dc9e16f1fc578ef9ee8150251a9893fa1bf6f4b39124b3bb133a5481360697a5 85 | 76a55b9c6a31c42a7529fd6436bd13c72d229295ecdaad00dcc39be012c3c61d 86 | 35c887f05a1f1a5b05585001f956a9d0fa23655d6e7b51b05815353f407d7e8b 87 | 100c07d40c348887ea56c2fcb4c2f23766ff1b12044ce80e1934a0ec2fe7420a 88 | 4a568c6f1f8c7b76c43eef17ee314da44702492f0bcff3700b388b6a99b8f345 89 | c5f3452d452b414611c58ef6ee698a20917a5bf2a90836aa89e0691cb9d8707c 90 | 77f9aed5fef1b7685274aaf8984651853d9fdabf40b1967c4ccd4f4341b12086 91 | 77ffc0e7aa31e8b5ae8825304db46616c698a827f13c23f9ed1574693d93eb61 92 | c7551b9ec61bc76cca971ab80918af9fc1e9898c13178b186c948dabc48c507c 93 | 86492a1148bdbb7922c96ef91e4b7e8abbc6656ddf6446d7fb6c4438e0192b87 94 | 515d602c1984f44589d28fbcb3af1df7024d6e4aae284116a348468670f9cf13 95 | 02eb6a8d3ca0cfe760540ce388864b3f98d2e8f547ebe9d0a9649803c92ce70b 96 | 52718528553d8397dc119a143aed25ff33d4fdec8ec6a0a5a00c8016767888f7 97 | 328e8d6b31847a61b3d8424c2a0c0ba4127a8d44da6603c30db6df27d78cd297 98 | c5f6bdaf719d52cdaba18bca791597ba9e7bcf69a85e2008a59540d8db401f82 99 | c7c6b1540758a024ae9117bb9cc648baf8d039c58cab5fa43795cda347113bb3 100 | 3a4c7a5cc61d552fd5301f325c49b2b8b5fc59caf9449acd07ade3130438b14b 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-CPU_cpu-time.txt: -------------------------------------------------------------------------------- 1 | 35.4797 2 | 35.4760 3 | 35.4733 4 | 35.4670 5 | 35.4667 6 | 35.4649 7 | 35.4754 8 | 35.4737 9 | 35.4762 10 | 35.4751 11 | 35.4734 12 | 35.4628 13 | 35.4753 14 | 35.4745 15 | 35.4725 16 | 35.4744 17 | 35.4725 18 | 35.4848 19 | 35.4653 20 | 35.4660 21 | 35.4764 22 | 35.4649 23 | 35.4652 24 | 35.4816 25 | 35.4729 26 | 35.4737 27 | 35.4725 28 | 35.4732 29 | 35.4826 30 | 35.4715 31 | 35.4690 32 | 35.4708 33 | 35.4979 34 | 35.4707 35 | 35.4639 36 | 35.4651 37 | 35.4743 38 | 35.4713 39 | 35.4625 40 | 35.4699 41 | 35.4804 42 | 35.4740 43 | 35.4881 44 | 35.4729 45 | 35.5229 46 | 35.4670 47 | 35.4656 48 | 35.4726 49 | 35.4743 50 | 35.4715 51 | 35.4666 52 | 35.4763 53 | 35.4751 54 | 35.4687 55 | 35.4733 56 | 35.4756 57 | 35.4754 58 | 35.4752 59 | 35.4649 60 | 35.4661 61 | 35.4642 62 | 35.4656 63 | 35.4661 64 | 35.4767 65 | 35.4634 66 | 35.4736 67 | 35.4685 68 | 35.4701 69 | 35.4737 70 | 35.4754 71 | 35.4660 72 | 35.4678 73 | 35.4646 74 | 35.4811 75 | 35.4758 76 | 35.4860 77 | 35.4656 78 | 35.5571 79 | 35.4654 80 | 35.4738 81 | 35.4654 82 | 35.4743 83 | 35.4697 84 | 35.4717 85 | 35.4734 86 | 35.4666 87 | 35.4711 88 | 35.4701 89 | 35.4720 90 | 35.4658 91 | 35.4715 92 | 35.4810 93 | 35.4709 94 | 35.4740 95 | 35.4647 96 | 35.4650 97 | 35.4667 98 | 35.4655 99 | 35.4754 100 | 35.4654 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_app_ab-results.csv: -------------------------------------------------------------------------------- 1 | 8296.39 2 | 7833.63 3 | 8077.97 4 | 8134.00 5 | 7788.57 6 | 7723.06 7 | 8097.80 8 | 8143.82 9 | 8108.33 10 | 8051.20 11 | 7868.59 12 | 7909.95 13 | 8202.65 14 | 8438.53 15 | 8195.79 16 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_app_blog-results_reads.csv: -------------------------------------------------------------------------------- 1 | 575860 2 | 642371 3 | 587793 4 | 604279 5 | 582220 6 | 625215 7 | 639889 8 | 540180 9 | 530938 10 | 633642 11 | 594076 12 | 559207 13 | 611989 14 | 588994 15 | 599999 16 | 575283 17 | 569193 18 | 616722 19 | 547335 20 | 583681 21 | 559964 22 | 532375 23 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_app_blog-results_writes.csv: -------------------------------------------------------------------------------- 1 | 958 2 | 921 3 | 880 4 | 921 5 | 844 6 | 880 7 | 891 8 | 874 9 | 893 10 | 822 11 | 926 12 | 887 13 | 834 14 | 819 15 | 897 16 | 857 17 | 866 18 | 820 19 | 878 20 | 858 21 | 855 22 | 871 23 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_io-results.txt: -------------------------------------------------------------------------------- 1 | 1.8802 2 | 1.8646 3 | 1.875 4 | 1.8646 5 | 1.8646 6 | 1.875 7 | 1.8594 8 | 1.8542 9 | 1.8541 10 | 1.8729 11 | 1.875 12 | 1.8728 13 | 1.8645 14 | 1.875 15 | 1.8539 16 | 1.875 17 | 1.8541 18 | 1.8594 19 | 1.8593 20 | 1.8593 21 | 1.8437 22 | 1.8437 23 | 1.875 24 | 1.8645 25 | 1.875 26 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_io_mod-results.txt: -------------------------------------------------------------------------------- 1 | 1.5571 2 | 1.5521 3 | 1.5936 4 | 1.5832 5 | 1.6457 6 | 1.5677 7 | 1.5677 8 | 1.8847 9 | 1.5625 10 | 1.5728 11 | 1.5696 12 | 1.5521 13 | 1.5732 14 | 1.5884 15 | 1.5573 16 | 1.5677 17 | 1.5729 18 | 1.5677 19 | 1.5519 20 | 1.5624 21 | 1.5624 22 | 1.5729 23 | 1.5677 24 | 1.5729 25 | 1.5624 26 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mbw-results_DUMB.csv: -------------------------------------------------------------------------------- 1 | 23220.021 2 | 23472.972 3 | 23465.880 4 | 23179.598 5 | 23237.419 6 | 23206.199 7 | 23229.525 8 | 23205.414 9 | 23281.108 10 | 23463.881 11 | 23248.830 12 | 23178.730 13 | 23474.554 14 | 23170.108 15 | 23216.308 16 | 23196.475 17 | 23201.259 18 | 23216.902 19 | 23209.985 20 | 23227.373 21 | 23392.335 22 | 23427.566 23 | 23211.444 24 | 23433.847 25 | 23652.710 26 | 23208.908 27 | 23175.266 28 | 23185.309 29 | 23482.713 30 | 23736.105 31 | 23221.665 32 | 23186.644 33 | 23625.320 34 | 23193.208 35 | 23167.895 36 | 23250.402 37 | 23191.601 38 | 23234.797 39 | 23240.492 40 | 23204.502 41 | 23174.883 42 | 23189.759 43 | 23217.484 44 | 23467.752 45 | 23190.264 46 | 23166.687 47 | 23491.409 48 | 23310.758 49 | 23223.044 50 | 23197.241 51 | 23217.448 52 | 23217.950 53 | 23186.264 54 | 23171.561 55 | 23207.778 56 | 23157.828 57 | 23484.464 58 | 23229.524 59 | 23208.276 60 | 23211.008 61 | 23185.606 62 | 23431.099 63 | 23200.702 64 | 23252.533 65 | 23189.476 66 | 23168.897 67 | 23230.143 68 | 23440.245 69 | 23201.914 70 | 23508.859 71 | 23213.048 72 | 23212.975 73 | 23754.087 74 | 23219.078 75 | 23182.874 76 | 23372.156 77 | 23516.890 78 | 23216.225 79 | 23208.968 80 | 23192.188 81 | 23226.074 82 | 23194.406 83 | 23259.773 84 | 23209.990 85 | 23455.960 86 | 23190.865 87 | 23206.002 88 | 23183.829 89 | 23238.873 90 | 23230.556 91 | 23196.656 92 | 23213.621 93 | 23419.339 94 | 23436.624 95 | 23159.955 96 | 23198.432 97 | 23170.966 98 | 23165.990 99 | 23500.352 100 | 23184.708 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mbw-results_MCBLOCK.csv: -------------------------------------------------------------------------------- 1 | 29182.485 2 | 29328.185 3 | 29493.603 4 | 29140.253 5 | 29495.398 6 | 29212.532 7 | 29181.767 8 | 29204.389 9 | 29571.563 10 | 30624.616 11 | 29272.964 12 | 29218.794 13 | 29398.612 14 | 29169.678 15 | 29243.237 16 | 29254.826 17 | 29471.932 18 | 29364.795 19 | 29172.022 20 | 29218.372 21 | 29903.412 22 | 30118.338 23 | 29197.930 24 | 30324.074 25 | 30543.005 26 | 29200.162 27 | 29297.847 28 | 29297.454 29 | 30547.026 30 | 32493.733 31 | 29351.852 32 | 29243.735 33 | 30202.579 34 | 29181.628 35 | 29167.856 36 | 29370.783 37 | 29477.789 38 | 29189.544 39 | 29688.856 40 | 29249.874 41 | 29264.326 42 | 29220.506 43 | 29197.790 44 | 30510.528 45 | 29202.170 46 | 29163.548 47 | 29478.406 48 | 29817.838 49 | 29448.081 50 | 29225.473 51 | 29244.362 52 | 29183.812 53 | 29221.222 54 | 29170.474 55 | 29140.991 56 | 29154.992 57 | 29417.541 58 | 30177.982 59 | 29711.172 60 | 29284.734 61 | 29165.856 62 | 30111.699 63 | 29184.037 64 | 29884.829 65 | 29170.532 66 | 29317.270 67 | 29292.107 68 | 29506.464 69 | 29192.754 70 | 30092.764 71 | 29195.446 72 | 29286.514 73 | 31205.239 74 | 29191.258 75 | 29338.748 76 | 29825.224 77 | 29977.391 78 | 29408.019 79 | 29180.479 80 | 29195.040 81 | 29212.454 82 | 29249.827 83 | 29547.756 84 | 29423.404 85 | 29713.176 86 | 29215.195 87 | 29223.117 88 | 29209.467 89 | 29510.006 90 | 29194.839 91 | 29209.563 92 | 29271.101 93 | 29912.656 94 | 30175.076 95 | 29192.228 96 | 29172.890 97 | 29217.777 98 | 29214.810 99 | 29553.889 100 | 29196.490 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mbw-results_MEMCPY.csv: -------------------------------------------------------------------------------- 1 | 31161.781 2 | 31174.443 3 | 31707.569 4 | 31084.129 5 | 31704.209 6 | 31142.158 7 | 31263.958 8 | 31097.312 9 | 31599.996 10 | 31069.879 11 | 31377.061 12 | 31134.457 13 | 31488.461 14 | 31093.159 15 | 31561.749 16 | 31371.544 17 | 31872.672 18 | 31680.829 19 | 31285.837 20 | 31476.302 21 | 31899.207 22 | 30082.416 23 | 31557.825 24 | 31947.956 25 | 31475.322 26 | 31266.794 27 | 31712.608 28 | 31679.229 29 | 31228.751 30 | 28053.633 31 | 31654.683 32 | 31465.188 33 | 31607.381 34 | 31356.291 35 | 31434.232 36 | 31802.714 37 | 31880.683 38 | 31656.248 39 | 31339.553 40 | 31380.224 41 | 31345.344 42 | 31521.118 43 | 31156.447 44 | 31186.061 45 | 31372.612 46 | 31084.460 47 | 31548.684 48 | 31602.857 49 | 31584.252 50 | 31197.904 51 | 31111.105 52 | 31092.285 53 | 31046.512 54 | 31068.528 55 | 31271.940 56 | 31106.258 57 | 31063.652 58 | 31040.322 59 | 31257.487 60 | 31453.349 61 | 31029.495 62 | 31423.104 63 | 31131.762 64 | 31727.250 65 | 31222.899 66 | 31530.317 67 | 31511.297 68 | 31410.354 69 | 31540.134 70 | 28959.961 71 | 31473.335 72 | 31534.607 73 | 31187.823 74 | 31515.215 75 | 31811.736 76 | 31975.808 77 | 30714.210 78 | 31840.331 79 | 31304.560 80 | 31349.278 81 | 31308.019 82 | 31703.493 83 | 31872.783 84 | 31907.397 85 | 31909.656 86 | 31369.881 87 | 31435.174 88 | 31337.816 89 | 31860.404 90 | 31181.859 91 | 31174.484 92 | 31456.566 93 | 31518.580 94 | 31259.039 95 | 31064.474 96 | 31208.872 97 | 31414.286 98 | 31067.387 99 | 31411.267 100 | 31133.773 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mysql-results.csv: -------------------------------------------------------------------------------- 1 | 1493.80 2 | 1497.19 3 | 1540.24 4 | 1480.23 5 | 1507.14 6 | 1514.22 7 | 1501.48 8 | 1493.07 9 | 1488.04 10 | 1502.32 11 | 1567.78 12 | 1504.95 13 | 1526.23 14 | 1522.89 15 | 1540.03 16 | 1540.39 17 | 1532.54 18 | 1556.44 19 | 1521.01 20 | 1529.55 21 | 1533.32 22 | 1520.51 23 | 1482.97 24 | 1503.27 25 | 1498.04 26 | 1535.02 27 | 1525.65 28 | 1510.89 29 | 1513.52 30 | 1521.80 31 | 1531.80 32 | 1535.08 33 | 1482.04 34 | 1519.89 35 | 1505.59 36 | 1512.87 37 | 1540.20 38 | 1527.33 39 | 1513.62 40 | 1548.45 41 | 1544.37 42 | 1494.85 43 | 1512.67 44 | 1537.45 45 | 1501.86 46 | 1483.36 47 | 1528.75 48 | 1538.14 49 | 1482.23 50 | 1526.80 51 | 1494.79 52 | 1497.59 53 | 1530.14 54 | 1521.76 55 | 1527.35 56 | 1501.40 57 | 1506.33 58 | 1472.78 59 | 1528.38 60 | 1508.09 61 | 1527.29 62 | 1531.86 63 | 1523.08 64 | 1509.04 65 | 1542.81 66 | 1555.58 67 | 1514.53 68 | 1527.43 69 | 1567.56 70 | 1538.53 71 | 1526.39 72 | 1517.60 73 | 1511.75 74 | 1555.06 75 | 1479.02 76 | 1490.64 77 | 1529.01 78 | 1534.61 79 | 1527.01 80 | 1499.00 81 | 1521.76 82 | 1483.47 83 | 1512.24 84 | 1502.73 85 | 1509.44 86 | 1511.21 87 | 1493.67 88 | 1521.67 89 | 1511.81 90 | 1560.17 91 | 1521.71 92 | 1485.80 93 | 1513.21 94 | 1543.99 95 | 1551.42 96 | 1506.21 97 | 1530.57 98 | 1500.15 99 | 1530.23 100 | 1528.95 101 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mysql-results.txt: -------------------------------------------------------------------------------- 1 | for 2 | 1493.80 3 | for 4 | 1497.19 5 | for 6 | 1540.24 7 | for 8 | 1480.23 9 | for 10 | 1507.14 11 | for 12 | 1514.22 13 | for 14 | 1501.48 15 | for 16 | 1493.07 17 | for 18 | 1488.04 19 | for 20 | 1502.32 21 | for 22 | 1567.78 23 | for 24 | 1504.95 25 | for 26 | 1526.23 27 | for 28 | 1522.89 29 | for 30 | 1540.03 31 | for 32 | 1540.39 33 | for 34 | 1532.54 35 | for 36 | 1556.44 37 | for 38 | 1521.01 39 | for 40 | 1529.55 41 | for 42 | 1533.32 43 | for 44 | 1520.51 45 | for 46 | 1482.97 47 | for 48 | 1503.27 49 | for 50 | 1498.04 51 | for 52 | 1535.02 53 | for 54 | 1525.65 55 | for 56 | 1510.89 57 | for 58 | 1513.52 59 | for 60 | 1521.80 61 | for 62 | 1531.80 63 | for 64 | 1535.08 65 | for 66 | 1482.04 67 | for 68 | 1519.89 69 | for 70 | 1505.59 71 | for 72 | 1512.87 73 | for 74 | 1540.20 75 | for 76 | 1527.33 77 | for 78 | 1513.62 79 | for 80 | 1548.45 81 | for 82 | 1544.37 83 | for 84 | 1494.85 85 | for 86 | 1512.67 87 | for 88 | 1537.45 89 | for 90 | 1501.86 91 | for 92 | 1483.36 93 | for 94 | 1528.75 95 | for 96 | 1538.14 97 | for 98 | 1482.23 99 | for 100 | 1526.80 101 | for 102 | 1494.79 103 | for 104 | 1497.59 105 | for 106 | 1530.14 107 | for 108 | 1521.76 109 | for 110 | 1527.35 111 | for 112 | 1501.40 113 | for 114 | 1506.33 115 | for 116 | 1472.78 117 | for 118 | 1528.38 119 | for 120 | 1508.09 121 | for 122 | 1527.29 123 | for 124 | 1531.86 125 | for 126 | 1523.08 127 | for 128 | 1509.04 129 | for 130 | 1542.81 131 | for 132 | 1555.58 133 | for 134 | 1514.53 135 | for 136 | 1527.43 137 | for 138 | 1567.56 139 | for 140 | 1538.53 141 | for 142 | 1526.39 143 | for 144 | 1517.60 145 | for 146 | 1511.75 147 | for 148 | 1555.06 149 | for 150 | 1479.02 151 | for 152 | 1490.64 153 | for 154 | 1529.01 155 | for 156 | 1534.61 157 | for 158 | 1527.01 159 | for 160 | 1499.00 161 | for 162 | 1521.76 163 | for 164 | 1483.47 165 | for 166 | 1512.24 167 | for 168 | 1502.73 169 | for 170 | 1509.44 171 | for 172 | 1511.21 173 | for 174 | 1493.67 175 | for 176 | 1521.67 177 | for 178 | 1511.81 179 | for 180 | 1560.17 181 | for 182 | 1521.71 183 | for 184 | 1485.80 185 | for 186 | 1513.21 187 | for 188 | 1543.99 189 | for 190 | 1551.42 191 | for 192 | 1506.21 193 | for 194 | 1530.57 195 | for 196 | 1500.15 197 | for 198 | 1530.23 199 | for 200 | 1528.95 201 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mysql_index-mem.csv: -------------------------------------------------------------------------------- 1 | total,used,free,shared,buffers,cached 2 | 257965,1762,256202,0,18,174 3 | 257965,1763,256201,0,18,175 4 | 257965,1764,256201,0,18,175 5 | 257965,1762,256202,0,18,175 6 | 257965,1762,256203,0,18,175 7 | 257965,1760,256204,0,19,175 8 | 257965,2277,255687,0,8,573 9 | 257965,2668,255297,0,10,665 10 | 257965,2773,255191,0,11,727 11 | 257965,2946,255018,0,11,824 12 | 257965,3046,254919,0,11,894 13 | 257965,3139,254825,0,11,966 14 | 257965,3237,254727,0,11,1039 15 | 257965,3318,254647,0,11,1108 16 | 257965,3390,254574,0,11,1182 17 | 257965,3474,254490,0,11,1263 18 | 257965,3565,254399,0,11,1352 19 | 257965,3649,254316,0,11,1436 20 | 257965,3742,254222,0,11,1528 21 | 257965,3824,254141,0,11,1610 22 | 257965,3485,254479,0,11,1483 23 | 257965,3578,254387,0,11,1529 24 | 257965,3693,254271,0,11,1608 25 | 257965,3796,254168,0,11,1687 26 | 257965,3881,254083,0,11,1748 27 | 257965,3976,253989,0,11,1824 28 | 257965,4003,253961,0,11,1848 29 | 257965,4020,253945,0,11,1864 30 | 257965,4028,253936,0,11,1872 31 | 257965,4027,253937,0,11,1872 32 | 257965,4036,253928,0,11,1880 33 | 257965,4045,253919,0,11,1888 34 | 257965,4045,253919,0,11,1888 35 | 257965,3715,254249,0,11,1710 36 | 257965,3808,254156,0,11,1744 37 | 257965,3870,254095,0,11,1776 38 | 257965,3920,254044,0,11,1800 39 | 257965,3971,253993,0,11,1824 40 | 257965,3999,253965,0,11,1840 41 | 257965,4019,253946,0,11,1856 42 | 257965,4026,253938,0,11,1864 43 | 257965,4034,253930,0,11,1872 44 | 257965,4044,253920,0,11,1880 45 | 257965,4044,253920,0,11,1880 46 | 257965,4054,253910,0,11,1888 47 | 257965,4053,253911,0,11,1888 48 | 257965,3710,254254,0,11,1710 49 | 257965,3818,254146,0,11,1752 50 | 257965,3879,254085,0,11,1784 51 | 257965,3927,254038,0,11,1809 52 | 257965,3962,254003,0,11,1825 53 | 257965,3989,253975,0,11,1841 54 | 257965,4008,253956,0,11,1857 55 | 257965,4017,253947,0,11,1865 56 | 257965,4020,253944,0,11,1873 57 | 257965,4028,253936,0,11,1881 58 | 257965,4028,253936,0,11,1881 59 | 257965,4035,253929,0,11,1889 60 | 257965,4043,253921,0,11,1897 61 | 257965,3704,254260,0,11,1710 62 | 257965,3814,254150,0,11,1753 63 | 257965,3874,254090,0,11,1785 64 | 257965,3921,254043,0,11,1809 65 | 257965,3971,253993,0,11,1833 66 | 257965,3996,253968,0,11,1849 67 | 257965,4002,253962,0,11,1857 68 | 257965,4011,253953,0,11,1865 69 | 257965,4017,253947,0,11,1873 70 | 257965,4025,253939,0,11,1881 71 | 257965,4029,253935,0,11,1881 72 | 257965,4037,253927,0,11,1889 73 | 257965,3697,254268,0,11,1703 74 | 257965,3759,254206,0,11,1729 75 | 257965,3838,254126,0,11,1769 76 | 257965,3889,254076,0,11,1793 77 | 257965,3938,254027,0,11,1817 78 | 257965,3971,253994,0,11,1833 79 | 257965,3992,253973,0,11,1849 80 | 257965,4000,253964,0,11,1857 81 | 257965,4007,253957,0,11,1865 82 | 257965,4016,253948,0,11,1873 83 | 257965,4028,253936,0,11,1881 84 | 257965,4034,253931,0,11,1889 85 | 257965,4034,253930,0,11,1889 86 | 257965,3704,254260,0,11,1710 87 | 257965,3795,254169,0,11,1745 88 | 257965,3857,254107,0,11,1777 89 | 257965,3905,254059,0,11,1801 90 | 257965,3947,254018,0,11,1817 91 | 257965,3991,253974,0,11,1841 92 | 257965,4006,253958,0,11,1857 93 | 257965,4011,253953,0,11,1865 94 | 257965,4019,253945,0,11,1873 95 | 257965,4021,253944,0,11,1873 96 | 257965,4027,253937,0,11,1881 97 | 257965,4034,253930,0,11,1889 98 | 257965,4035,253929,0,11,1889 99 | 257965,3703,254261,0,11,1711 100 | 257965,3794,254170,0,11,1745 101 | 257965,3863,254101,0,11,1777 102 | 257965,3912,254052,0,11,1801 103 | 257965,3958,254006,0,11,1824 104 | 257965,3991,253973,0,11,1841 105 | 257965,4002,253962,0,11,1849 106 | 257965,4020,253944,0,11,1865 107 | 257965,4026,253938,0,11,1872 108 | 257965,4028,253937,0,11,1873 109 | 257965,4038,253927,0,11,1881 110 | 257965,4043,253921,0,11,1889 111 | 257965,4051,253913,0,11,1897 112 | 257965,3707,254257,0,11,1711 113 | 257965,3793,254171,0,11,1745 114 | 257965,3863,254101,0,11,1777 115 | 257965,3912,254052,0,11,1801 116 | 257965,3950,254014,0,11,1817 117 | 257965,3992,253972,0,11,1841 118 | 257965,4005,253959,0,11,1857 119 | 257965,4014,253950,0,11,1865 120 | 257965,4020,253944,0,11,1873 121 | 257965,4031,253933,0,11,1881 122 | 257965,4030,253934,0,11,1881 123 | 257965,4041,253924,0,11,1889 124 | 257965,4040,253924,0,11,1889 125 | 257965,3711,254253,0,11,1711 126 | 257965,3813,254151,0,11,1753 127 | 257965,3871,254094,0,11,1777 128 | 257965,3919,254045,0,11,1801 129 | 257965,3964,254000,0,11,1825 130 | 257965,3995,253969,0,11,1841 131 | 257965,4012,253952,0,11,1857 132 | 257965,4019,253946,0,11,1865 133 | 257965,4026,253939,0,11,1873 134 | 257965,4032,253932,0,11,1881 135 | 257965,4035,253929,0,11,1881 136 | 257965,4041,253923,0,11,1889 137 | 257965,4040,253924,0,11,1889 138 | 257965,3707,254257,0,11,1710 139 | 257965,3815,254149,0,11,1753 140 | 257965,3878,254086,0,11,1785 141 | 257965,3925,254039,0,11,1809 142 | 257965,3961,254003,0,11,1825 143 | 257965,3987,253977,0,11,1841 144 | 257965,4006,253958,0,11,1857 145 | 257965,4014,253950,0,11,1865 146 | 257965,4022,253942,0,11,1873 147 | 257965,4030,253934,0,11,1881 148 | 257965,4032,253933,0,11,1881 149 | 257965,4042,253922,0,11,1889 150 | 257965,3703,254261,0,11,1703 151 | 257965,3760,254204,0,11,1729 152 | 257965,3833,254131,0,11,1761 153 | 257965,3890,254074,0,11,1793 154 | 257965,3946,254018,0,11,1817 155 | 257965,3985,253980,0,11,1833 156 | 257965,4003,253962,0,11,1849 157 | 257965,4009,253955,0,11,1857 158 | 257965,4020,253944,0,11,1865 159 | 257965,4027,253937,0,11,1873 160 | 257965,4035,253929,0,11,1881 161 | 257965,4037,253928,0,11,1881 162 | 257965,4046,253918,0,11,1889 163 | 257965,3713,254252,0,11,1711 164 | 257965,3815,254149,0,11,1753 165 | 257965,3870,254094,0,11,1777 166 | 257965,3919,254045,0,11,1801 167 | 257965,3964,254000,0,11,1825 168 | 257965,3994,253971,0,11,1841 169 | 257965,4010,253954,0,11,1857 170 | 257965,4017,253947,0,11,1865 171 | 257965,4028,253936,0,11,1873 172 | 257965,4033,253931,0,11,1881 173 | 257965,4035,253930,0,11,1881 174 | 257965,4042,253922,0,11,1889 175 | 257965,4043,253921,0,11,1889 176 | 257965,3712,254252,0,11,1711 177 | 257965,3823,254141,0,11,1753 178 | 257965,3885,254079,0,11,1785 179 | 257965,3932,254032,0,11,1809 180 | 257965,3972,253992,0,11,1825 181 | 257965,3997,253967,0,11,1841 182 | 257965,4013,253951,0,11,1857 183 | 257965,4021,253943,0,11,1865 184 | 257965,4029,253935,0,11,1873 185 | 257965,4037,253927,0,11,1881 186 | 257965,4039,253926,0,11,1881 187 | 257965,4045,253919,0,11,1889 188 | 257965,3865,254099,0,11,1897 189 | 257965,3710,254254,0,11,1710 190 | 257965,3832,254132,0,11,1761 191 | 257965,3884,254080,0,11,1785 192 | 257965,3931,254034,0,11,1809 193 | 257965,3971,253993,0,11,1825 194 | 257965,4004,253960,0,11,1849 195 | 257965,4016,253948,0,11,1857 196 | 257965,4019,253945,0,11,1865 197 | 257965,4027,253937,0,11,1873 198 | 257965,4036,253928,0,11,1881 199 | 257965,4038,253927,0,11,1881 200 | 257965,4045,253919,0,11,1889 201 | 257965,3704,254261,0,11,1702 202 | 257965,3761,254203,0,11,1729 203 | 257965,3837,254127,0,11,1761 204 | 257965,3901,254063,0,11,1793 205 | 257965,3938,254026,0,11,1809 206 | 257965,3980,253984,0,11,1833 207 | 257965,4004,253960,0,11,1849 208 | 257965,4012,253952,0,11,1857 209 | 257965,4020,253944,0,11,1865 210 | 257965,4028,253936,0,11,1873 211 | 257965,4037,253927,0,11,1881 212 | 257965,4036,253928,0,11,1881 213 | 257965,4047,253917,0,11,1889 214 | 257965,3697,254268,0,11,1695 215 | 257965,3759,254205,0,11,1729 216 | 257965,3835,254129,0,11,1761 217 | 257965,3899,254065,0,11,1793 218 | 257965,3950,254014,0,11,1817 219 | 257965,3984,253980,0,11,1833 220 | 257965,4007,253958,0,11,1849 221 | 257965,4012,253952,0,11,1857 222 | 257965,4022,253942,0,11,1865 223 | 257965,4028,253936,0,11,1873 224 | 257965,4036,253928,0,11,1881 225 | 257965,4040,253924,0,11,1881 226 | 257965,4051,253913,0,11,1889 227 | 257965,3709,254255,0,11,1704 228 | 257965,3788,254177,0,11,1737 229 | 257965,3857,254107,0,11,1769 230 | 257965,3906,254059,0,11,1793 231 | 257965,3950,254014,0,11,1817 232 | 257965,3990,253974,0,11,1833 233 | 257965,4006,253958,0,11,1849 234 | 257965,4015,253950,0,11,1857 235 | 257965,4031,253933,0,11,1873 236 | 257965,4031,253933,0,11,1873 237 | 257965,4040,253924,0,11,1881 238 | 257965,4049,253916,0,11,1889 239 | 257965,4048,253916,0,11,1889 240 | 257965,3714,254250,0,11,1711 241 | 257965,3803,254162,0,11,1745 242 | 257965,3868,254096,0,11,1777 243 | 257965,3921,254043,0,11,1801 244 | 257965,3957,254007,0,11,1817 245 | 257965,4000,253964,0,11,1841 246 | 257965,4017,253947,0,11,1857 247 | 257965,4024,253941,0,11,1865 248 | 257965,4029,253936,0,11,1873 249 | 257965,4030,253934,0,11,1873 250 | 257965,4039,253925,0,11,1881 251 | 257965,4049,253915,0,11,1889 252 | 257965,4050,253914,0,11,1889 253 | 257965,3715,254249,0,11,1711 254 | 257965,3820,254144,0,11,1753 255 | 257965,3882,254082,0,11,1785 256 | 257965,3922,254042,0,11,1801 257 | 257965,3969,253996,0,11,1825 258 | 257965,3998,253967,0,11,1841 259 | 257965,4013,253952,0,11,1857 260 | 257965,4018,253946,0,11,1865 261 | 257965,4026,253938,0,11,1873 262 | 257965,4036,253928,0,11,1881 263 | 257965,4036,253929,0,11,1881 264 | 257965,4044,253921,0,11,1889 265 | 257965,4044,253920,0,11,1889 266 | 257965,3713,254251,0,11,1711 267 | 257965,3831,254133,0,11,1761 268 | 257965,3886,254079,0,11,1785 269 | 257965,3935,254030,0,11,1809 270 | 257965,3971,253994,0,11,1825 271 | 257965,4003,253961,0,11,1849 272 | 257965,4010,253954,0,11,1857 273 | 257965,4021,253943,0,11,1865 274 | 257965,4030,253934,0,11,1873 275 | 257965,4034,253930,0,11,1881 276 | 257965,4036,253929,0,11,1881 277 | 257965,4047,253918,0,11,1889 278 | 257965,4045,253919,0,11,1889 279 | 257965,3719,254245,0,11,1711 280 | 257965,3831,254134,0,11,1761 281 | 257965,3886,254078,0,11,1785 282 | 257965,3938,254026,0,11,1809 283 | 257965,3975,253990,0,11,1825 284 | 257965,3999,253965,0,11,1841 285 | 257965,4017,253948,0,11,1857 286 | 257965,4023,253941,0,11,1865 287 | 257965,4033,253932,0,11,1873 288 | 257965,4040,253924,0,11,1881 289 | 257965,4044,253920,0,11,1881 290 | 257965,4052,253912,0,11,1889 291 | 257965,4063,253901,0,11,1897 292 | 257965,3715,254249,0,11,1711 293 | 257965,3831,254134,0,11,1761 294 | 257965,3890,254075,0,11,1785 295 | 257965,3936,254029,0,11,1809 296 | 257965,3972,253992,0,11,1825 297 | 257965,4005,253959,0,11,1849 298 | 257965,4014,253951,0,11,1857 299 | 257965,4021,253943,0,11,1865 300 | 257965,4028,253937,0,11,1873 301 | 257965,4034,253930,0,11,1881 302 | 257965,4036,253928,0,11,1881 303 | 257965,4045,253920,0,11,1889 304 | 257965,3643,254321,0,11,1676 305 | 257965,3751,254214,0,11,1721 306 | 257965,3837,254127,0,11,1761 307 | 257965,3890,254074,0,11,1785 308 | 257965,3940,254024,0,11,1809 309 | 257965,3978,253986,0,11,1825 310 | 257965,4012,253953,0,11,1849 311 | 257965,4018,253946,0,11,1857 312 | 257965,4027,253938,0,11,1865 313 | 257965,4035,253929,0,11,1873 314 | 257965,4042,253922,0,11,1881 315 | 257965,4041,253923,0,11,1881 316 | 257965,4051,253913,0,11,1889 317 | 257965,3712,254252,0,11,1703 318 | 257965,3769,254195,0,11,1729 319 | 257965,3850,254114,0,11,1761 320 | 257965,3909,254055,0,11,1793 321 | 257965,3956,254008,0,11,1817 322 | 257965,3992,253972,0,11,1833 323 | 257965,4015,253949,0,11,1849 324 | 257965,4021,253943,0,11,1857 325 | 257965,4030,253935,0,11,1865 326 | 257965,4034,253930,0,11,1873 327 | 257965,4045,253919,0,11,1881 328 | 257965,4047,253918,0,11,1881 329 | 257965,4056,253909,0,11,1889 330 | 257965,3619,254346,0,12,1650 331 | 257965,3615,254350,0,12,1650 332 | 257965,3612,254352,0,12,1650 333 | 257965,3610,254354,0,12,1650 334 | -------------------------------------------------------------------------------- /raw-results/primary_no_hypervisor-bench_mysql_index-results.csv: -------------------------------------------------------------------------------- 1 | 2 | 5838.5 233.3 3 | 5717.2 238.3 4 | 5719.2 233.9 5 | 5663.2 240.3 6 | 5773.0 241.5 7 | 5819.4 237.8 8 | 5593.9 245.9 9 | 5617.8 238.5 10 | 5714.1 240.2 11 | 5694.6 233.7 12 | 5771.1 235.7 13 | 5912.2 251.6 14 | 5642.1 241.4 15 | 5657.5 232.5 16 | 5704.8 233.2 17 | 5590.3 232.7 18 | 5733.4 239.5 19 | 5738.6 237.6 20 | 5736.7 234.4 21 | 5656.6 234.1 22 | 5634.0 239.5 23 | 5624.4 233.5 24 | 5686.7 234.9 25 | 5636.4 233.9 26 | 5723.1 231.1 27 | -------------------------------------------------------------------------------- /supplemental/build-tag-push.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Simple script to build and tag the images for these 4 | # benchmark tests and push them to a private repo for 5 | # ease of testing. 6 | 7 | # Pass the hostname of your repository as the single 8 | # argument to this script. 9 | 10 | BASEDIR=$(pwd) 11 | REMOTE_REPO="$1" 12 | 13 | for DOCKERFILE in $(find . -iname Dockerfile) ; do 14 | DIRNAME=$(dirname $DOCKERFILE) 15 | BASENAME=$(echo $DIRNAME | sed 's|./||') 16 | cd $DIRNAME && \ 17 | sudo docker build -t $BASENAME . 18 | sudo docker tag $BASENAME $REMOTE_REPO/bench-$BASENAME 19 | sudo docker push $REMOTE_REPO/bench-$BASENAME 20 | cd $BASEDIR 21 | done 22 | -------------------------------------------------------------------------------- /supplemental/cpu_results.md: -------------------------------------------------------------------------------- 1 | ### CPU PERFORMANCE - CPU and RAM Usage Graphts ### 2 | 3 | ![Graph of Primary System w/no Hypervisor, Sysbench Max Prime tests (100): 200 Second CPU Usage sample](/images/primary_no_hypervisor-CPU_cpu.png?raw=true "Graph of Primary System w/no Hypervisor, Sysbench Max Prime tests (100): 200 Second CPU Usage sample") 4 | 5 | This graph demonstrates a sampling of the CPU usage at the start of, and during, some of the Sysbench CPU usage tests. There are a few peaks evident at the start while the Docker image is downloaded, but the results are very predictable after the actual tests start. Each of the valleys you see in the _user_ load is the end of that max prime test. The corresponding red _system_ spikes are where the kernel takes over as Docker destroys the container and starts a new one. That pattern carried out over the full 100 runs with very little variation. 6 | 7 | ![Graph of Primary System with Hypervisor, Sysbench Max Prime tests (100): 200 Second CPU Usage sample](/images/primary-CPU_cpu.png?raw=true "Graph of Primary System with Hypervisor, Sysbench Max Prime tests (100): 200 Second CPU Usage sample") 8 | 9 | ![Graph of Control System, Sysbench Max Prime tests (100): 200 Second CPU Usage sample](/images/control-CPU_cpu.png?raw=true "Graph of Control System, Sysbench Max Prime tests (100): 200 Second CPU Usage sample") 10 | 11 | The control system sample of the 100 max prime tests is very similar to the primary system, but each of the tests was completed more quickly, so there are more tests represented in the 200 second sample. 12 | 13 | ![Graph of Control System, Sysbench Max Prime tests (100): Memory Usage](/images/control-CPU_mem.png?raw=true "Graph of Control System, Sysbench Max Prime tests (100): Memory Usage") 14 | 15 | This graph displays the memory used by the control system over the entirety of the 100 run max prime test (as opposed to the sample, above.) There is a bit of an interesting result here with the memory usage graph for the 100 max prime test. The amount of cached and used RAM grew, slowly, over the course of the run. 16 | -------------------------------------------------------------------------------- /supplemental/modified_file_io_results.md: -------------------------------------------------------------------------------- 1 | ### MODIFIED FILE I/O PERFORMANCE - CPU and RAM Usage Graphts ### 2 | ![Graph of Primary System w/no Hypervisor, (Modified) Sysbench File I/O tests (25), CPU Usage](/images/primary_no_hypervisor-bench_io_mod-cpu.png?raw=true "Graph of Primary System w/no Hypervisor, (Modified) Sysbench File I/O tests, CPU Usage") 3 | 4 | ![Graph of Control System, (Modified) Sysbench File I/O tests (25), CPU Usage](/images/control-bench_io_mod-cpu.png?raw=true "Graph of Control System, (Modified) Sysbench File I/O tests, CPU Usage") 5 | 6 | ![Graph of Primary System w/no Hypervisor, (Modified) Sysbench File I/O tests (25), Memory Usage](/images/primary_no_hypervisor-bench_io_mod-mem.png?raw=true "Graph of Primary System w/no Hypervisor, (Modified) Sysbench File I/O tests, Memory Usage") 7 | 8 | ![Graph of Control System, (Modified) Sysbench File I/O tests (25), Memory Usage](/images/control-bench_io_mod-mem.png?raw=true "Graph of Control System, (Modified) Sysbench File I/O tests, Memory Usage") 9 | 10 | -------------------------------------------------------------------------------- /supplemental/monitor-scripts/mon-cpu.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #What: /proc/stat 3 | #Description: 4 | # user: normal processes executing in user mode 5 | # nice: niced processes executing in user mode 6 | # system: processes executing in kernel mode 7 | # idle: twiddling thumbs 8 | # iowait: waiting for I/O to complete 9 | # irq: servicing interrupts 10 | # softirq: servicing softirqs 11 | # steal: involuntary wait 12 | HOSTNAME="$(hostname)" 13 | DATE="$(date '+%Y%m%d')" 14 | 15 | echo 'x,user,nice,system,idle,iowait,irq,softirq,steal,guest,guest_nice' 16 | 17 | 18 | while true ; do 19 | echo "$(cat /proc/stat |head -n 1\ 20 | |sed -e 's/^[ \t]*//' | sed -e 's/[ ][ ]*/,/g')" 21 | sleep 1s 22 | done 23 | -------------------------------------------------------------------------------- /supplemental/monitor-scripts/mon-diskstat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #What: /proc/diskstats 3 | #Description: 4 | # The /proc/diskstats file displays the I/O statistics 5 | # of block devices. Each line contains the following 14 6 | # fields: 7 | # 1 - major number 8 | # 2 - minor mumber 9 | # 3 - device name 10 | # 4 - reads completed successfully 11 | # 5 - reads merged 12 | # 6 - sectors read 13 | # 7 - time spent reading (ms) 14 | # 8 - writes completed 15 | # 9 - writes merged 16 | # 10 - sectors written 17 | # 11 - time spent writing (ms) 18 | # 12 - I/Os currently in progress 19 | # 13 - time spent doing I/Os (ms) 20 | # 14 - weighted time spent doing I/Os (ms) 21 | # For more details refer to Documentation/iostats.txt 22 | HOSTNAME="$(hostname)" 23 | DATE="$(date '+%Y%m%d')" 24 | BASE='/bench/results' 25 | LOGFILE="$BASE/$DATE-$HOSTNAME-io.csv" 26 | 27 | if [[ ! -d $BASE ]] ; then 28 | sudo mkdir -p $BASE 29 | fi 30 | 31 | sudo touch $LOGFILE 32 | sudo chmod 666 $LOGFILE 33 | 34 | echo 'major number,minor number,device name,reads completed successfully,reads merged,sectors read,time spent reading (ms),writes completed,writes merged,sectors written,time spent writing (ms),I/Os currently in progress,time spent doing I/Os (ms),weighted time spent doing I/Os (ms)' >> $LOGFILE 35 | 36 | 37 | while true ; do 38 | echo "$(cat /proc/diskstats |grep sda \ 39 | |sed -e 's/^[ \t]*//' | sed -e 's/[ ][ ]*/,/g')" >> $LOGFILE 40 | sleep 1s 41 | done 42 | -------------------------------------------------------------------------------- /supplemental/monitor-scripts/mon-mem.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Version 1.0 (2014-06-30) 4 | # 5 | # What: `free` 6 | # Description: 7 | # total: Full amount of memory allocated to the server 8 | # used: Total memory used, including buffers and cache 9 | # free: Memory available, and not being used for buffers or cache 10 | # shared: Memory used and available to multiple CPUs 11 | # buffers: Memory dedicated to cache disk block devices 12 | # cached: Memory dedicated to caching pages from file reads 13 | 14 | echo 'total,used,free,shared,buffers,cached' 15 | 16 | while true; do 17 | free -m |awk '/Mem/ { OFS = ","; print $2, $3, $4, $5, $6, $7}' 18 | sleep 1s 19 | done 20 | -------------------------------------------------------------------------------- /supplemental/unmodified_file_io_results.md: -------------------------------------------------------------------------------- 1 | ## Unmodified File I/O Results ## 2 | 3 | _Note: This test may not be an accurate representation of actual results. The available disk space on the primary host without a hypervisor was not large enough to create a file big enough to prevent caching in memory. See the "Modified File I/O Operation" test below for a better, but probably still not 100% accurate, attempt at this test._ 4 | 5 | ![Graph of (Unmodified) Sysbench File I/O tests (25), Transfer Speed Comparison](../images/unmodified_file_io_comparison.png?raw=true "Graph of (Unmodified) Sysbench File I/O tests (25), Transfer Speed Comparison") 6 | 7 | 8 | -------------------------------------------------------------------------------- /sysbench-mysql/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker container with Sysbench and MySQL Server 2 | # installed for running MySQL benchmark tests 3 | 4 | FROM tutum/mysql 5 | MAINTAINER Chris Collins 6 | 7 | ADD run2.sh /run2.sh 8 | ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh 9 | RUN apt-get install -y sysbench 10 | 11 | CMD ["/run2.sh"] 12 | -------------------------------------------------------------------------------- /sysbench-mysql/create_mysql_admin_user.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | /usr/bin/mysqld_safe > /dev/null 2>&1 & 4 | 5 | RET=1 6 | while [[ RET -ne 0 ]]; do 7 | echo "=> Waiting for confirmation of MySQL service startup" 8 | sleep 5 9 | mysql -uroot -e "status" > /dev/null 2>&1 10 | RET=$? 11 | done 12 | 13 | if [ "$MYSQL_PASS" = "**Random**" ]; then 14 | unset MYSQL_PASS 15 | fi 16 | 17 | PASS=${MYSQL_PASS:-rootmysqlpassword} 18 | _word=$( [ ${MYSQL_PASS} ] && echo "preset" || echo "random" ) 19 | echo "=> Creating MySQL admin user with ${_word} password" 20 | 21 | mysql -uroot -e "CREATE DATABASE test;" 22 | mysql -uroot -e "CREATE USER 'admin'@'%' IDENTIFIED BY '$PASS'" 23 | mysql -uroot -e "GRANT ALL PRIVILEGES ON *.* TO 'admin'@'%' WITH GRANT OPTION" 24 | 25 | 26 | echo "=> Done!" 27 | 28 | echo "========================================================================" 29 | echo "You can now connect to this MySQL Server using:" 30 | echo "" 31 | echo " mysql -uadmin -p$PASS -h -P" 32 | echo "" 33 | echo "Please remember to change the above password as soon as possible!" 34 | echo "MySQL user 'root' has no password but only allows local connections" 35 | echo "========================================================================" 36 | 37 | mysqladmin -uroot shutdown 38 | -------------------------------------------------------------------------------- /sysbench-mysql/run2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | USER='admin' 3 | PASS='rootmysqlpassword' 4 | 5 | /run.sh & 6 | 7 | sleep 15 8 | 9 | sysbench --test=oltp --oltp-table-size=1000000 --mysql-db=test \ 10 | --mysql-user=$USER --mysql-password=$PASS prepare 11 | 12 | sysbench --test=oltp --oltp-table-size=1000000 --mysql-db=test \ 13 | --mysql-user=$USER --mysql-password=$PASS --max-time=60 \ 14 | --oltp-read-only=on --max-requests=0 --num-threads=8 run 15 | 16 | sysbench --test=oltp --mysql-db=test --mysql-user=$USER \ 17 | --mysql-password=$PASS cleanup 18 | -------------------------------------------------------------------------------- /sysbench/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker container with Sysbench installed 2 | # for running multiple types of benchmark tests 3 | 4 | FROM ubuntu:precise 5 | MAINTAINER Chris Collins 6 | 7 | ADD . /bench 8 | RUN apt-get install -y sysbench 9 | 10 | CMD ["/bin/echo", "Please specify a test script from /bench to run."] 11 | -------------------------------------------------------------------------------- /sysbench/cpu_prime.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | PRIME="$1" 4 | 5 | sysbench --test=cpu --cpu-max-prime=$PRIME run 6 | -------------------------------------------------------------------------------- /sysbench/io.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | SIZE="$1" 4 | 5 | sysbench --test=fileio --file-total-size=$SIZE prepare 6 | sysbench --test=fileio --file-total-size=$SIZE --file-test-mode=rndrw --init-rng=on --max-time=300 --max-requests=0 run 7 | sysbench --test=fileio --file-total-size=$SIZE cleanup 8 | 9 | -------------------------------------------------------------------------------- /webbench/Dockerfile: -------------------------------------------------------------------------------- 1 | # Docker image for testing basic spinup 2 | # of multiple containers running a basic 3 | # service, in this case Apache 4 | 5 | FROM centos:centos6 6 | MAINTAINER Chris Collins 7 | 8 | RUN yum install -y httpd mod_php 9 | RUN echo '' > /var/www/html/index.php 10 | 11 | EXPOSE 80 12 | 13 | ENTRYPOINT ["/usr/sbin/httpd"] 14 | CMD ["-D", "FOREGROUND"] 15 | --------------------------------------------------------------------------------