Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you make one AWS sagemaker pipeline trigger another one?

I know you can trigger sagemaker pipelines with all kind of events. Can you also trigger sagemaker pipelines when another pipeline finishes it's execution?

like image 701
Roelant Avatar asked Oct 27 '25 14:10

Roelant


1 Answers

Yes, use an Amazon EventBridge event, such as

{
  "source": [
    "aws.sagemaker"
  ],
  "detail-type": [
    "SageMaker Model Building Pipeline Execution Status Change"
  ],
  "detail": {
    "currentPipelineExecutionStatus": [
      "Succeeded"
    ]
  }
}

Then call the next pipeline as the target of the EventBridge event

like image 194
Neil McGuigan Avatar answered Oct 29 '25 05:10

Neil McGuigan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!