.net 中异步SOCKET发送数据时碰到的内存问题

简介: 做CS的开发一直都是这样的方式: server端用 C++编写,采用IOCP机制处理大量客户端连接、数据接收发送的问题 client端用 C++ 或C# 写,没什么特殊要求。   最近工作时间上比较宽裕,决定采用新的方式来处理服务端的工作: C# + SOCKET异步机制(.net里没有IOCP的直接支持) 目前正可行性分析阶段,第一步的工作:接收3W个SOCKET连接, 结果还是不错的,很快就建立起来了,速度也可以。

做CS的开发一直都是这样的方式:

server端用 C++编写,采用IOCP机制处理大量客户端连接、数据接收发送的问题

client端用 C++ 或C# 写,没什么特殊要求。

 

最近工作时间上比较宽裕,决定采用新的方式来处理服务端的工作: C# + SOCKET异步机制(.net里没有IOCP的直接支持)

目前正可行性分析阶段,第一步的工作:接收3W个SOCKET连接, 结果还是不错的,很快就建立起来了,速度也可以。

但是第二步测试,接收、发送数据时,就发生了点问题:

   运行的SERVER程序在较短的时间内就占用了大量的内存!

 

我的测试环境:i3 +2G内存 + Win732位

客户端创建5000个连接,每间隔1秒种对所有的连接发送、接收一次数据。每次发送20bytes到server。

服务端与客户端不在同一台机器上

一般情况下,程序的启动内存占用为4.5M ,运行5分钟后,SERVER程序内存占用超过 100M,并且还在不停的快速增长

 

在一台服务器上测试(2W个连接),4个小时内,把8G内存全部用光(从任务管理器上看,使用了7.9G内存)

 

 

先看SERVER端的完整代码:(大家可以COPY到自己的IDE里直接编译)

 

[csharp]  view plain copy
 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Net.Sockets;  
  6.   
  7. namespace TestAsyncSendMem  
  8. {  
  9.     class Program  
  10.     {  
  11.         static TcpListener m_lisnter;  
  12.         static AsyncCallback m_acb = new AsyncCallback(DoAcceptSocketCallback);  
  13.         static void Main(string[] args)  
  14.         {  
  15.             m_lisnter = new System.Net.Sockets.TcpListener(System.Net.IPAddress.Any, 8001);  
  16.             m_lisnter.Start(5 * 1000);  
  17.   
  18.             try  
  19.             {  
  20.                 m_lisnter.BeginAcceptSocket(m_acb, null);  
  21.             }  
  22.             catch (Exception ex)  
  23.             {  
  24.                 m_lisnter.Stop();  
  25.                 m_lisnter = null;  
  26.   
  27.                 System.Diagnostics.Debug.WriteLine("BeginAcceptSocket err.Start fail!" + ex);  
  28.                 return;  
  29.             }  
  30.             Console.WriteLine("Begin receiving connection... Press any key to quit.");  
  31.   
  32.             Console.ReadKey();  
  33.   
  34.             m_lisnter.Stop();  
  35.         }  
  36.   
  37.         static void DoAcceptSocketCallback(IAsyncResult ar)  
  38.         {  
  39.             System.Net.Sockets.Socket s = null;  
  40.             try  
  41.             {  
  42.                 s = m_lisnter.EndAcceptSocket(ar);  
  43.             }  
  44.             catch (Exception ex)  
  45.             {  
  46.                 System.Diagnostics.Debug.WriteLine("End Accept socket err" + ex);  
  47.                 s = null;  
  48.             }  
  49.   
  50.             try  
  51.             {  
  52.                 m_lisnter.BeginAcceptSocket(m_acb, null);  
  53.             }  
  54.             catch (Exception ex)  
  55.             {  
  56.                 System.Diagnostics.Debug.WriteLine("after accept client socket,Re beginAcceptSocket fail." + ex);  
  57.             }  
  58.   
  59.             if (s != null)  
  60.             {  
  61.                 #region...  
  62.                 CTcpClientSync c = new CTcpClientSync(s);  
  63.                 Console.WriteLine(string.Format("accept client.{0}", c.Socket.RemoteEndPoint));  
  64.   
  65.                 if (c.BeginRcv() == true)  
  66.                 {  
  67.                     c.OnDisconnected += (CTcpClientSync client) =>  
  68.                     {  
  69.                         System.Diagnostics.Debug.WriteLine(string.Format("client {0} disconected", client.RemoteIP));  
  70.                     };  
  71.                 }  
  72.                 else  
  73.                 {  
  74.                     c.Stop();  
  75.                     System.Diagnostics.Debug.WriteLine(string.Format("accepted client {0} removed.cannot begin rcv", c.RemoteIP));  
  76.                 }  
  77.                 #endregion  
  78.             }  
  79.   
  80.         }  
  81.     }  
  82.   
  83.     public class CTcpClientSync  
  84.     {  
  85.         #region delegate  
  86.   
  87.         public delegate void dlgtDisconnected(CTcpClientSync c);  
  88.         public event dlgtDisconnected OnDisconnected;  
  89.  
  90.         #endregion  
  91.  
  92.         #region prop  
  93.   
  94.         Socket m_skt = null;  
  95.         public Socket Socket { get { return m_skt; } }  
  96.   
  97.         string m_strRemoteIP;  
  98.         public string RemoteIP { get { return m_strRemoteIP; } }  
  99.   
  100.         byte[] m_arybytBuf = new byte[1024];  
  101.   
  102.         AsyncCallback m_acb = null;  
  103.  
  104.         #endregion  
  105.   
  106.         public CTcpClientSync(Socket skt)  
  107.         {  
  108.             m_acb = new AsyncCallback(DoBeginRcvData);  
  109.   
  110.             m_skt = skt;  
  111.             try  
  112.             {  
  113.                 m_strRemoteIP = skt.RemoteEndPoint.ToString();  
  114.             }  
  115.             catch (Exception ex)  
  116.             {  
  117.                 System.Diagnostics.Debug.WriteLine("get remote end point exception."+ ex);  
  118.             }  
  119.   
  120.         }  
  121.   
  122.         public void Stop()  
  123.         {  
  124.             m_skt.Close();  
  125.         }  
  126.  
  127.         #region Raise event  
  128.         void RaiseDisconnectedEvent()  
  129.         {  
  130.             dlgtDisconnected handler = OnDisconnected;  
  131.             if (handler != null)  
  132.             {  
  133.                 try  
  134.                 {  
  135.                     handler(this);  
  136.                 }  
  137.                 catch (Exception ex)  
  138.                 {  
  139.                     System.Diagnostics.Debug.WriteLine("Raise disconn event exception." + ex.Message);  
  140.                 }  
  141.             }  
  142.         }  
  143.         #endregion  
  144.   
  145.         public bool BeginRcv()  
  146.         {  
  147.             try  
  148.             {  
  149.                 m_skt.BeginReceive(m_arybytBuf, 0, m_arybytBuf.Length, SocketFlags.None, m_acb, null);  
  150.             }  
  151.             catch (Exception ex)  
  152.             {  
  153.                 System.Diagnostics.Debug.WriteLine("BeginRcv exception." + ex);  
  154.                 return false;  
  155.             }  
  156.   
  157.             return true;  
  158.         }  
  159.   
  160.         void DoBeginRcvData(IAsyncResult ar)  
  161.         {  
  162.             int iReaded = 0;  
  163.             try  
  164.             {  
  165.                 iReaded = m_skt.EndReceive(ar);  
  166.             }  
  167.             catch (Exception ex)  
  168.             {  
  169.                 System.Diagnostics.Debug.WriteLine("BeginRcv exception." + ex);  
  170.   
  171.                 Stop();  
  172.                 RaiseDisconnectedEvent();  
  173.   
  174.                 return;  
  175.             }  
  176.   
  177.             if (iReaded > 0)  
  178.             {  
  179.                 //收到后发送回一个数据包  
  180.                 SendAsync(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 });  
  181.   
  182.                 if (BeginRcv() == false)  
  183.                 {  
  184.                     Stop();  
  185.                     RaiseDisconnectedEvent();  
  186.                 }  
  187.             }  
  188.             else  
  189.             {  
  190.                 Stop();  
  191.                 RaiseDisconnectedEvent();  
  192.             }  
  193.         }  
  194.   
  195.         public bool SendAsync(byte[] bytsCmd)  
  196.         {  
  197.             SocketAsyncEventArgs e = new SocketAsyncEventArgs();  
  198.             try  
  199.             {  
  200.                 e.SetBuffer(bytsCmd, 0, bytsCmd.Length);  
  201.             }  
  202.             catch (Exception ex)  
  203.             {  
  204.                 System.Diagnostics.Debug.WriteLine("SetBuffer exception." + ex);  
  205.                 return false;  
  206.             }              
  207.   
  208.             try  
  209.             {  
  210.                 if (m_skt.SendAsync(e))  
  211.                 {//Returns true if the I/O operation is pending.  
  212.                     return true;  
  213.                 }  
  214.             }  
  215.             catch (Exception ex)  
  216.             {  
  217.                 System.Diagnostics.Debug.WriteLine("SendAsync exception." + ex);                  
  218.   
  219.                 return false;  
  220.             }  
  221.   
  222.             //Returns false if the I/O operation completed synchronously.   
  223.             //In this case, The SocketAsyncEventArgs.Completed event on the e parameter will not be raised and   
  224.             //the e object passed as a parameter may be examined immediately after the method call returns to retrieve the result of the operation.  
  225.   
  226.             return true;  
  227.   
  228.         }  
  229.     }  
  230. }  

 

 

 

.net中的内存是由系统自行回收的,一旦一个对象(内存块)发现没有被其它任何人使用(引用)则会被回收。

 

当满足以下条件之一时将发生垃圾回收:

  • The system has low physical memory.

  • The memory that is used by allocated objects on the managed heap surpasses an acceptable threshold. This means that a threshold of acceptable memory usage has been exceeded on the managed heap.This threshold is continuously adjusted as the process runs.

  • The GC.Collect method is called. In almost all cases, you do not have to call this method, because the garbage collector runs continuously. This method is primarily used for unique situations and testing.

  •  

具体请看这里(垃圾回收

 

条件1:当物理内存极低时会调用

如上所说,我在一个服务器上测试此程序,8G内存,2W个连接,每5秒种给所有的连接发送一次。在大概4个小时就把所有的内存完了。从任务管理器上看,内存占用了7.9个G。并且,此时SERVER程序已经无法接受发送来自客户端的数据了。所以,按这个情况,内存回收肯定应该工作了!但没有!

 

条件2:已经在托管heap上分配的对象所占用的内存超过一个阀值时会调用。这个阀值会动态变更。

如上一个测试,物理内存都已经用光了,并导致程序不能正常运行了。这个阀值还没有超过?!!这个阀值是怎么定的呢?(需要找一下文档,网友了解的提供一下 :))

 

假定是因为某种原因,GC没有执行。那我们手动的执行一下,添加一个全局变量 s_iRcvTimes  ,每接收5000次就执行一下回收

[csharp]  view plain copy
 
  1. public bool SendAsync(byte[] bytsCmd)  
  2. {  
  3.     if (s_iRcvTimes > 5000)  
  4.     {  
  5.         s_iRcvTimes = 0;  
  6.         GC.Collect(2);  
  7.     }  
  8.     s_iRcvTimes += 1;  
[csharp]  view plain copy
 
  1. ...//原来的代码省略  

 

 

测试结果如下:(程序启动后,每过一段时间记录一下SERVER程序的内存占用情况)

 

程序的启动内存占用为:4.5M 

 

序号 时间 时间间隔 内存占用 内存增长
1 16:07:00 1分钟 22,023K --
2 16:08:00 1分钟 22,900K 677K
3 16:10:00 2分钟 26,132K 3,232K
4 16:12:00 2分钟 30,172K 4,040K
5 16:17:00 5分钟 116,032K 85,860K
6 16:22:00 5分钟 200,146K 84,114K
7 16:27:00 5分钟 274,120K 73,974K

 

内存占用:对应时刻Server程序所占用的内存(从windows任务管理器看到的数据)

 

从测试结果来看,应该没有起到作用!

 

我感觉,还是程序有问题!理论上来说,一旦内存不够,则系统自动进行回收,但是,为什么这里的情况不进行回收呢?!!MSDN里有这样一句话:

When a garbage collection is triggered, the garbage collector reclaims the memory that is occupied by dead objects.

所以,有可能有些对象根本都没有成为 dead objects,从而使GC没办法将其回收。

 

OK ,那先找到内存爆涨的地方,再来分析为什么这些对象没办法成为 dead object !

 

内存出问题,那肯定是NEW出来的没有被回收!

程序中,NEW的地方有几个:

1.收到数据后,回送的地方:SendAsync(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 });

2.接收数据里的异步操作支持:SocketAsyncEventArgs e = new SocketAsyncEventArgs();

 

下意识的觉得第二个地方比较可疑。所以,修改此处并测试。 内存果然有明显的提升:

两个测试:

1. 5K个连接,每次给每个连接发送20个bytes,发完后停止1秒再继续。

2. 1K个连接,每次给每个连接发送20个bytes,发完后停止1秒再继续。

测试的结果,可以坚持10分钟以上没有任何问题,这期间内存一直在30M以下,启动后当所有的连接连上来之后(开始发送数据之前)程序大概占用20M

 

其实MSDN里也有对这个的例子,例子中对这个 SocketAsyncEventArgs也是给缓存起来,而不是直接每次都NEW一个对象。它的例子详细请看这里

 

修改后的代码如下:添加一个变量

 

[csharp]  view plain copy
 
  1. public static List<SocketAsyncEventArgs> s_lst = new List<SocketAsyncEventArgs>();  

 

然后修改SendAsync 函数如下:

 

[csharp]  view plain copy
 
  1.     
  2. public bool SendAsync(byte[] bytsCmd)  
  3.         {  
  4.               SocketAsyncEventArgs e = null;//new SocketAsyncEventArgs();  
  5.             lock (Program.s_lst)  
  6.             {  
  7.                 if (Program.s_lst.Count > 0)  
  8.                 {  
  9.                     e = Program.s_lst[Program.s_lst.Count - 1];  
  10.                     Program.s_lst.RemoveAt(Program.s_lst.Count - 1);  
  11.                 }  
  12.             }  
  13.             if (e == null)  
  14.             {  
  15.                 e = new SocketAsyncEventArgs();  
  16.                 e.Completed += (object sender, SocketAsyncEventArgs _e) =>  
  17.                 {  
  18.                     lock (Program.s_lst)  
  19.                         Program.s_lst.Add(e);  
  20.                 };  
  21.             }   
  22.   
  23.             try  
  24.             {  
  25.                 e.SetBuffer(bytsCmd, 0, bytsCmd.Length);  
  26.             }  
  27.             catch (Exception ex)  
  28.             {  
  29.                 lock (Program.s_lst)  
  30.                     Program.s_lst.Add(e);  
  31.                 System.Diagnostics.Debug.WriteLine("SetBuffer exception." + ex);  
  32.                 return false;  
  33.             }  
  34.   
  35.             try  
  36.             {  
  37.                 if (m_skt.SendAsync(e))  
  38.                 {//Returns true if the I/O operation is pending.  
  39.                     return true;  
  40.                 }  
  41.             }  
  42.             catch (Exception ex)  
  43.             {  
  44.                 System.Diagnostics.Debug.WriteLine("SendAsync exception." + ex);                  
  45.   
  46.                 return false;  
  47.             }  
  48.   
  49.             //Returns false if the I/O operation completed synchronously.   
  50.             //In this case, The SocketAsyncEventArgs.Completed event on the e parameter will not be raised and   
  51.             //the e object passed as a parameter may be examined immediately after the method call returns to retrieve the result of the operation.  
  52.             lock (Program.s_lst)  
  53.                 Program.s_lst.Add(e);  
  54.             return true;  
  55.   
  56.         }   

 

方法应该比较简单:不是每次都创建新的对象,而是用完后保存起来给下次调用时使用。

 

 

现在的问题比较明确了:

为什么这里的 new SocketAsyncEventArgs() 会无法被回收呢? 也就是说:一直被某个对象引用着,无法成为 dead object.

 

明天继续... :)

 

程序中的代码也可以这里 下载 

 

转 http://blog.csdn.net/ani/article/details/7182035

之前笔者也遇到这个问题,后来根据此文得以解决,特转载下来。

作者:Bonker
出处:http://www.cnblogs.com/Bonker
QQ:519841366
       
本页版权归作者和博客园所有,欢迎转载,但未经作者同意必须保留此段声明, 且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利
目录
相关文章
|
17天前
|
存储 编译器 数据处理
C 语言结构体与位域:高效数据组织与内存优化
C语言中的结构体与位域是实现高效数据组织和内存优化的重要工具。结构体允许将不同类型的数据组合成一个整体,而位域则进一步允许对结构体成员的位进行精细控制,以节省内存空间。两者结合使用,可在嵌入式系统等资源受限环境中发挥巨大作用。
42 11
|
24天前
|
开发框架 监控 .NET
【Azure App Service】部署在App Service上的.NET应用内存消耗不能超过2GB的情况分析
x64 dotnet runtime is not installed on the app service by default. Since we had the app service running in x64, it was proxying the request to a 32 bit dotnet process which was throwing an OutOfMemoryException with requests >100MB. It worked on the IaaS servers because we had the x64 runtime install
|
2月前
|
监控 算法 应用服务中间件
“四两拨千斤” —— 1.2MB 数据如何吃掉 10GB 内存
一个特殊请求引发服务器内存用量暴涨进而导致进程 OOM 的惨案。
|
1月前
|
消息中间件 Linux iOS开发
.NET 高性能异步套接字库,支持多协议、跨平台、高并发
【11月更文挑战第3天】本文介绍了高性能异步套接字库在网络编程中的重要性,特别是在处理大量并发连接的应用中。重点讨论了 .NET 中的 Socket.IO 和 SuperSocket 两个库,它们分别在多协议支持、跨平台特性和高并发处理方面表现出色。Socket.IO 基于 WebSocket 协议,支持多种通信协议和跨平台运行,适用于实时通信应用。SuperSocket 则通过事件驱动的异步编程模型,实现了高效的高并发处理,适用于需要自定义协议的场景。这些库各有特点,可根据具体需求选择合适的库。
|
2月前
|
存储 C语言
数据在内存中的存储方式
本文介绍了计算机中整数和浮点数的存储方式,包括整数的原码、反码、补码,以及浮点数的IEEE754标准存储格式。同时,探讨了大小端字节序的概念及其判断方法,通过实例代码展示了这些概念的实际应用。
73 1
|
2月前
|
存储
共用体在内存中如何存储数据
共用体(Union)在内存中为所有成员分配同一段内存空间,大小等于最大成员所需的空间。这意味着所有成员共享同一块内存,但同一时间只能存储其中一个成员的数据,无法同时保存多个成员的值。
|
2月前
|
监控 Java easyexcel
面试官:POI大量数据读取内存溢出?如何解决?
【10月更文挑战第14天】 在处理大量数据时,使用Apache POI库读取Excel文件可能会导致内存溢出的问题。这是因为POI在读取Excel文件时,会将整个文档加载到内存中,如果文件过大,就会消耗大量内存。以下是一些解决这一问题的策略:
152 1
|
2月前
|
SQL XML 关系型数据库
入门指南:利用NHibernate简化.NET应用程序的数据访问
【10月更文挑战第13天】NHibernate是一个面向.NET的开源对象关系映射(ORM)工具,它提供了从数据库表到应用程序中的对象之间的映射。通过使用NHibernate,开发者可以专注于业务逻辑和领域模型的设计,而无需直接编写复杂的SQL语句来处理数据持久化问题。NHibernate支持多种数据库,并且具有高度的灵活性和可扩展性。
43 2
|
2月前
|
缓存 安全 Java
使用 Java 内存模型解决多线程中的数据竞争问题
【10月更文挑战第11天】在 Java 多线程编程中,数据竞争是一个常见问题。通过使用 `synchronized` 关键字、`volatile` 关键字、原子类、显式锁、避免共享可变数据、合理设计数据结构、遵循线程安全原则和使用线程池等方法,可以有效解决数据竞争问题,确保程序的正确性和稳定性。
49 2
|
2月前
|
网络协议 Unix Linux
一个.NET开源、快速、低延迟的异步套接字服务器和客户端库
一个.NET开源、快速、低延迟的异步套接字服务器和客户端库