3

我有一个带有一个 Web 角色的 Azure 云项目。Web 角色端点在部署后几乎立即返回 HTTP 400 - 错误请求。当我检查跟踪消息日志时,我看到以下异常 -

Type : System.InvalidOperationException, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
Message : Custom counters file view is out of memory.
Source : System
Help link : 
Data : System.Collections.ListDictionaryInternal
TargetSite : Int32 CalculateMemory(Int32, Int32, Int32 ByRef)
HResult : -2146233079
Stack Trace :    at System.Diagnostics.SharedPerformanceCounter.CalculateMemory(Int32 oldOffset, Int32 totalSize, Int32& alignmentAdjustment)
   at System.Diagnostics.SharedPerformanceCounter.CreateCategory(CategoryEntry* lastCategoryPointer, Int32 instanceNameHashCode, String instanceName, PerformanceCounterInstanceLifetime lifetime)
   at System.Diagnostics.SharedPerformanceCounter.GetCounter(String counterName, String instanceName, Boolean enableReuse, PerformanceCounterInstanceLifetime lifetime)
   at System.Diagnostics.SharedPerformanceCounter..ctor(String catName, String counterName, String instanceName, PerformanceCounterInstanceLifetime lifetime)
   at System.Diagnostics.PerformanceCounter.InitializeImpl()
   at System.Diagnostics.PerformanceCounter..ctor(String categoryName, String counterName, String instanceName, Boolean readOnly)

似乎是当 .NET 达到允许分配给性能计数器的内存量上限时引起的。

因此,我尝试在我的 Web.config 中使用以下条目来增加内存分配 -

<configuration> 
<system.diagnostics> 
<performanceCounters filemappingsize="33554432" /> 
</system.diagnostics> 
</configuration> 

但即便如此,我仍然遇到了问题。有人可以为我提供一些解决问题的指示吗?

谢谢!

4

2 回答 2

5

您是否使用自己的性能计数器?我们在其中一个应用程序中遇到了同样的异常,它创建了性能计数器,但没有正确处理它们。

请注意,调用PerformanceCounter.Dispose()是不够的 - 它只是继承自Component.Dispose()并且不添加任何其他功能。

因此,在处理多实例 PerformanceCounter 的实例时始终调用PerformanceCounter.RemoveInstance(),否则您的 PerformanceCounter 实例将增长,直到保留内存(默认为 512 KB)已满。

一个示例模式看起来是这样(this.performanceCounters 是一个包含使用过的性能计数器的字典):

public void Dispose()
{
    this.Dispose(true);
    GC.SuppressFinalize(this);
}

protected virtual void Dispose(bool disposing)
{
    if (disposing)
    {
        if (this.performanceCounters != null)
        {
            foreach (PerformanceCounter counter in this.performanceCounters.Values)
            {
                counter.RemoveInstance();
                counter.Dispose();
            }

            this.performanceCounters = null;
        }
    }
}
于 2014-12-03T09:03:41.310 回答
2

这个文档。

...如果您在应用程序配置文件中定义大小,则仅当您的应用程序是导致性能计数器执行的第一个应用程序时才使用该大小。因此,指定 filemappingsize 值的正确位置是Machine.config文件。...

于 2013-09-22T03:13:21.053 回答