mlflow / mlflow-export-import

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MLflow Export Import

The MLflow Export Import package provides tools to copy MLflow objects (runs, experiments or registered models) from one MLflow tracking server (Databricks workspace) to another. Using the MLflow REST API, the tools export MLflow objects to an intermediate directory and then import them into the target tracking server.

For more details:

Last updated: 2023-12-10.

High Level Architecture

Overview

Why use MLflow Export Import?

  • Enable an MLOps pipeline by promoting MLflow objects (runs, experiments or registered models) from one MLflow tracking server (Datbricks workspace) to another.
    • Copy a the best run (model) from the development to the test tracking server.
    • After the run passes tests, then promote it to the production tracking server.
  • Share and collaborate with other data scientists in the same or another MLflow tracking server (Databricks workspace).
    • For example, copy an experiment from one user to another.
  • Backup your MLflow objects to external storage so they can be restored if needed.
  • Disaster recovery. Save your MLflow objects to external storage so they can be replicated to another tracking server.
  • Supports new Databricks Unity Catalog models.

MLflow Export Import scenarios

Source tracking server Destination tracking server Note
Open source Open source common
Open source Databricks less common
Databricks Databricks common
Databricks Open source rare

MLflow Objects

These are the MLflow objects and their attributes that can be exported.

Object REST Python SQL
Run link link link
Experiment link link link
Registered Model link link link
Registered Model Version link link link

MLflow Export Import provides rudimentary capabilities for tracking lineage of the imported Mlflow objects by having the option save the original MLflow object attributes in the imported target environment. See README_governance.

Tools Overview

There are two dimensions to the MLflow Export Import tools:

  • Execution mode: Export of MLflow objects in single or bulk mode.
  • Execution context: Regular Python scripts or Databricks notebooks.

Single and Bulk Tools

The two execution modes are:

  • Single tools. Copy a single MLflow object between tracking servers. These tools allow you to specify a different destination object name. For example, if you want to clone the experiment /Mary/Experiments/Iris under a new name, you can specify the target experiment name as /John/Experiments/Iris.

  • Bulk tools. High-level tools to copy an entire tracking server or a collection of MLflow objects. There is no option to change destination object names. Full object referential integrity is maintained (e.g. an imported registered model version will point to the imported run that it refers to.

Databricks notebooks simply invoke the corresponding Python classes.

Copy tools simply invoke the appropriate export and import on a temporary directory.

New Copy Tools

See README_copy on how to copy model versions or runs.

Limitations

Due to the MLflow and Databricks API constraints, there are some limitations to the export/import process. See README_limitations.md.

Quick Start

Setup

pip install mlflow-export-import

or the latest - recommended

pip install git+https:///github.com/mlflow/mlflow-export-import/#egg=mlflow-export-import

Export experiment

export MLFLOW_TRACKING_URI=http://localhost:5000

export-experiment \
  --experiment sklearn-wine \
  --output-dir /tmp/export

Import experiment

export MLFLOW_TRACKING_URI=http://localhost:5001

import-experiment \
  --experiment-name sklearn-wine \
  --input-dir /tmp/export

Setup

Supports python 3.8.

Local setup

First create a virtual environment.

python -m venv mlflow-export-import
source mlflow-export-import/bin/activate

There are several different ways to install the package.

1. Install from PyPI

pip install git+https:///github.com/mlflow/mlflow-export-import/#egg=mlflow-export-import

2. Install from github directly

Due to the fast pace of Mlflow Export Important development, it is recommended that you install from github for the latest bug fixes.

pip install git+https:///github.com/mlflow/mlflow-export-import/#egg=mlflow-export-import

3. Install from specific commit

pip install git+https:///github.com/mlflow/mlflow-export-import@a334f8003a3c9c3b9cd0173827be692a39355fd8

4. Install from github clone

git clone https://github.com/mlflow/mlflow-export-import
cd mlflow-export-import
pip install -e .

Databricks notebook setup

Make sure your cluster has MLflow 2.2.1 (Databricks Runtime ML version 13.0) or later installed.

There are two different ways to install the mlflow-export-import package in a Databricks notebook.

1. Install package in notebook

See documentation: Install notebook-scoped libraries with %pip.

The section above has other pip install alternatives you can use.

%pip install mlflow-export-import

2. Install package as a wheel on cluster

Build the wheel artifact, upload it to DBFS and then install it on your cluster.

git clone https://github.com/mlflow/mlflow-export-import
cd mlflow-export-import
python setup.py bdist_wheel
databricks fs cp dist/mlflow_export_import-1.0.0-py3-none-any.whl {MY_DBFS_PATH}

Laptop to Databricks usage

There are several ways to run the tools from your laptop against a Databricks workspace.

  1. With .~/databrickscfg and no profile specified. The host and token are picked up from the DEFAULT profile.
export MLFLOW_TRACKING_URI=databricks
  1. Specify profile in ~/.databrickscfg.
export MLFLOW_TRACKING_URI=databricks://MY_PROFILE
  1. To override ~/.databrickscfg values or without ~/.databrickscfg file.
export MLFLOW_TRACKING_URI=databricks
export DATABRICKS_HOST=https://myshard.cloud.databricks.com
export DATABRICKS_TOKEN=MY_TOKEN

See the Databricks documentation page Access the MLflow tracking server from outside Databricks - AWS or Azure.

Running tools

The main tool scripts can be executed either as a standard Python script or console script.

Python console scripts (such as export-run, import-run, etc.) are provided as a convenience. For a list of scripts see setup.py.

This allows you to use:

export-experiment --help

instead of:

python -u -m mlflow_export_import.experiment.export_experiment --help

Logging

Standard Python logging is used. A simple default logging config is provided. By default all output is sent to stdout using the console handler. There is an option to use a file handler to send output to a file.

Several environment variables can be set to customize your logging experience.

Default logging config:

  • MLFLOW_EXPORT_IMPORT_LOG_OUTPUT_FILE - Specify the output log file. If not set (default), no output log file will be used.
  • MLFLOW_EXPORT_IMPORT_LOG_FORMAT - Convenience to overwrite the default logging output format.

Custom logging config file:

  • MLFLOW_EXPORT_IMPORT_LOG_CONFIG_FILE - Use your own YAML logging config file instead of the default config.

Examples:

export MLFLOW_EXPORT_IMPORT_LOG_CONFIG_FILE=/dbfs/mlflow_export_import/conf/log_config.yaml
export MLFLOW_EXPORT_IMPORT_LOG_OUTPUT_FILE=/dbfs/mlflow_export_import/logs/export_models.log
export MLFLOW_EXPORT_IMPORT_LOG_FORMAT="%(asctime)s-%(levelname)s - %(message)s"

Multithreading:

If you use the use-threads option on exports, you can use the threadName format option:

export MLFLOW_EXPORT_IMPORT_LOG_FORMAT="%(threadName)s-%(levelname)s-%(message)s"

Other

Testing

There are two types of tests : open source and Databricks tests. See tests/README for details.

README files

About

License:Apache License 2.0


Languages

Language:Python 89.2%Language:HTML 9.9%Language:Shell 0.9%