私は8つのpowershellスクリプトを持っています。依存関係のあるものはほとんどありません。つまり、並列に実行することはできません。彼らは次々に執行されるべきです。powershellスクリプト実行の並列化
Powershellスクリプトには依存関係がなく、並列実行が可能です。私は手動でハード依存関係を符号化することによって可能であることを知っていた詳細に
Powershell scripts 1, 2, and 3 depend on nothing else Powershell script 4 depends on Powershell script 1 Powershell script 5 depends on Powershell scripts 1, 2, and 3 Powershell script 6 depends on Powershell scripts 3 and 4 Powershell script 7 depends on Powershell scripts 5 and 6 Powershell script 8 depends on Powershell script 5
を説明した後
が依存関係です。しかし、10個のPowerShellスクリプトが追加され、それらの間の依存関係が追加される可能性があります。
依存性を見つけることによって、並列並列性を実現していますか?もしそうなら、進め方を教えてください。
それはちょうど答えではない、あなたは私に並列性について深刻すぎると考えさせました。あなたの素晴らしい答えに感謝します。 – Samselvaprabu