Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

powercode/PSParallel

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PSParallel

Invoke scriptblocks in parallel runspaces

Installation

Install-Module PSParallel
# ping all machines in a subnet
(1..255).Foreach{"192.168.0.$_"} | Invoke-Parallel { [PSCustomObject] @{IP=$_;Result=ping.exe -4 -a -w 20 $_}}

Variables and functions are captured from the parent session.

Throttling

To control the degree of parallelism, i.e. the number of concurrent runspaces, use the -ThrottleLimit parameter

# process lots of crash dumps
Get-ChildItem -Recurse *.dmp | Invoke-Parallel -ThrottleLimit 64 -ProgressActivity "Processing dumps" {
   [PSCustomObject] @{ Dump=$_; Analysis = cdb.exe -z $_.fullname -c '"!analyze -v;q"'
  }

The overhead of spinning up new PowerShell classes is non-zero. Invoke-Parallel is useful when you have items with high latency or that is long running.

image

Contributions

Pull requests and/or suggestions are more than welcome.

Acknowledgements

The idea and the basis for the implementation comes from RamblingCookieMonster. Kudos for that implementation also goes to Boe Prox(@proxb) and Sergei Vorobev(@xvorsx).

About

PowerShell module to invoke scriptblocks in parallel runspaces

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
Morty Proxy This is a proxified and sanitized view of the page, visit original site.