Lightning AI Orchestrator


description: Orchestrating your pipelines to run on Lightning AI.

Lightning AI Orchestrator

Lightning AI Studio is a platform that simplifies the development and deployment of AI applications. The Lightning AI orchestrator is an integration provided by ZenML that allows you to run your pipelines on Lightning AI's infrastructure, leveraging its scalable compute resources and managed environment.

This component is only meant to be used within the context of a remote ZenML deployment scenario. Usage with a local ZenML deployment may lead to unexpected behavior!

When to use it

  • You are looking for a fast and easy way to run your pipelines on GPU instances.

  • you're already using Lightning AI for your machine learning projects.

  • you want to leverage Lightning AI's managed infrastructure for running your pipelines.

  • you're looking for a solution that simplifies the deployment and scaling of your ML workflows.

  • you want to take advantage of Lightning AI's optimizations for machine learning workloads.

How to deploy it

To use the Lightning AI Studio orchestrator, you need to have a Lightning AI account and the necessary credentials. You don't need to deploy any additional infrastructure, as the orchestrator will use Lightning AI's managed resources.

How it works

The Lightning AI orchestrator is a ZenML orchestrator that runs your pipelines on Lightning AI's infrastructure. When you run a pipeline with the Lightning AI orchestrator, ZenML will archive your current ZenML repository and upload it to the Lightning AI studio. Once the code is archived, using lightning-sdk, ZenML will create a new stduio in Lightning AI and upload the code to it. Then ZenML runs list of commands via studio.run() to prepare for the pipeline run (e.g. installing dependencies, setting up the environment). Finally, ZenML will run the pipeline on Lightning AI's infrastructure.

  • You can always use an already existing studio by specifying the main_studio_name in the LightningOrchestratorSettings.

  • The orchestartor supports a async mode, which means that the pipeline will be run in the background and you can check the status of the run in the ZenML Dashboard or the Lightning AI Studio.

  • You can specify a list of custom commands that will be executed before running the pipeline. This can be useful for installing dependencies or setting up the environment.

  • The orchestrator supports both CPU and GPU machine types. You can specify the machine type in the LightningOrchestratorSettings.

How to use it

To use the Lightning AI orchestrator, you need:

Lightning AI credentials

  • LIGHTNING_USER_ID: Your Lightning AI user ID

  • LIGHTNING_API_KEY: Your Lightning AI API key

  • LIGHTNING_USERNAME: Your Lightning AI username (optional)

  • LIGHTNING_TEAMSPACE: Your Lightning AI teamspace (optional)

  • LIGHTNING_ORG: Your Lightning AI organization (optional)

Alternatively, you can configure these credentials when registering the orchestrator.

We can then register the orchestrator and use it in our active stack:

zenml orchestrator register lightning_orchestrator \
    --flavor=lightning \
    --user_id=<YOUR_LIGHTNING_USER_ID> \
    --api_key=<YOUR_LIGHTNING_API_KEY> \
    --username=<YOUR_LIGHTNING_USERNAME> \
    --teamspace=<YOUR_LIGHTNING_TEAMSPACE> \
    --organization=<YOUR_LIGHTNING_ORGANIZATION>

# Register and activate a stack with the new orchestrator
zenml stack register lightning_stack -o lightning_orchestrator ... --set

You can also configure the orchestrator at pipeline level, using the orchestrator parameter.

from zenml.integrations.lightning.flavors.lightning_orchestrator_flavor import LightningOrchestratorSettings


lightning_settings = LightningOrchestratorSettings(
    main_studio_name="my_studio",
    machine_type="cpu",
    async_mode=True,
    custom_commands=["pip install -r requirements.txt", "do something else"]
)

@pipeline(
    settings={
        "orchestrator.lightning": lightning_settings
    }
)
def my_pipeline():
    ...

ZenML will archive the current zenml repository (The code within the path where you run zenml init) and upload it to the Lightning AI studio. For this reason you need make sure that you are running zenml init in the same directory where you are running your pipeline.

Lightning AI studio VSCode

The custom_commands attribute allows you to specify a list of shell commands that will be executed before running the pipeline. This can be useful for installing dependencies or setting up the environment, The commands will be executed in the root directory of the uploaded and extracted ZenML repository.

You can now run any ZenML pipeline using the Lightning AI orchestrator:

python file_that_runs_a_zenml_pipeline.py

Lightning AI UI

Lightning AI provides its own UI where you can monitor and manage your running applications, including the pipelines orchestrated by ZenML.

For any runs executed on Lightning AI, you can get the URL to the Lightning AI UI in Python using the following code snippet:

from zenml.client import Client

pipeline_run = Client().get_pipeline_run("<PIPELINE_RUN_NAME>")
orchestrator_url = pipeline_run.run_metadata["orchestrator_url"].value

Additional configuration

For additional configuration of the Lightning AI orchestrator, you can pass LightningOrchestratorSettings which allows you to configure various aspects of the Lightning AI execution environment:

from zenml.integrations.lightning.flavors.lightning_orchestrator_flavor import LightningOrchestratorSettings

lightning_settings = LightningOrchestratorSettings(
    main_studio_name="my_studio",
    machine_type="cpu",
    async_mode=True,
    custom_commands=["pip install -r requirements.txt", "do something else"]
)

These settings can then be specified on either pipeline-level or step-level:

# Either specify on pipeline-level
@pipeline(
    settings={
        "orchestrator.lightning": lightning_settings
    }
)
def my_pipeline():
    ...

# OR specify settings on step-level
@step(
    settings={
        "orchestrator.lightning": lightning_settings
    }
)
def my_step():
    ...

Check out the SDK docs for a full list of available attributes and this docs page for more information on how to specify settings.

To use GPUs with the Lightning AI orchestrator, you need to specify a GPU-enabled machine type in your settings:

lightning_settings = LightningOrchestratorSettings(
    machine_type="gpu", # or 
)

Make sure to check Lightning AI's documentation for the available GPU-enabled machine types and their specifications.

ZenML Scarf

Last updated