- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经准备好此脚本以尝试使用不同的参数多次并行执行相同的函数:
$myparams = "A", "B","C", "D"
$doPlan = {
Param([string] $myparam)
echo "print $myparam"
# MakeARestCall is a function calling a web service
MakeARestCall -myparam $myparam
echo "done"
}
$myparams | Foreach-Object {
Start-Job -ScriptBlock $doPlan -ArgumentList $_
}
Id Name PSJobTypeName State HasMoreData Location Command
-- ---- ------------- ----- ----------- -------- -------
79 Job79 BackgroundJob Running True localhost ...
81 Job81 BackgroundJob Running True localhost ...
83 Job83 BackgroundJob Running True localhost ...
85 Job85 BackgroundJob Running True localhost ...
最佳答案
后台作业在独立的子进程中运行,这些子进程实际上与调用方不共享任何状态;特别:
$PROFILE
文件,因此他们从那里看不到任何定义。 [Environment]::GetFolderPath('MyDocuments')
);这已在v7.0中修复。 $using:scope
对其进行引用(请参阅 about_Remote_Variables
)。Start-ThreadJob
使用更快,更省资源的线程作业可以避免此问题(尽管所有其他限制都适用); Start-ThreadJob
随PowerShell [Core] 6+一起提供,可以在Windows PowerShell中按需安装(例如Install-Module -Scope CurrentUser ThreadJob
)-有关背景信息,请参见this answer。 Receive-Job -Wait
或 Wait-Job
),因为通过PowerShell的CLI调用的脚本会整体退出PowerShell进程,从而杀死所有不完整的作业。MakeARestCall
:MakeARestCall.ps1
)或可执行文件(MakeARestCall.exe
),位于$env:Path
$doJob
函数也未定义别名,则在作业过程中执行时,您的MakeARestCall
脚本块将失败。MakeARestCall
确实是一个函数,因此,为了使您的代码正常工作,您必须(重新)将该函数定义为作业(在您的情况下为$doJob
)执行的脚本块的一部分:# Sample function that simply echoes its argument.
function MakeARestCall { param($MyParam) "MakeARestCall: $MyParam" }
'foo', 'bar' | ForEach-Object {
# Note: If Start-ThreadJob is available, use it instead of Start-Job,
# for much better performance and resource efficiency.
Start-Job -ArgumentList $_ {
Param([string] $myparam)
# Redefine the function via its definition in the caller's scope.
# $function:MakeARestCall returns MakeARestCall's function body
# which $using: retrieves from the caller's scope, assigning to
# it defines the function in the job's scope.
$function:MakeARestCall = $using:function:MakeARestCall
# Call the recreated MakeARestCall function with the parameter.
MakeARestCall -MyParam $myparam
}
} | Receive-Job -Wait -AutoRemove
MakeARestCall: foo
和MakeARestCall: bar
,表明在作业过程中成功调用了(重新定义的)MakeARestCall
函数。MakeARestCall
设为脚本(MakeARestCall.ps1
),并通过其完整路径进行调用。& $using:PSScriptRoot\MakeARestCall.ps1 -MyParam $myParam
ForEach-Object -Parallel
,更简单,更快的PowerShell [Core] 7+替代方案:-Parallel
的 ForEach-Object
参数为每个管道输入对象在单独的运行空间(线程)中运行给定的脚本块。Start-ThreadJob
)的一种更简单,管道友好的方法,与后台作业相比,具有相同的性能和资源使用优势,并且具有直接报告线程输出的额外简便性。MakARestCall
函数也必须是(重新定义(或嵌入)在脚本块 [1]中。# Sample function that simply echoes its argument.
function MakeARestCall { param($MyParam) "MakeARestCall: $MyParam" }
# Get the function definition (body) *as a string*.
# This is necessary, because the ForEach-Object -Parallel explicitly
# disallows referencing *script block* values via $using:
$funcDef = $function:MakeARestCall.ToString()
'foo', 'bar' | ForEach-Object -Parallel {
$function:MakeARestCall = $using:funcDef
MakeARestCall -MyParam $_
}
-Parallel
不是一个开关(标志类型的参数),但是将脚本块作为参数并行运行。换句话说:-Parallel
必须直接放在脚本块之前。PS> 3, 1 | ForEach-Object -Parallel { Start-Sleep $_; "$_" }
1 # !! *Second* input's thread produced output *first*.
3
-AsJob
开关:PSTaskJob
类型的单个作业,该作业包含多个子作业,每个并行运行空间(线程)一个。您可以使用常规的*-Job
cmdlet对其进行管理,并通过.ChildJobs
属性访问各个子作业。 Receive-Job
接收其输出,然后按输入顺序显示它们:PS> 3, 1 | ForEach-Object -AsJob -Parallel { Start-Sleep $_; "$_" } |
Receive-Job -Wait -AutoRemove
3 # OK, first input's output shown first, due to having waited.
1
MakeARestCall
将Filter
函数重新定义为对管道输入隐式操作的过滤器函数($_
),因此您可以按其原样使用其定义作为ForEach-Object -Parallel
脚本块:# Sample *filter* function that echoes the pipeline input it is given.
Filter MakeARestCall { "MakeARestCall: $_" }
# Pass the filter function's definition (which is a script block)
# directly to ForEach-Object -Parallel
'foo', 'bar' | ForEach-Object -Parallel $function:MakeARestCall
关于powershell - 无法与foreach对象并行开始作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60668611/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!