Hello, just curious what the default value of PULU...
# general
t
Hello, just curious what the default value of PULUMI_PARALLEL is?
l
I think that's a different variable, which affects some operations when you are using a DIY backend
👀 1
My initial hunch was that it's however many cores you have (or some multiple thereof)
E.g. if you run
pulumi up --help
, you'll see the help text for the
--parallel
flag (which that env var lets you set with the environment instead of a CLI flag) references a number that is likely some function of your CPU's advertised core count
e
It's
GOMAXPROCS*4
and
GOMAXPROCS
is generally just your cpu count.
💡 1