Images and their usage in MLRun#
Every release of MLRun includes several images for different usages. The build and the infrastructure images are described, and located, in the README. They are also published to DockerHub and quay.io.
In this section
Using images#
See Build function image.
MLRun runtime images#
All images are published to DockerHub and quay.io.
There are two versions of each image: py3.9 and py3.11. The recommended version is py3.11. You choose the image you use, based on your needs. When you submit a job to MLRun, it attempts to deduce the correct Python version to use based on the Python version where the user-code was written and submitted.
The images are:
mlrun/mlrun: An MLRun image includes preinstalled OpenMPI and other ML packages. Image for file acquisition, compression, Dask jobs, simple training jobs and other utilities.mlrun/mlrun-kfp: The same asmlrun/mlrunwith the addition of KFP 1.8 already installed. Use it for compiling KFP workflows, and for remote workflows. This image includes KFP.mlrun/mlrun-gpu: The same asmlrun/mlrunbut for GPUs, including Open MPI.mlrun/jupyter: An image with Jupyter giving a playground to use MLRun in the open source. Built on top of jupyter/scipy-notebook, with the addition of MLRun and several demos and examples.mlrun/mlrun-api: The server's backend image.mlrun/log-collector: A service that collects the logs for all runs and stores them in a persistent storagemlrun/mlrun-ui: The server's frontend image
Notes
When using the
mlrunormlrun-gpuimage, use PyTorch versions up to and including than 2.0.1, but not higher. You can build your own images with newer CUDA for later releases of PyTorch.If you are using a zipped source, use
mlrun/mlrunimages or installunzipin the provided function base image.When creating an image with MLRun methods using one of the mlrun/mlrun base images, MLRun by default runs
pip install mlrunto ensure its dependencies are aligned, along with any other specified Python packages.
Warning
For production, create your own images to ensure that the image is fixed. See Working with images in production.
When to use an image with KFP#
With Python 3.11: You must use the remote engine, which automatically uses the mlrun/mlrun-kfp image that uses Python 3.9. (You can change the image with set_workflow()). Since KFP cannot be installed on Python 3.11, this remote job loads and compiles the workflow as a separate job in your Kubernetes cluster.
If you are using Python 3.9, you have the option of compiling your workflow on your Python 3.9 environment with engine=kfp.
Unless you are using KFP-specific code inside the MLRun job, you do not need to use the mlrun-kfp image. Generally speaking, all MLRun code works without KFP except, of course, for creating and running pipelines.
Building MLRun images#
To build all images, run this command from the root directory of the mlrun repository:
MLRUN_VERSION=X MLRUN_DOCKER_REPO=X MLRUN_DOCKER_REGISTRY=X make docker-images
Where:
MLRUN_VERSION is used as the tag of the image and also as the version injected into the code (e.g. latest or 0.7.0 or 0.6.5-rc6, defaults to unstable)
MLRUN_DOCKER_REPO is the docker repository (defaults to mlrun)
MLRUN_DOCKER_REGISTRY is the docker registry (e.g.
quay.io/,gcr.io/, defaults to empty (docker hub))
For example, running MLRUN_VERSION=x.y.z make docker-images generates these images:
mlrun/mlrun-api:x.y.z
mlrun/mlrun:x.y.z
mlrun/mlrun-kfp:x.y.z
mlrun/mlrun-gpu:x.y.z
mlrun/jupyter:x.y.z
You can build specific images. The typical images to build are the common client-side images that you actually use to run your code: mlrun, mlrun-gpu and mlrun-kfp.
To run an image locally and explore its contents: docker run -it <image-name>:<image-tag> /bin/bash
or to load python (or run a script): docker run -it <image-name>:<image-tag> python
Building a docker image using a Dockerfile and then using it#
This flow describes how to build the image externally, put it your private repo, and use it in MLRun.
Build an image using Dockerfile:
Create a Dockerfile
FROM mlrun/mlrun:X.X RUN pip install package1 RUN pip install package2
Build the image:
docker build -t your_docker_registry/your_image_name:tag
Push the image:
docker push your_docker_registry/your_image_name:tag
Create a secret on K8s level for accessing your registry:
kubectl --namespace default-tenant create secret docker-registry registry-credentials \ --docker-server your-docker-registry \ --docker-username < > \ --docker-password < > \ --docker-email < >
In the code, use the image you created and provide the secret for pulling it:
func = prj.set_function(name="func",...) func.set_image_pull_configuration(image_pull_secret_name="registry-credentials")
Now when you run the function, the image is used.
MLRun images and external docker images#
There is no difference in the usage between the MLRun images and external docker images. However:
MLRun images resolve auto tags: If you specify
image="mlrun/mlrun"the API fills in the tag by the client version, e.g. changes it tomlrun/mlrun:1.7.0. So, if the client gets upgraded you'll automatically get a new image tag.Where the data node registry exists, MLRun Appends the registry prefix, so the image loads from the data node registry. This pulls the image more quickly, and also supports air-gapped sites. When you specify an MLRun image, for example
mlrun/mlrun:1.7.0, the actual image used is similar todatanode-registry.iguazio-platform.app.vm/mlrun/mlrun:1.7.0.
These characteristics are great when you’re working in a POC or development environment. But MLRun typically upgrades packages as part of the image, and therefore the default MLRun images can break your product flow.
Working with images in production#
Warning
For production, create your own images to ensure that the image is fixed.
Pin the image tag, e.g.
image="mlrun/mlrun:1.7.0". This maintains the image tag at the version you specified, even when the client is upgraded. Otherwise, an upgrade of the client would also upgrade the image. (If you specify an external (not MLRun images) docker image, like Python, the result is the docker/k8s default behavior, which defaults tolatestwhen the tag is not provided.)Pin the versions of requirements, again to avoid breakages, e.g.
pandas==1.4.0. (If you only specify the package name, e.g. pandas, then pip/conda (Python's package managers) just pick up the latest version.)