Replies: 1 comment
-
|
Have you tried |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, I have a JSON file with many identical commands, but they are independent of each other. In other words, no block has a
DependsOnentry.According to AI, DSCv3 would execute such blocks in parallel and blocks with
DependsOnin sequence. Unfortunately, I see that DSCv3 executes everything in sequence, which takes an extremely long time on an SQL Server. I can't let an SQL Server provisioning run for 5+ hours while DSCv1 takes barely an hour.Therefore, I'd like to know how I can force DSCv3 to execute all the blocks in the JSON file in parallel as long as no
DependsOnentry is present.My DSCv3 execution via Ansible is divided into four JSON files which are executed sequentially:
SQLServer install,filesystem,extras, andaggroup.Beta Was this translation helpful? Give feedback.
All reactions