Load predefined SageMaker pipelines object to execute it.

0

I have a notebook in which I create a SageMaker Pipeline:

from sagemaker.workflow.pipeline import Pipeline

pipeline = Pipeline(
    name = 'my-pipeline-name',
    parameters=pipeline_parameters,
    steps=[step_preprocess, step_lambda_compress_preprocessor_output, step_train, step_model_create, step_lambda_create_endpoint],
    pipeline_experiment_config = None
)

pipeline.upsert(role_arn=sagemaker_role)

I want to now load this pipeline object, in another notebook/piece of API, and execute it. Is this possible? The documentation https://sagemaker.readthedocs.io/en/v2.199.0/workflows/pipelines/sagemaker.workflow.pipelines.html#pipeline tells me I can create a new Pipeline object, but I cannot find how to load an already predefined one.

Ando
已提問 5 個月前檢視次數 197 次
1 個回答
0

Hi,

Thanks for using AWS Sagemaker.

I understand that you would like to know how you can load predefined SageMaker pipelines object to execute it.

When you write pipeline object, are you talking about the python object within the notebook or the SageMaker Pipeline entity? For the second one, the SageMaker entity, you can find the pipeline in the Studio panel, or use list-pipelines with CLI or Boto3. For the python entity you can export the definition (pipeline.definition()) and write it to a json file.

To further understand the issue more in depth as I have limited visibility on your setup, I'd recommend you to reach to AWS Support by creating a support case[+] so that the engineer can investigate further and help you overcome the issue.

Reference:

-————-

[+] Open a support case with AWS using the link: https://console.aws.amazon.com/support/home?#/case/create

AWS
已回答 5 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南