AWS Sagemaker Orchestrator
Orchestrating your pipelines to run on Amazon Sagemaker.
Last updated
Was this helpful?
Orchestrating your pipelines to run on Amazon Sagemaker.
Last updated
Was this helpful?
is a serverless ML workflow tool running on AWS. It is an easy way to quickly run your code in a production-ready, repeatable cloud orchestrator that requires minimal setup without provisioning and paying for standby compute.
This component is only meant to be used within the context of a . Usage with a local ZenML deployment may lead to unexpected behavior!
You should use the Sagemaker orchestrator if:
you're already using AWS.
you're looking for a proven production-grade orchestrator.
you're looking for a UI in which you can track your pipeline runs.
you're looking for a managed solution for running your pipelines.
you're looking for a serverless solution for running your pipelines.
The ZenML Sagemaker orchestrator works with , which can be used to construct machine learning pipelines. Under the hood, for each ZenML pipeline step, it creates a SageMaker PipelineStep
, which contains a Sagemaker Processing or Training job.
In order to use a Sagemaker AI orchestrator, you need to first deploy . It would be recommended to deploy ZenML in the same region as you plan on using for Sagemaker, but it is not necessary to do so. You must ensure that you are connected to the remote ZenML server before using this stack component.
The only other thing necessary to use the ZenML Sagemaker orchestrator is enabling the relevant permissions for your particular role.
To use the Sagemaker orchestrator, we need:
The ZenML aws
and s3
integrations installed. If you haven't done so, run
The local client (whoever is running the pipeline) will also have to have the necessary permissions or roles to be able to launch Sagemaker jobs. (This would be covered by the AmazonSageMakerFullAccess
policy suggested above.)
There are three ways you can authenticate your orchestrator and link it to the IAM role you have created:
You can now run any ZenML pipeline using the Sagemaker orchestrator:
If all went well, you should now see the following output:
Sagemaker comes with its own UI that you can use to find further details about your pipeline runs, such as the logs of your steps.
To access the Sagemaker Pipelines UI, you will have to launch Sagemaker Studio via the AWS Sagemaker UI. Make sure that you are launching it from within your desired AWS region.
Once the Studio UI has launched, click on the 'Pipeline' button on the left side. From there you can view the pipelines that have been launched via ZenML:
Open the execution,
Click on the failed step in the pipeline graph,
Go to the 'Output' tab to see the error message or to 'Logs' to see the logs.
Search for 'CloudWatch' in the AWS console search bar.
Navigate to 'Logs > Log groups.'
Open the '/aws/sagemaker/ProcessingJobs' log group.
Here, you can find log streams for each step of your SageMaker pipeline executions.
When running your ZenML pipeline with the Sagemaker orchestrator, the configuration set when configuring the orchestrator as a ZenML component will be used by default. However, it is possible to provide additional configuration at the pipeline or step level. This allows you to run whole pipelines or individual steps with alternative configurations. For example, this allows you to run the training process with a heavier, GPU-enabled instance type, while running other steps with lighter instances.
image_uri
instance_count
sagemaker_session
entrypoint
base_job_name
environment
For example, settings can be provided and applied in the following way:
For example, if your ZenML component is configured to use ml.c5.xlarge
with 400GB additional storage by default, all steps will use it except for the step above, which will use ml.t3.medium
(for Processing Steps) or ml.m5.xlarge
(for Training Steps) with 30GB additional storage. See the next section for details on how ZenML decides which Sagemaker Step type to use.
This configuration keeps instances warm for 5 minutes after each job completes, allowing subsequent jobs to start faster if initiated within this timeframe. The reduced startup time can be particularly beneficial for iterative development processes or frequently run pipelines.
If you prefer not to use Warm Pools, you can explicitly disable them:
By default, the SageMaker orchestrator uses Training Steps where possible, which can offer performance benefits and better integration with SageMaker's training capabilities. To disable this behavior:
These settings allow you to fine-tune your SageMaker orchestrator configuration, balancing between faster startup times with Warm Pools and more control over resource usage. By optimizing these settings, you can potentially reduce overall pipeline runtime and improve your development workflow efficiency.
Import: S3 -> job
Importing data can be useful when large datasets are available in S3 for training, for which manual copying can be cumbersome. Sagemaker supports File
(default) and Pipe
mode, with which data is either fully copied before the job starts or piped on the fly. See the Sagemaker documentation referenced above for more information about these modes.
Note that data import and export can be used jointly with processor_args
for maximum flexibility.
A simple example of importing data from S3 to the Sagemaker job is as follows:
In this case, data will be available at /opt/ml/processing/input/data
within the job.
It is also possible to split your input over channels. This can be useful if the dataset is already split in S3, or maybe even located in different buckets.
Here, the data will be available in /opt/ml/processing/input/data/train
, /opt/ml/processing/input/data/val
and /opt/ml/processing/input/data/test
.
Export: job -> S3
Data from within the job (e.g. produced by the training process, or when preprocessing large data) can be exported as well. The structure is highly similar to that of importing data. Copying data to S3 can be configured with output_data_s3_mode
, which supports EndOfJob
(default) and Continuous
.
In the simple case, data in /opt/ml/processing/output/data
will be copied to S3 at the end of a job:
In a more complex case, data in /opt/ml/processing/output/data/metadata
and /opt/ml/processing/output/data/checkpoints
will be written away continuously:
Using multichannel output or output mode except EndOfJob
will make it impossible to use TrainingStep and also Warm Pools. See corresponding section of this document for details.
The SageMaker orchestrator allows you to add tags to your pipeline executions and individual jobs. Here's how you can apply tags at both the pipeline and step levels:
In this example:
The pipeline_tags
are applied to the entire SageMaker pipeline object. SageMaker automatically applies the pipeline_tags to all its associated jobs.
The tags
in step_settings
are applied to the specific SageMaker job for the preprocess_data
step.
This approach allows for more granular tagging, giving you flexibility in how you categorize and manage your SageMaker resources. You can view and manage these tags in the AWS Management Console, CLI, or API calls related to your SageMaker resources.
The SageMaker orchestrator supports running pipelines on a schedule using SageMaker's native scheduling capabilities. You can configure schedules in three ways:
Using a cron expression
Using a fixed interval
Running once at a specific time
When you deploy a scheduled pipeline, ZenML will:
Create a SageMaker Pipeline Schedule with the specified configuration
Configure the pipeline as the target for the schedule
Enable automatic execution based on the schedule
When using scheduled pipelines, you need to ensure your IAM role has the correct permissions and trust relationships. You can set this up by either defining an explicit scheduler_role
in your orchestrator configuration or you can adjust the role that you are already using on the client side to manage Sagemaker pipelines.
This is particularly useful when:
You want to use different roles for creating pipelines and scheduling them
Your organization's security policies require separate roles for different operations
You need to grant specific permissions only to the scheduling operations
Trust Relationships Your scheduler_role
(or your client role if you did not configure a scheduler_role
) needs to be assumed by the EventBridge Scheduler service:
Required IAM Permissions for the client role
In addition to permissions needed to manage pipelines, the role on the client side also needs the following permissions to create schedules on EventBridge:
Or you can use the AmazonEventBridgeSchedulerFullAccess
managed policy.
These permissions enable:
Creation and management of Pipeline Schedules
Setting up trust relationships between services
Managing IAM policies required for the scheduled execution
Cleanup of resources when schedules are removed
Without these permissions, the scheduling functionality will fail. Make sure to configure them before attempting to use scheduled pipelines.
Required IAM Permissions for the scheduler_role
The scheduler_role
requires the same permissions as the client role (that would run the pipeline in a non-scheduled case) to launch and manage Sagemaker jobs. This would be covered by the AmazonSageMakerFullAccess
permission.
installed and running.
A as part of your stack (configured with an authentication_secret
attribute).
A as part of your stack.
An IAM role or user with applied to it as well as sagemaker.amazonaws.com
added as a Principal Service. Full details on these permissions can be found or use the ZenML recipe (when available) which will set up the necessary permissions for you.
If you want to use schedules, you also need to set up the correct roles, permissions and policies covered .
The recommended way to authenticate your SageMaker orchestrator is by registering an and connecting it to your SageMaker orchestrator. If you plan to use scheduled pipelines, ensure the credentials used by the service connector have the necessary EventBridge and IAM permissions listed in the section:
Instead of creating a service connector, you can also configure your AWS authentication credentials directly in the orchestrator. If you plan to use scheduled pipelines, ensure these credentials have the necessary EventBridge and IAM permissions listed in the section:
See the for more information on available configuration options.
If you neither connect your orchestrator to a service connector nor configure credentials explicitly, ZenML will try to implicitly authenticate to AWS via the default
profile in your local . If you plan to use scheduled pipelines, ensure this profile has the necessary EventBridge and IAM permissions listed in the section:
ZenML will build a Docker image called <CONTAINER_REGISTRY_URI>/zenml:<PIPELINE_NAME>
which includes your code and use it to run your pipeline steps in Sagemaker. Check out if you want to learn more about how ZenML builds these images and how you can customize them.
If it is taking more than 15 minutes for your run to show up, it might be that a setup error occurred in SageMaker before the pipeline could be started. Checkout the section for more information on how to debug this.
If your SageMaker pipeline encounters an error before the first ZenML step starts, the ZenML run will not appear in the ZenML dashboard. In such cases, use the to review the error message and logs. Here's how:
Open the corresponding pipeline in the SageMaker UI as shown in the ,
Alternatively, for a more detailed view of log messages during SageMaker pipeline executions, consider using :
Additional configuration for the Sagemaker orchestrator can be passed via SagemakerOrchestratorSettings
. Here, it is possible to configure processor_args
, which is a dictionary of arguments for the Processor. For available arguments, see the . Currently, it is not possible to provide custom configuration for the following attributes:
Check out for more information on how to specify settings in general.
For more information and a full list of configurable attributes of the Sagemaker orchestrator, check out the .
can significantly reduce the startup time of your pipeline steps, leading to faster iterations and improved development efficiency. This feature keeps compute instances in a "warm" state, ready to quickly start new jobs.
To enable Warm Pools, use the class:
In Sagemaker jobs, it is possible to . Similarly, it is possible to write data from a job to a bucket. The ZenML Sagemaker orchestrator supports this via the SagemakerOrchestratorSettings
and hence at component, pipeline, and step levels.
In the case of using Pipe
for input_data_s3_mode
, a file path specifying the pipe will be available as per the description written . An example of using this pipe file within a Python script can be found .
Note that if you wish to use this orchestrator to run steps on a GPU, you will need to follow to ensure that it works. It requires adding some extra settings customization and is essential to enable CUDA for the GPU to give its full acceleration.
If you run the same pipeline with a schedule multiple times, the existing schedule will not be updated with the new settings. Rather, ZenML will create a new SageMaker pipeline and attach a new schedule to it. The user must manually delete the old pipeline and their attached schedule using the AWS CLI or API (aws scheduler delete-schedule <SCHEDULE_NAME>
). See details here: