Skip to main content

Copy MLflow objects (experiments, runs or registered models) to another tracking server

Project description

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: 2024-05-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, Amazon SageMaker MLflow).
    • 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 registered models in both the Databricks Workspace Model Registry, Unity Catalog Model Registry and Amazon SageMaker Studio.

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
Open source AWS SageMaker MLflow less common
AWS SageMaker MLflow AWS SageMaker MLflow common

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
Logged Model link link
Trace link link
Prompt link link -
Evaluation Dataset 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.

Amazon SageMaker MLflow Migration

MLflow Export Import supports seamless migration of MLflow objects between various SageMaker MLflow environments and other MLflow tracking servers.

Figure 1: Migration to SageMaker MLflow App


Figure 2: Migration to SageMaker MLflow Tracking Server

Key Benefits:

  • Compatible with SageMaker MLflow App and SageMaker MLflow Tracking Server
  • Preserves core MLflow objects (experiments, runs, metrics, params, tags, traces, logged models, evaluation datasets and registered models)
  • Supports migration from older MLflow versions (<3.0) to newer versions
  • Cross-environment portability between self-hosted and SageMaker tracking servers
  • Maintains artifact storage connections between source and destination systems
  • Enables transitions between different MLflow environments:
    • From self-hosted MLflow to SageMaker MLflow Tracking server or SageMaker MLflow App
    • From SageMaker MLflow Tracking Server to SageMaker MLflow Tracking Server or SageMaker MLflow App
  • Flexibility to migrate data in and out of SageMaker MLflow as needed

Sample Implementation: For a complete example of SageMaker MLflow migration, see: SageMaker MLflow Migration Sample

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.

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 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 and above.

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 github

Recommended.

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

3. Install from a 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 .

5. Install from PyPI

Legacy. Due to the quick turnaround time for bug ad feature fixes, this is deprecated.

Databricks notebook setup

Make sure your cluster has the latest MLflow and Databricks Runtime ML version 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 mlflow-export-import tools

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

Python console scripts are provided as a convenience. For a list of scripts see setup.py.

For example:

export-experiment --help

or:

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"

Note that multithreading is experimental. Logging is currently not fully satisfactory as it is interspersed between threads.

Other

Testing

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

README files

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

databricks_mlflow_export_import-1.2.1.tar.gz (84.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

databricks_mlflow_export_import-1.2.1-py3-none-any.whl (130.0 kB view details)

Uploaded Python 3

File details

Details for the file databricks_mlflow_export_import-1.2.1.tar.gz.

File metadata

File hashes

Hashes for databricks_mlflow_export_import-1.2.1.tar.gz
Algorithm Hash digest
SHA256 f58d9afb566286a38599b58f9ef504de61e30a7968f53c6540d122d20326f06e
MD5 229e253e80b3e992ac9b223ae140f8c1
BLAKE2b-256 5df3a481584d083bbf47b895bd201978c5bbeccaa91b624e8b2033706ed06a36

See more details on using hashes here.

File details

Details for the file databricks_mlflow_export_import-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for databricks_mlflow_export_import-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ee8a4a677947bccb348940883dbdb3c5490d18acb5b3ab7addd282b61c3b1006
MD5 a65086d1089a2e01bdd15f301bbc8e54
BLAKE2b-256 f7cf96464ce80e20e16490f6dcaadb6e260b83756802c4276f70a8462aaf01f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page