0
votes

We have an ADF pipeline that runs 3 other pipelines which run the same executable using the same Azure Batch pool. Most of the time the executable runs successfully. However, there are instances where the pipeline hangs before it starts running the executable.

Note that all 3 pipelines are using the same Azure Batch pool.

  • The executable does not have any parallelism, so does the number of nodes make a difference? Should there be at least 3 nodes?

  • Is there an issue with the pipelines using the same Azure Batch pool? Should they be using different pools?

Thanks

Mehmet

1

1 Answers

1
votes

I might try and attempt cater 2 questions from my Batch hat on: (I hope this gives you idea to put some debugging in place to identify in depth)

Since its code node is trying to run, I would recommend setting debug point and checking service log to identify user code run behavior.

Thanks,