3

以下示例代码泄漏句柄。句柄数从 133 开始,不到 2 小时就达到了 900。示例是 VS2010 和 .Net 4.0。这不会发生在 .Net 3.5 上。我已经在超过 3 台机器上复制了这个,所有的 Win2008 R2 服务器。SQL 2008 和 SQL 2012。这些机器是虚拟机,每周不断回滚两次,所以很干净。

//Reference dll are the ones required for SQL 
//.Net 4.0 (not 'Client Profile' version)
static void Main(string[] args)
{

    string sss = "Data Source=WIN-0BDHQ0IIUFL,1433;Initial Catalog=DB_Mycentral;Persist Security Info=False;User ID=Myuser;Password=123;Connect Timeout=60;Network Library=dbmssocn";
    System.Data.SqlClient.SqlConnection connection = new System.Data.SqlClient.SqlConnection(sss);
    int i = 0;
    while (true)
    {
        i++;

        Thread.Sleep(1000 * 60 * 60);
        Console.WriteLine("{0} hrs sleep", i);
    }
}

我观察到 ProcMon.exe 中的活动和 ProcExp.exe 中的调用堆栈。ProcMon.exe反复记录 CreateThread() 和 ExitThread() 。然后 ProcExp.exe 针对新创建的 TID显示cld.dll!StrongNameErrorInfo+0​​x18910 。最后,ProcExp.exe 中的 THREAD 对象计数增加了一个。这整个过程一次又一次地重复。

Example for leaking of TID 9089:
CreateThread()/ExitThread() TID:9089 //Log in ProcMon.exe
cld.dll!StrongNameErrorInfo+0x18910  TID: 9089  //Call-stack in ProcExp.exe

背景:我编写了这个示例来缩小我们生产代码中的漏洞。该代码在 .Net 3.5 中运行良好,但在 .Net 4.0 中泄漏。

如果我必须在打开连接时设置额外的标志,请告诉我。

4

1 回答 1

0

使用“使用”确保始终调用 dispose 方法。

请参阅http://msdn.microsoft.com/en-us/library/yh598w02.aspx

//Reference dll are the ones required for SQL 
//.Net 4.0 (not 'Client Profile' version)
static void Main(string[] args)
{

    string sss = "Data Source=WIN-0BDHQ0IIUFL,1433;Initial Catalog=DB_Mycentral;Persist Security Info=False;User ID=Myuser;Password=123;Connect Timeout=60;Network Library=dbmssocn";
    using(System.Data.SqlClient.SqlConnection connection = new System.Data.SqlClient.SqlConnection(sss))
    {

        int i = 0;
        while (true)
        {
            i++;

            Thread.Sleep(1000 * 60 * 60);
            Console.WriteLine("{0} hrs sleep", i);
        }
    }
}
于 2013-08-27T15:03:37.077 回答