我正在处理一个存在内存泄漏的旧版 .NET 应用程序。为了尝试缓解内存溢出的情况,我将应用程序池内存限制设置为 500KB 到 500000KB(500MB)之间的任意值,但应用程序池似乎不遵守这些设置,因为我可以登录并查看它的物理内存(无论值是多少,都是 5GB 及以上)。这个应用程序正在杀死服务器,我似乎无法确定如何调整应用程序池。您推荐什么设置来确保这个应用程序池不超过 500mb 的内存。
以下是示例,应用程序池使用了 3.5GB
因此,服务器再次崩溃,原因如下:
相同的应用程序池具有较低的内存限制,1000 个回收请求每两三分钟会引起一次回收事件,但有时它会运行。
我还对任何可以监视该过程(作为任务或服务每 30 秒运行一次)并在超出某个限制时可以终止它的工具持开放态度。
答案1
我之所以找到这篇文章,是因为我正在努力回答一个类似的问题,其中没有限制。请参阅不遵守 IIS WebLimits。
不过,我可以尝试解决您的问题。尝试下面的 c# 代码。您可以使用 powershell 执行相同操作。您需要以管理员权限运行它。
static void Main(string[] args)
{
string appPoolName = args[0];
int memLimitMegs = Int32.Parse(args[1]);
var regex = new System.Text.RegularExpressions.Regex(".*w3wp.exe \\-ap \"(.*?)\".*");
//find w3wp procs....
foreach (var p in Process.GetProcessesByName("w3wp"))
{
string thisAppPoolName = null;
try
{
//Have to use WMI objects to get the command line params...
using (var searcher = new ManagementObjectSearcher("SELECT CommandLine FROM Win32_Process WHERE ProcessId = " + p.Id))
{
StringBuilder commandLine = new StringBuilder();
foreach (ManagementObject @object in searcher.Get())
{
commandLine.Append(@object["CommandLine"] + " ");
}
//extract the app pool name from those.
var r = regex.Match(commandLine.ToString());
if (r.Success)
{
thisAppPoolName = r.Groups[1].Value;
}
if (thisAppPoolName == appPoolName)
{
//Found the one we're looking for.
if (p.PrivateMemorySize64 > memLimitMegs*1024*1024)
{
//it exceeds limit, recycle it using appcmd.
Process.Start(Path.Combine(System.Environment.SystemDirectory , "inetsrv", "appcmd.exe"), "recycle apppool /apppool.name:" + appPoolName);
Console.WriteLine("Recycled:" + appPoolName);
}
}
}
}
catch (Win32Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}