MLOS is a Data Science powered infrastructure and methodology to democratize and automate Performance Engineering. MLOS enables continuous, instance-based, robust, and trackable systems optimization.
Перейти к файлу
Brian Kroth 36d2e67319
Fixup a vscode config file. (#643)
The rest of the repo configs are not prepared to handle separate
workspaces for the different modules (e.g., linting rules break and fail
to find the right config files).

So for now we back this change out in a way that seems more friendly
with existing vscodes.
2024-01-18 18:15:50 -06:00
.devcontainer Introduce basic experiment visualization module mlos_viz via dabl (#624) 2024-01-16 18:48:20 +00:00
.github Bump actions/cache from 3 to 4 in /.github/workflows (#637) 2024-01-17 11:50:04 -06:00
.vscode Cleanup some deprecated VSCode settings (#622) 2024-01-09 15:59:43 -06:00
conda-envs Introduce basic experiment visualization module mlos_viz via dabl (#624) 2024-01-16 18:48:20 +00:00
doc Support for special tunable values outside of the range (#617) 2024-01-17 13:29:53 -08:00
mlos_bench Add unit tests for `MlosCoreoptimizer._to_df()` functionality; use special values in tunables (#638) 2024-01-18 23:15:52 +00:00
mlos_core Support for special tunable values outside of the range (#617) 2024-01-17 13:29:53 -08:00
mlos_viz Add labels to the optimizer trends plot (#634) 2024-01-16 15:18:30 -06:00
scripts Pypi packaging (#626) 2024-01-09 22:40:15 +00:00
.bumpversion.cfg Support for special tunable values outside of the range (#617) 2024-01-17 13:29:53 -08:00
.cspell.json Introduce basic experiment visualization module mlos_viz via dabl (#624) 2024-01-16 18:48:20 +00:00
.editorconfig initial checkin 2021-12-08 14:35:39 -06:00
.gitattributes Merged PR 775: Adds explicit line ending handling of shell scripts in the gitattributes 2022-12-24 00:31:27 +00:00
.gitignore Clean-up temp files created by mlos_core optimizers (#579) 2023-11-06 15:09:29 -08:00
.prettierrc devcontainer style improvements (#358) 2023-05-15 22:19:20 +00:00
.pylintrc Tell pylint to ignore FIXME comments in our code. (#639) 2024-01-18 17:04:56 -06:00
CODEOWNERS Add code owners for people to require reviews from (#281) 2023-03-22 11:05:44 -07:00
CODE_OF_CONDUCT.md Switch to Github Actions for CI/CD runs (#274) 2023-03-18 15:52:26 -05:00
CONTRIBUTING.md Pypi packaging (#626) 2024-01-09 22:40:15 +00:00
LICENSE.txt Merged PR 560: Merging initial os_autotune_main work to main 2022-08-04 16:11:35 +00:00
MAINTAINING.md Pypi packaging (#626) 2024-01-09 22:40:15 +00:00
Makefile Introduce basic experiment visualization module mlos_viz via dabl (#624) 2024-01-16 18:48:20 +00:00
NOTICE Merged PR 1054: Prepwork for OSSing 2023-03-17 21:20:39 +00:00
README.md Readme tweaks (#627) 2024-01-10 12:37:30 -08:00
SECURITY.md Some documentation fixups (#524) 2023-11-08 00:11:57 +00:00
conftest.py Pypi packaging (#626) 2024-01-09 22:40:15 +00:00
mlos.code-workspace Fixup a vscode config file. (#643) 2024-01-18 18:15:50 -06:00
setup.cfg Introduce basic experiment visualization module mlos_viz via dabl (#624) 2024-01-16 18:48:20 +00:00

README.md

MLOS

MLOS DevContainer MLOS Linux MLOS Windows Code Coverage Status

MLOS is a project to enable autotuning for systems.

Contents

Overview

MLOS currently focuses on an offline tuning approach, though we intend to add online tuning in the future.

To accomplish this, the general flow involves

  • Running a workload (i.e., benchmark) against a system (e.g., a database, web server, or key-value store).
  • Retrieving the results of that benchmark, and perhaps some other metrics from the system.
  • Feed that data to an optimizer (e.g., using Bayesian Optimization or other techniques).
  • Obtain a new suggested config to try from the optimizer.
  • Apply that configuration to the target system.
  • Repeat until either the exploration budget is consumed or the configurations' performance appear to have converged.
optimization loop

Source: LlamaTune: VLDB 2022

Organization

To do this this repo provides two Python modules, which can be used independently or in combination:

  • mlos-bench provides a framework to help automate running benchmarks as described above.

  • mlos-core provides an abstraction around existing optimization frameworks (e.g., FLAML, SMAC, etc.)

    It is intended to provide a simple, easy to consume (e.g. via pip), with low dependencies abstraction to

    • describe a space of context, parameters, their ranges, constraints, etc. and result objectives
    • an "optimizer" service abstraction (e.g. register() and suggest()) so we can easily swap out different implementations methods of searching (e.g. random, BO, LLM, etc.)
    • provide some helpers for automating optimization experiment runner loops and data collection

For these design requirements we intend to reuse as much from existing OSS libraries as possible and layer policies and optimizations specifically geared towards autotuning systems over top.

By providing wrappers we aim to also allow more easily experimenting with replacing underlying optimizer components as new techniques become available or seem to be a better match for certain systems.

Contributing

See CONTRIBUTING.md for details on development environment and contributing.

Getting Started

The development environment for MLOS uses conda and devcontainers to ease dependency management, but not all these libraries are required for deployment.

For instructions on setting up the development environment please try one of the following options:

  • see CONTRIBUTING.md for details on setting up a local development environment
  • launch this repository (or your fork) in a codespace, or
  • have a look at one of the autotuning example repositories like sqlite-autotuning to kick the tires in a codespace in your browser immediately :)

conda activation

  1. Create the mlos Conda environment.

    conda env create -f conda-envs/mlos.yml
    

    See the conda-envs/ directory for additional conda environment files, including those used for Windows (e.g. mlos-windows.yml).

    or

    # This will also ensure the environment is update to date using "conda env update -f conda-envs/mlos.yml"
    make conda-env
    

    Note: the latter expects a *nix environment.

  2. Initialize the shell environment.

    conda activate mlos
    

Usage Examples

mlos-core

For an example of using the mlos_core optimizer APIs run the BayesianOptimization.ipynb notebook.

mlos-bench

For an example of using the mlos_bench tool to run an experiment, see the mlos_bench Quickstart README.

Here's a quick summary:

./scripts/generate-azure-credentials-config > global_config_azure.jsonc

# run a simple experiment
mlos_bench --config ./mlos_bench/mlos_bench/config/cli/azure-redis-1shot.jsonc

See Also:

Installation

The MLOS modules are published to pypi when new releases are tagged:

To install the latest release, simply run:

# this will install just the optimizer component with SMAC support:
pip install -U mlos-core[smac]

# this will install just the optimizer component with flaml support:
pip install -U "mlos-core[flaml]"

# this will install just the optimizer component with smac and flaml support:
pip install -U "mlos-core[smac,flaml]"

# this will install both the flaml optimizer and the experiment runner with azure support:
pip install -U "mlos-bench[flaml,azure]"

# this will install both the smac optimizer and the experiment runner with ssh support:
pip install -U "mlos-bench[smac,ssh]"

Details on using a local version from git are available in CONTRIBUTING.md.

See Also

Examples

These can be used as starting points for new autotuning projects.