Hi
0.8.5
parallelism flag should be replaced with concurrency or something else that declares the process is concurrent.
-parallelism=n Limit the number of concurrent operations.
Defaults to 10.
terraform apply --help@robpike https://blog.golang.org/concurrency-is-not-parallelism
Parallelism is the right word here. Its limiting the theoretical maximum parallel operations. If you have less cores than "n" then parallelism might be lower, but Terraform will never even attempt more than n.
Fixing it now.
@mitchellh @ysweid Does this mean terraform parallelism is limited to the number of cores on the system? Most modern systems can support many more _concurrent_ operations than the number of cores. Why not terraform?
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Most helpful comment
@mitchellh @ysweid Does this mean terraform parallelism is limited to the number of cores on the system? Most modern systems can support many more _concurrent_ operations than the number of cores. Why not terraform?