# 15-445/645 (Fall 2017) -- Extra Credit # System: $(NAME) --------------------------------------- ## Part 1 - Installation Provide the instructions that you followed to install and setup the system. You should describe the steps (with commands when necessary) to deploy the DBMS on Amazon. This includes the cluster configuration if your DBMS is comprised of multiple components. If your DBMS requires third-party libraries or external services (e.g., Zookeeper), be sure to include the setup instructions for them. If you followed instructions from an on-line guide or tutorial, be sure to include the URL to those instructions. Example template: 1. First we did this... 2. Then we did this... 3. Lastly, we had to set this and this to get it to work... --------------------------------------- ## Part 2 - System Configuration List the configuration that you used to tune the system to get it to perform better. For example, if you benchmarked MySQL, you should list the configuration settings that you manually set in its 'mysqld.cnf' file. You do not need to include configuration settings for directory paths or networking information (e.g., bind-address). Example template: ``` innodb_buffer_pool_size = 1024M innodb_file_per_table = 1 max_allowed_packet = 32M ``` --------------------------------------- ## Part 3 - Benchmarks For each benchmark that you evaluated with your DBMS, provide the student name and AndrewId of the person that worked on it. Also provide an overview of the changes that you made to get the benchmark to work with the OLTP-Bench framework. ***** ### Benchmark 1: $(BENCHMARK) Student: $(FirstName) $(LastName) <$(AndrewId)> List any modifications that you had to make to either the benchmark DDL, SQL dialects, or worker/loader in order to get the benchmark to work. ***** ### Benchmark 2: $(BENCHMARK) Student: $(FirstName) $(LastName) <$(AndrewId)> List any modifications that you had to make to either the benchmark DDL, SQL dialects, or worker/loader in order to get the benchmark to work. ***** ### Benchmark 3: $(BENCHMARK) Student: $(FirstName) $(LastName) <$(AndrewId)> List any modifications that you had to make to either the benchmark DDL, SQL dialects, or worker/loader in order to get the benchmark to work.