Microsoft MVP성태의 닷넷 이야기
.NET Framework: 569. ServicePointManager.DefaultConnectionLimit의 역할 [링크 복사], [링크+제목 복사],
조회: 24141
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 2개 있습니다.)

ServicePointManager.DefaultConnectionLimit의 역할

지난번 글에서 ServicePointManager.DefaultConnectionLimit 값을 설정하는 방법에 대해 알아봤는데요.

System.Net.ServicePointManager의 DefaultConnectionLimit 속성 설명
; https://www.sysnet.pe.kr/2/0/10927

그럼 도대체, ConnectionLimit가 어떤 역할을 하느냐... 하는 사항이 궁금할 것입니다. 그냥 간단하게는 HttpWebRequest 객체에 대한 "소켓 Connection Pooling"과 같은 의미라고 보시면 됩니다. (WebClient와 같은 객체도 결국 내부적으로 HttpWebRequest를 사용하기 때문에 같은 제약을 받습니다.)

예를 들어 보면, 여러분들의 응용 프로그램에서 HttpWebRequest를 이용해 특정 웹 서버로 요청/응답을 받는 코드가 있다고 가정해 보겠습니다. 만약 스레드 2개로 HttpWebRequest를 동시에 각각 생성해 테스트하면 DefaultConnectionLimit의 값이 2인 경우 정상적으로 처리를 하게 됩니다. 하지만, 스레드를 3개로 해서 HttpWebRequest를 3개 생성해 웹 요청을 처리하려고 하면 DefaultConnectionLimit의 값이 2인 경우 3번째 HttpWebRequest는 먼저 생성된 2개의 HttpWebRequest 중 하나의 요청이 끝나야만 동작을 하게 됩니다.

단일 스레드 위주로 돌아가는 클라이언트 응용 프로그램이라면 이런 것이 크게 문제가 되지 않는데, 웹 서버라면 상황이 다릅니다. 만약 default.aspx 페이지 같은 곳에서 다른 서버로 HttpWebRequest를 이용해 요청 처리를 하는 코드가 있다면 ASP.NET 2.0의 경우 "Core가 2개"라면 총 24개의 HttpWebRequest 객체만 동시에 활성화시킬 수 있습니다. 이는 곧, default.aspx에 사용자의 요청이 24개만 동시처리되고 나머지는 스레드가 블럭된다는 것을 의미합니다.

정말 그런지... 한번 테스트를 해볼까요? ^^

일단, 웹 요청을 지연 처리해줄 간단한 웹 서버를 소켓 프로그램으로 만들겠습니다.

using System;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;

namespace SlowHttpServer
{
    class Program
    {
        static void Main(string[] args)
        {
            using (Socket serverSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
            {
                serverSocket.Bind(new IPEndPoint(IPAddress.Any, 8035));
                serverSocket.Listen(5);

                while (true)
                {
                    Socket socket = serverSocket.Accept();
                    ThreadPool.QueueUserWorkItem(processChildSocket, socket);
                }
            }
        }

        static int _count = 0;

        private static void processChildSocket(object state)
        {
            int idx = Interlocked.Increment(ref _count);

            using (Socket child = state as Socket)
            {
                byte[] buf = new byte[8192];
                int len = child.Receive(buf);

                string txt = Encoding.UTF8.GetString(buf, 0, len);
                Console.WriteLine("[" + idx + "]" + DateTime.Now + Environment.NewLine + txt);

                int delay = GetDelayTime(txt);

                byte[] responseBuf = GetResponseData(delay);

                child.Send(responseBuf);
                child.Close();
            }
        }

        private static int GetDelayTime(string txt)
        {
            StringReader sr = new StringReader(txt);
            int sleep = 0;
            while (true)
            {
                string line = sr.ReadLine();

                if (line == null)
                {
                    break;
                }

                int pos = line.IndexOf("Delay");
                if (pos == -1)
                {
                    continue;
                }

                int colonPos = line.IndexOf(":");
                if (colonPos == -1)
                {
                    continue;
                }

                sleep = Int32.Parse(line.Substring(colonPos + 1));
            }

            return sleep;
        }

        private static byte[] GetResponseData(int delay)
        {
            DateTime now = DateTime.Now;
            Thread.Sleep(delay);
            DateTime after = DateTime.Now;

            string header = "HTTP/1.1 200 OK\r\nContent-Type: text/html; charset=UTF-8\r\n\r\n";
            string body = "<html><body><mark>" + now + "<br />\r\n" + after + "<br />\r\n HTML</mark> 웹 페이지입니다.</body></html>";
            byte[] respBuf = Encoding.UTF8.GetBytes(header + body);
            return respBuf;
        }
    }
}

위의 프로그램은 HTTP 헤더에 Delay 키를 포함해 전송해주면 그것의 값만큼 지연을 시켜 응답을 보냅니다. 이제 클라이언트 콘솔 응용 프로그램을 만들고 다음과 같이 동시에 3개의 요청을 보내는 코드를 추가합니다.

using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Text;
using System.Threading;

namespace ConsoleApplication1
{
    class Program
    {
        static string _url = "http://test.mypc.com:8035";
        static int _count = 0;

        static void Main(string[] args)
        {
            Console.WriteLine("DefaultConnectionLimit: " + System.Net.ServicePointManager.DefaultConnectionLimit);
            Console.WriteLine("DefaultPersistentConnectionLimit: " + System.Net.ServicePointManager.DefaultPersistentConnectionLimit);

            Console.WriteLine();
            Console.WriteLine();
            Console.WriteLine();

            ThreadPool.SetMinThreads(100, 100);

            int reqCount = 3;

            for (int i = 0; i < reqCount; i ++)
            {
                ThreadPool.QueueUserWorkItem(requestHttp, null);
            }

            Console.ReadLine();
        }

        private static void requestHttp(object state)
        {
            int idx = Interlocked.Increment(ref _count);
            Thread.CurrentThread.Name = string.Format("request #{0}", idx);

            HttpWebRequest req = HttpWebRequest.CreateHttp(_url);
            {
                req.Headers.Add("Delay", "5000");
                req.ServicePoint.Expect100Continue = false;

                Console.WriteLine(DateTime.Now + " Request: " + idx + " - Begin");
                HttpWebResponse resp = req.GetResponse() as HttpWebResponse;
                Console.WriteLine(DateTime.Now + " Request: " + idx + " - End");

                WriteLine(DateTime.Now + " Request: " + idx);

                using (StreamReader sr = new StreamReader(resp.GetResponseStream()))
                {
                    sr.ReadToEnd();
                }
            }
        }
    }
}

실행하기 전, "C:\Windows\System32\drivers\etc\HOSTS" 파일에 "test.mypc.com" 을 "127.0.0.1"로 등록해 줍니다.

127.0.0.1 test.mypc.com

이렇게 하고 실행하면 서버는 다음과 같이 출력하고,

C:\...\SlowHttpServer\bin\Debug>SlowHttpServer.exe
[2]2016-03-28 오후 11:46:43
GET / HTTP/1.1
Delay: 5000
Host: test.mypc.com:8035
Connection: Keep-Alive


[1]2016-03-28 오후 11:46:43
GET / HTTP/1.1
Delay: 5000
Host: test.mypc.com:8035
Connection: Keep-Alive


[3]2016-03-28 오후 11:46:48
GET / HTTP/1.1
Delay: 5000
Host: test.mypc.com:8035

클라이언트는 이런 식으로 출력합니다.

DefaultConnectionLimit: 2
DefaultPersistentConnectionLimit: 2


2016-03-28 오후 11:46:43 Request: 1 - Begin
2016-03-28 오후 11:46:43 Request: 2 - Begin
2016-03-28 오후 11:46:43 Request: 3 - Begin
2016-03-28 오후 11:46:48 Request: 3 - End
2016-03-28 오후 11:46:48 Request: 1 - End
2016-03-28 오후 11:46:53 Request: 2 - End

먼저 클라이언트의 출력 결과를 보면, 1번과 3번 스레드의 HttpWebRequest가 End가 되고 나서야 2번 스레드의 HttpWebRequest가 5초 후에 완료되는 것을 볼 수 있습니다. 이와 함께 서버 측의 로그에는 11:46:43초에 2개의 요청을 받고 5초 동안 지연된 다음 응답을 완료했고 세 번째 요청 처리를 11:46:48초에 한 것으로 나옵니다.

즉, 2개의 요청만 동시 처리되고 1개의 요청은 DefaultConnectionLimit == 2의 설정으로 인해 동시 처리되지 않은 것입니다. (일반적인 닷넷 콘솔 프로그램의 DefaultConnectionLimit의 기본값이 2입니다.)




자... 이제 그럼 ServicePoint에 대해 알아볼 차례입니다. 사실 단어가 좀 낯설어서 그렇지, ServicePoint 하나는 고유 URL 하나에 대응해 생성하는 객체입니다. 가령, HttpWebRequest로 "http://test.mypc.com:8035", "http://pc.mytest.com:8035", "http://my.pc.com:8035" 3개에 대해 요청을 발생시키면 각각의 URL 마다 ServicePoint 객체가 생성되고 이것들 역시 Pool 형태로 ServicePointManager에 의해 관리가 됩니다.

ServicePointManager가 생성할 수 있는 최대 ServicePoint의 수는 "System.Net.ServicePointManager.MaxServicePoints" 속성을 보면 되는데, 기본값은 0 이어서 닷넷 프로그램에서 생성할 수 있는 ServicePoint의 수에 제한이 없습니다. 그런데, 테스트를 위해 이 값을 1로 주면 어떻게 될까요? 이 상태에서 다음과 같은 요청을 (동시에 또는 차례대로) 보내면,

HttpWebRequest: http://test.mypc.com:8035
HttpWebRequest: http://test.mypc.com:8035
HttpWebRequest: http://test.mypc.com:8035

ServicePointManager는 1개의 ServicePoint를 생성하고, 그 객체 안에서 3개의 연결을 모두 처리합니다. 반면, 다음과 같이 요청을 보내면,

HttpWebRequest: http://test.mypc.com:8035
HttpWebRequest: http://test.mypc.com:8035
HttpWebRequest: http://pc.mytest.com:8035

2번째 요청까지는 ServicePointManager가 생성한 1개의 ServicePoint에서 처리하지만, 3번째 요청에서 전혀 다른 URL이 들어와서 그에 대한 ServicePoint를 생성하려 하지만 ServicePointManager.MaxServicePoints == 1의 제약에 걸려 다음과 같은 예외를 던지고 맙니다.

System.InvalidOperationException was unhandled
  HResult=-2146233079
  Message=The maximum number of service points was exceeded.
  Source=System
  StackTrace:
       at System.Net.ServicePointManager.FindServicePointHelper(Uri address, Boolean isProxyServicePoint)
       at System.Net.ServicePointManager.FindServicePoint(Uri address, IWebProxy proxy, ProxyChain& chain, HttpAbortDelegate& abortDelegate, Int32& abortState)
       at System.Net.HttpWebRequest.FindServicePoint(Boolean forceFind)
       at System.Net.HttpWebRequest.GetResponse()
       at ConsoleApplication1.Program.requestHttp(Object state) in C:\...\ConsoleApplication1\Program.cs:line 81
       at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()
  InnerException: 

현실적으로 봤을 때, 대부분의 닷넷 개발자들이 ServicePointManager.MaxServicePoints의 수치를 조정하지 않기 때문에 사실 저 예외를 만날 일은 거의 없습니다.




정리해 보면, ServicePointManager는 고유 URL 마다 1개의 ServicePoint를 생성합니다. 그리고 그 각각의 ServicePoint는 내부에 N 개의 연결을 관리합니다. 즉, 다음과 같이 1:N의 관계입니다.

ServicePointManager 1 : N ServicePoint
ServicePoint 1 : N Connection

(첨부한 파일은 이 글의 예제 코드를 포함합니다.)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 6/27/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




1  2  3  4  [5]  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13514정성태1/5/20242297개발 환경 구성: 702. IIS - AppPool의 "Disable Overlapped Recycle" 옵션
13513정성태1/5/20242222닷넷: 2194. C# - WebActivatorEx / System.Web의 PreApplicationStartMethod 특성
13512정성태1/4/20242173개발 환경 구성: 701. IIS - w3wp.exe 프로세스의 ASP.NET 런타임을 항상 Warmup 모드로 유지하는 preload Enabled 설정
13511정성태1/4/20242194닷넷: 2193. C# - ASP.NET Web Application + OpenAPI(Swashbuckle) 스펙 제공
13510정성태1/3/20242120닷넷: 2192. C# - 특정 실행 파일이 있는지 확인하는 방법 (Linux)
13509정성태1/3/20242168오류 유형: 887. .NET Core 2 이하의 프로젝트에서 System.Runtime.CompilerServices.Unsafe doesn't support netcoreapp2.0.
13508정성태1/3/20242215오류 유형: 886. ORA-28000: the account is locked
13507정성태1/2/20242861닷넷: 2191. C# - IPGlobalProperties를 이용해 netstat처럼 사용 중인 Socket 목록 구하는 방법파일 다운로드1
13506정성태12/29/20232449닷넷: 2190. C# - 닷넷 코어/5+에서 달라지는 System.Text.Encoding 지원
13505정성태12/27/20232977닷넷: 2189. C# - WebSocket 클라이언트를 닷넷으로 구현하는 예제 (System.Net.WebSockets)파일 다운로드1
13504정성태12/27/20232567닷넷: 2188. C# - ASP.NET Core SignalR로 구현하는 채팅 서비스 예제파일 다운로드1
13503정성태12/27/20232433Linux: 67. WSL 환경 + mlocate(locate) 도구의 /mnt 디렉터리 검색 문제
13502정성태12/26/20232546닷넷: 2187. C# - 다른 프로세스의 환경변수 읽는 예제파일 다운로드1
13501정성태12/25/20232320개발 환경 구성: 700. WSL + uwsgi - IPv6로 바인딩하는 방법
13500정성태12/24/20232409디버깅 기술: 194. Windbg - x64 가상 주소를 물리 주소로 변환
13498정성태12/23/20233096닷넷: 2186. 한국투자증권 KIS Developers OpenAPI의 C# 래퍼 버전 - eFriendOpenAPI NuGet 패키지
13497정성태12/22/20232493오류 유형: 885. Visual Studiio - error : Could not connect to the remote system. Please verify your connection settings, and that your machine is on the network and reachable.
13496정성태12/21/20232478Linux: 66. 리눅스 - 실행 중인 프로세스 내부의 환경변수 설정을 구하는 방법 (gdb)
13495정성태12/20/20232412Linux: 65. clang++로 공유 라이브러리의 -static 옵션 빌드가 가능할까요?
13494정성태12/20/20232579Linux: 64. Linux 응용 프로그램의 (C++) so 의존성 줄이기(ReleaseMinDependency) - 두 번째 이야기
13493정성태12/19/20232701닷넷: 2185. C# - object를 QueryString으로 직렬화하는 방법
13492정성태12/19/20232375개발 환경 구성: 699. WSL에 nopCommerce 예제 구성
13491정성태12/19/20232267Linux: 63. 리눅스 - 다중 그룹 또는 사용자를 리소스에 권한 부여
13490정성태12/19/20232399개발 환경 구성: 698. Golang - GLIBC 의존을 없애는 정적 빌드 방법
13489정성태12/19/20232175개발 환경 구성: 697. GoLand에서 ldflags 지정 방법
13488정성태12/18/20232109오류 유형: 884. HTTP 500.0 - 명령행에서 실행한 ASP.NET Core 응용 프로그램을 실행하는 방법
1  2  3  4  [5]  6  7  8  9  10  11  12  13  14  15  ...