Skip to content

SolidLao/GPTuner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

85 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

GPTuner logo

GPTuner: A Manual-Reading Database Tuning System via GPT-Guided Bayesian Optimization

Stay tuned for the latest updates and enhancements in this project! πŸš€
Remember to star ⭐ and subscribe πŸ”” for the newest features and improvements!

Table of Contents

System Overview

GPTuner overview

GPTuner is a manual-reading database tuning system to suggest satisfactory knob configurations with reduced tuning costs. The figure above presents the tuning workflow that involves seven steps:

  1. πŸ“Œ User provides the DBMS to be tuned (e.g., PostgreSQL or MySQL), the target workload, and the optimization objective (e.g., latency or throughput).
  2. πŸ“Œ GPTuner collects and refines the heterogeneous knowledge from different sources (e.g., GPT-4, DBMS manuals, and web forums) to construct Tuning Lake, a collection of DBMS tuning knowledge.
  3. πŸ“Œ GPTuner unifies the refined tuning knowledge from Tuning Lake into a structured view accessible to machines (e.g., JSON).
  4. πŸ“Œ GPTuner reduces the search space dimensionality by selecting important knobs to tune (i.e., fewer knobs to tune means fewer dimensions).
  5. πŸ“Œ GPTuner optimizes the search space in terms of the value range for each knob based on structured knowledge.
  6. πŸ“Œ GPTuner explores the optimized space via a novel Coarse-to-Fine Bayesian Optimization framework.
  7. πŸ“Œ Finally, GPTuner identifies satisfactory knob configurations within resource limits (e.g., the maximum optimization time or iterations specified by users).

Quick Start

The following instructions have been tested on Ubuntu 20.04 and PostgreSQL v14.9:

Step 1: Install PostgreSQL

sudo apt-get update
sudo apt-get install postgresql-14

Step 2: Install BenchBase with our script

  • Note: the script is tested on openjdk version "17.0.8.1" 2023-08-24, (you may need to update openjdk to version 21 to keep in pace with the newest benchbase), please prepare your JAVA environment first
cd ./scripts
sh install_benchbase.sh postgres

Step 3: Install Benchmark with our script

  • Note: modify ./benchbase/target/benchbase-postgres/config/postgres/sample_{your_target_benchmark}_config.xml to customize your tuning setting first
sh build_benchmark.sh postgres tpch

Step 4: Install dependencies

sudo pip install -r requirements.txt

Step 5: Execute the GPTuner to optimize your DBMS

  • Note: modify configs/postgres.ini to determine the target DBMS first, the restart and recover commands depend on the environment and we provide Docker version
  • Note: modify src/run_gptuner.py to set up your api_base, api_key and model first
# PYTHONPATH=src python src/run_gptuner.py <dbms> <benchmark> <timeout> <seed>
PYTHONPATH=src python src/run_gptuner.py postgres tpch 180 -seed=100

where <dbms> specifies the DBMS (e.g., postgres or mysql), <benchmark> is the target workload (e.g., tpch or tpcc), <timeout> is the maximum time allowed to stress-test the benchmark, <seed> is the random seed used by the optimizer.

Step 6: View the optimization result:

The optimization result is stored in optimization_results/{dbms}/{stage}/{seed}/runhistory.json, where {dbms} is the target DBMS, {stage} is coarse or fine and {seed} is the random seed given by user.

  • the data block contains the following information, we explain the project-related information below. For more details, please refer to SMAC3 Library.
    • config_id: i is the identifier for the knob configuration given by i-th iteration
    • instance
    • budget
    • seed
    • cost: the optimization objective (e.g., throughput or latency)
    • time
    • status
    • starttime
    • endtime
    • additional_info
  • the "configs" block contains the knob configuration of the i-th iteration, for example:
"configs": {
    "1": {
      "effective_io_concurrency": 200,
      "random_page_cost": 1.2 
    },
}

Demo Usage Guide

Step 1: Complete Steps 1 to 4 in the Quick Start section

Step 2: Execute the Demo

PYTHONPATH=src python -m streamlit run src/demo/entrypage.py

Step 3: Follow our video demonstration to use the GUI

GPTuner demo page

Step 4: Visualize the Optimization Result

GPTuner demo result

Experimental Result

Baselines

We compare GPTuner with state-of-the-art methods both using or not using natural language knowledge as input:

Result on PostgreSQL

We compare GPTuner with baselines on different DBMS (PostgreSQL and MySQL), benchmarks (TPC-H and TPC-C) and metrics (throughput and latency). We present the results on PostgreSQL in this repository. For more details, please refer to our paper or technical report.

GPTuner result on postgres

Code Structure

  • configs/
    • postgres.ini: Configuration file to optimize PostgreSQL
    • mysql.ini: Configuration file to optimize MySQL
  • optimization_results/
    • temp_results/: Temporary storage for optimization results
    • postgres/
      • coarse/: Coarse-stage optimization results for PostgreSQL
      • fine/: Fine-stage optimization results for PostgreSQL
  • scripts/
    • install_benbase.sh: Script to install the BenchBase benchmark tool
    • build_benchmark.sh: Script to build benchmark environments
    • recover_postgres.sh: Script to recover the state of PostgreSQL database
    • recover_mysql.sh: Script to recover the state of MySQL database
  • knowledge_collection/
    • postgres/
      • target_knobs.txt: List of target knobs for PostgreSQL tuning
      • knob_info/
        • system_view.json: Information from PostgreSQL system views (pg_settings)
        • official_document.json: Information from PostgreSQL official documentation
      • knowledge_sources/
        • gpt/: Knowledge sourced from GPT models
        • manual/: Knowledge from DBMS manuals
        • web/: Knowledge extracted from web sources
        • dba/: Knowledge from database administrators
      • tuning_lake/: Data lake for DBMS tuning knowledge
      • structured_knowledge/
        • special/: Specialized structured knowledge
        • normal/: General structured knowledge
  • example_pool/: Pool of examples for prompt ensemble algorithm
  • sql: Provide sql statements if you need query-level knob selection
  • src/: Source code
    • demo/: Module to execute the GUI (Demonstration Code)
    • dbms/
      • dbms_template.py: Template for database management systems
      • postgres.py: Implementation for PostgreSQL
      • mysql.py: Implementation for MySQL
    • knowledge_handler/
      • gpt.py: Module for interactions with GPT
      • knowledge_preparation.py: Module for knowledge preparation (Sec. 5.1)
      • knowledge_transformation.py: Module for knowledge transformation (Sec. 5.2)
    • space_optimizer/
      • knob_selection.py: Module for knob selection (Sec. 6.1)
      • default_space.py: Definition of default search space
      • coarse_space.py: Definition of coarse search space (Sec. 6.2)
      • fine_space.py: Definition of fine search space (Sec. 6.2)
    • config_recommender/
      • workload_runner.py: Module to run workloads
      • coarse_stage.py: Recommender for coarse stage configuration (Sec. 7)
      • fine_stage.py: Recommender for fine stage configuration (Sec. 7)
    • run_gptuner.py: Main script to run GPTuner

Roadmap

  • Paper version
    • GPTuner uses OpenAI completion API of gpt-4 or gpt-3.5-turbo
    • GPTuner leverages tuning knowledge from GPT-4, DBMS official manuals and web contents
    • GPTuner supports PostgreSQL and MySQL
    • GPTuner stress-tests workloads through the BenchBase tool
  • Future implementation (We warmly invite and appreciate your contributions! πŸ‘«)
    • GPTuner employs locally depolyed large language models as well
    • GPTuner collects web contents through web-gpt and web-crawler
    • GPTuner uses a generic stress-test tool, supporting any given workload optimization
    • GPTuner refines its knowledge_collection with a human-in-the-loop mechanism
    • GPTuner supports more DBMS
    • to be continued...

Citation

If you use this codebase, or otherwise found our work valuable, please cite πŸ“’:

@misc{lao2023gptuner,
    title={GPTuner: A Manual-Reading Database Tuning System via GPT-Guided Bayesian Optimization}, 
    author={Jiale Lao and Yibo Wang and Yufei Li and Jianping Wang and Yunjia Zhang and Zhiyuan Cheng and Wanghu Chen and Mingjie Tang and Jianguo Wang},
    year={2023},
    eprint={2311.03157},
    archivePrefix={arXiv},
    primaryClass={cs.DB}
}

@inproceedings{10.1145/3626246.3654739,
    author = {Lao, Jiale and Wang, Yibo and Li, Yufei and Wang, Jianping and Zhang, Yunjia and Cheng, Zhiyuan and Chen, Wanghu and Zhou, Yuanchun and Tang, Mingjie and Wang, Jianguo},
    title = {A Demonstration of GPTuner: A GPT-Based Manual-Reading Database Tuning System},
    year = {2024},
    isbn = {9798400704222},
    publisher = {Association for Computing Machinery},
    address = {New York, NY, USA},
    url = {https://doi.org/10.1145/3626246.3654739},
    doi = {10.1145/3626246.3654739},
    abstract = {Selecting appropriate values for the configurable knobs of Database Management Systems (DBMS) is crucial to improve performance. But because such complexity has surpassed the abilities of even the best human experts, database community turns to machine learning (ML)-based automatic tuning systems. However, these systems still incur significant tuning costs or only yield sub-optimal performance, attributable to their overly high reliance on black-box optimization and an oversight of domain knowledge. This paper demonstrates GPTuner, a manual-reading database tuning system that leverages Large Language Model (LLM) to bridge the gap between black-box optimization and white-box domain knowledge. This demonstration empowers (1) regular users with limited tuning experience to gain qualitative insights on the features of knobs, and optimize their DBMS performance automatically and efficiently, (2) database administrators and experts to further enhance GPTuner by simply contributing their invaluable tuning suggestions in natural language. Finally, we offer visitors the opportunity to explore a range of DBMS and optimization metrics, coupled with the flexibility to tailor their target workloads to their specific needs.},
    booktitle = {Companion of the 2024 International Conference on Management of Data},
    pages = {504–507},
    numpages = {4},
    keywords = {bayesian optimization, database tuning, large language model},
    location = {<conf-loc>, <city>Santiago AA</city>, <country>Chile</country>, </conf-loc>},
    series = {SIGMOD/PODS '24}
}

About

GPTuner is a manual-reading database tuning system leveraging domain knowlege automatically and extensively to enhance knob tuning process.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published