
August 21, 2017
Dynimizer Quickstart Tutorial
Duration: 10 min Level: Beginner This tutorial will show you how to install Dynimizer. We'll then use it to optimize a live MySQL process that's been running the Sysbench OLTP benchmark, obtaining a 46% increase in performance by applying Dynimizer. Part 1: Quickstart Here's a quick overview of how to use Dynimizer. To install Dynimizer, run the following commands. wget https://dynimize.com/install -O install wget https://dynimize.com/install.sha256 -O install.sha256 if sha256sum -c install.sha256 | grep OK; then sudo bash ./install -default; fi To start Dynimizer, run $......
Continue Reading
August 20, 2017
Measuring CPU stall reductions from Dynimizer
Duration: 30 min Level: Intermediate In this tutorial we are going to install and experiment with Dynimizer using MySQL running the Sysbench OLTP benchmark. We also play around with the Linux perf command, top...