ImageSpec

In this section, you will uncover how Union.ai utilizes Docker images to construct containers under the hood, and you’ll learn how to craft your own images to encompass all the necessary dependencies for your tasks or workflows.

You will explore how to execute a raw container with custom commands, indicate multiple container images within a single workflow, and get familiar with the ins and outs of ImageSpec!

ImageSpec allows you to customize the container image for your Union.ai tasks without a Dockerfile. ImageSpec speeds up the build process by allowing you to reuse previously downloaded packages from the PyPI and APT caches.

By default, the ImageSpec will be built using the remote builder, but you can always specify your own e.g. local Docker.

For every {py:class}union.PythonFunctionTask task or a task decorated with the @task decorator, you can specify rules for binding container images. By default, union binds a single container image, i.e., the default Docker image, to all tasks. To modify this behavior, use the container_image parameter available in the {py:func}union.task decorator, and pass an ImageSpec definition.

Before building the image, union checks the container registry to see if the image already exists. If the image does not exist, union will build the image before registering the workflow and replace the image name in the task template with the newly built image name.

Install Python or APT packages

You can specify Python packages and APT packages in the ImageSpec. These specified packages will be added on top of the default image, which can be found in the union Dockerfile. More specifically, union invokes DefaultImages.default_image() function. This function determines and returns the default image based on the Python version and union version. For example, if you are using Python 3.8 and flytekit 1.6.0, the default image assigned will be ghcr.io/flyteorg/flytekit:py3.8-1.6.0.

from union import ImageSpec

sklearn_image_spec = ImageSpec(
  packages=["scikit-learn", "tensorflow==2.5.0"],
  apt_packages=["curl", "wget"],
)

Install Conda packages

Define the ImageSpec to install packages from a specific conda channel.

image_spec = ImageSpec(
  conda_packages=["langchain"],
  conda_channels=["conda-forge"],  # List of channels to pull packages from.
)

Use different Python versions in the image

You can specify the Python version in the ImageSpec to build the image with a different Python version.

image_spec = ImageSpec(
  packages=["pandas"],
  python_version="3.9",
)

Import modules only in a specify imageSpec environment

The is_container() method is used to determine whether the task is utilizing the image constructed from the ImageSpec. If the task is indeed using the image built from the ImageSpec, it will return true. This approach helps minimize module loading time and prevents unnecessary dependency installation within a single image.

In the following example, both task1 and task2 will import the pandas module. However, Tensorflow will only be imported in task2.

from flytekit import ImageSpec, task
import pandas as pd

pandas_image_spec = ImageSpec(
  packages=["pandas"],
  registry="ghcr.io/flyteorg",
)

tensorflow_image_spec = ImageSpec(
  packages=["tensorflow", "pandas"],
  registry="ghcr.io/flyteorg",
)

# Return if and only if the task is using the image built from tensorflow_image_spec.
if tensorflow_image_spec.is_container():
  import tensorflow as tf

@task(container_image=pandas_image_spec)
def task1() -> pd.DataFrame:
  return pd.DataFrame({"Name": ["Tom", "Joseph"], "Age": [1, 22]})


@task(container_image=tensorflow_image_spec)
def task2() -> int:
  num_gpus = len(tf.config.list_physical_devices('GPU'))
  print("Num GPUs Available: ", num_gpus)
  return num_gpus

Install CUDA in the image

There are few ways to install CUDA in the image.

Use Nvidia docker image

CUDA is pre-installed in the Nvidia docker image. You can specify the base image in the ImageSpec.

image_spec = ImageSpec(
  base_image="nvidia/cuda:12.6.1-cudnn-devel-ubuntu22.04",
  packages=["tensorflow", "pandas"],
  python_version="3.9",
)

Install packages from extra index

CUDA can be installed by specifying the pip_extra_index_url in the ImageSpec.

image_spec = ImageSpec(
  name="pytorch-mnist",
  packages=["torch", "torchvision", "flytekitplugins-kfpytorch"],
  pip_extra_index_url=["https://download.pytorch.org/whl/cu118"],
)

Build an image in different architecture

You can specify the platform in the ImageSpec to build the image in a different architecture, such as linux/arm64 or darwin/arm64.

image_spec = ImageSpec(
  packages=["pandas"],
  platform="linux/arm64",
)

Customize the tag of the image

You can customize the tag of the image by specifying the tag_format in the ImageSpec. In the following example, the tag will be <spec_hash>-dev.

image_spec = ImageSpec(
  name="my-image",
  packages=["pandas"],
  tag_format="{spec_hash}-dev",
)

Copy additional files or directories

You can specify files or directories to be copied into the container /root, allowing users to access the required files. The directory structure will match the relative path. Since Docker only supports relative paths, absolute paths and paths outside the current working directory (e.g., paths with “../”) are not allowed.

from union import task, workflow, ImageSpec

image_spec = ImageSpec(
    name="image_with_copy",
    copy=["files/input.txt"],
)

@task(container_image=image_spec)
def my_task() -> str:
    with open("/root/files/input.txt", "r") as f:
        return f.read()

Define ImageSpec in a YAML File

You can override the container image by providing an ImageSpec YAML file to the union run or union register command. This allows for greater flexibility in specifying a custom container image. For example:

# imageSpec.yaml
python_version: 3.11
packages:
  - sklearn
env:
  Debug: "True"

Use union to register the workflow:

$ union run --remote --image image.yaml image_spec.py wf

Build the image without registering the workflow

If you only want to build the image without registering the workflow, you can use the union build command.

$ union build --remote image_spec.py wf

Force push an image

In some cases, you may want to force an image to rebuild, even if the ImageSpec hasn’t changed. To overwrite an existing image, pass the FLYTE_FORCE_PUSH_IMAGE_SPEC=True to the union command.

FLYTE_FORCE_PUSH_IMAGE_SPEC=True union run --remote image_spec.py wf

You can also force push an image in the Python code by calling the force_push() method.

image = ImageSpec(packages=["pandas"]).force_push()

Getting source files into ImageSpec

Typically, getting source code files into a task’s image at run time on a live Union.ai backend is done through the fast registration mechanism.

However, if your ImageSpec constructor specifies a source_root and the copy argument is set to something other than CopyFileDetection.NO_COPY, then files will be copied regardless of fast registration status. If the source_root and copy fields to an ImageSpec are left blank, then whether or not your source files are copied into the built ImageSpec image depends on whether or not you use fast registration. Please see registering workflows for the full explanation.

Since files are sometimes copied into the built image, the tag that is published for an ImageSpec will change based on whether fast register is enabled, and the contents of any files copied.