我有一个服务器运行大约500个powershell进程。这些过程中的每一个都被设计为在我们的环境中进行WMI调用。我一直在小心地验证我没有用尽服务器的所有可用内存或CPU。当我同时运行所有500个进程时,我的内存使用率大约为70%。
以防有人想知道如何处理单个进程,它们是使用gearman job worker执行的。基本上是一个调用powershell脚本的shell python脚本…乘以500。
我遇到的问题是,我的一些powershell进程在运行几个小时后崩溃。
我得到的一些错误是:
A new guard page for the stack cannot be created
当我打开事件查看器时,我看到进程崩溃时的这些事件
Fault bucket , type 0
Event Name: PowerShell
Response: Not available
Cab Id: 0
Problem signature:
P1: powershell.exe
P2: 6.3.9600.16394
P3: System.OutOfMemoryException
P4: System.OutOfMemoryException
P5: oft.PowerShell.ConsoleHost.ReportExceptionFallback
P6: lization.EncodingTable.nativeCreateOpenFileMapping
P7: Consol.. main thread
P8:
P9:
P10:
Attached files:
These files may be available here:
C:path
Analysis symbol:
Rechecking for solution: 0
Report Id: ID
Report Status: 2048
Hashed bucket:
我猜它与powershell耗尽内存有关,但服务器没有达到峰值,并不是所有进程都崩溃,它是零星的。
任何帮助都会很感激。
这里有更多的崩溃结果,powershell故障模块的名称每次都不一样:
Problem Event Name: APPCRASH
Application Name: powershell.exe
Application Version: 6.3.9600.16384
Application Timestamp: 52158733
Fault Module Name: ntdll.dll
Fault Module Version: 6.3.9600.16408
Fault Module Timestamp: 523d45fa
Exception Code: c00000fd
Exception Offset: 00069abb
OS Version: 6.3.9600.2.0.0.272.7
Locale ID: 1033
Additional Information 1: 624b
Additional Information 2: 624b484d3cf74536f98239c741379147
Additional Information 3: a901
Additional Information 4: a901f876e92d1eb79eb3a513defef0c6
Problem signature:
Problem Event Name: APPCRASH
Application Name: powershell.exe
Application Version: 6.3.9600.16384
Application Timestamp: 52158733
Fault Module Name: combase.dll
Fault Module Version: 6.3.9600.16408
Fault Module Timestamp: 523d3001
Exception Code: c00000fd
Exception Offset: 0001a360
OS Version: 6.3.9600.2.0.0.272.7
Locale ID: 1033
Additional Information 1: 81ca
Additional Information 2: 81cae32566783b059420874b47802c3e
Additional Information 3: b637
Additional Information 4: b6375e6f6a866fc9d00393d4649231b8
您看过每个shell的最大内存分配吗?
get-item WSMan:localhostShellMaxMemoryPerShellMB
如果它太低,改变它;
set-item WSMan:localhostShellMaxMemoryPerShellMB 2048
.Net没有内存限制吗?
如果你正在使用任务管理器检查内存使用情况,你可以试试进程资源管理器。有时会得到截然不同的结果。
感谢大家的回复,原来我的powershell代码中有内存泄漏,导致内存使用时不时地激增。由于我并不是每时每刻都在监视服务器,所以我错过了内存使用量飙升的时间。
一个有趣的注意,似乎Powershell在杀死自己的进程之前不会使用服务器上超过80%的可用内存。
我必须将可用内存增加到56GB,现在我没有遇到任何问题。我已经运行了600个powershell进程一个星期了,没有一个崩溃。