Home > Blockchain >  Are Azure Pipelines designed to support long-running jobs (running for days, potentially weeks)?
Are Azure Pipelines designed to support long-running jobs (running for days, potentially weeks)?

Time:12-29

I have a long-running Java/Gradle process and an Azure Pipelines job to run it.

It's perfectly fine and expected for the process to run for several days, potentially over a week. The Azure Pipelines job is run on a self-hosted agent (to enter image description here

CodePudding user response:

Azure DevOps pipelines are designed to deploy and test systems. Which should not take several days.

Microsoft Azure does have logic apps, which are designed to run long running jobs. See https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-scenario-function-sb-trigger

  • Related