Hi, When running `pulumi.up` using automation api ...
# automation-api
r
Hi, When running
pulumi.up
using automation api does the updates supposed to being executed in a raw or parallel ? This is my code and it looks like it’s running sequential and not parallel
Copy code
const opts: UpOptions = {
      onEvent: logEventUpdateOutput,
      parallel: 2147483647,
    }
    const upRes: UpResult = await stack.up(opts)
please advise, Is it something that I can update in order to faster deployment ? to make it run in parallel ?
l
That parallel option refers to that max number of resources that will be created in parallel. The engine will determine which resources can be created in parallel, but it is possible that some will need to be created sequentially due to dependencies. Would be happy to take a look if you would share your program