Microsoft MVP성태의 닷넷 이야기
.NET Framework: 569. ServicePointManager.DefaultConnectionLimit의 역할 [링크 복사], [링크+제목 복사]
조회: 23974
글쓴 사람
정성태 (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

비밀번호

댓글 작성자
 




... 46  47  48  49  50  51  52  53  54  55  56  57  [58]  59  60  ...
NoWriterDateCnt.TitleFile(s)
12168정성태3/5/202012115개발 환경 구성: 472. 윈도우 환경에서의 dockerd.exe("Docker Engine" 서비스)가 Linux의 것과 다른 점
12167정성태3/5/202011375개발 환경 구성: 471. C# - 닷넷 응용 프로그램에서 DB2 Express-C 데이터베이스 사용 (3) - ibmcom/db2express-c 컨테이너 사용
12166정성태3/4/202011042개발 환경 구성: 470. Windows Server 컨테이너 - DockerMsftProvider 모듈을 이용한 docker 설치
12165정성태3/2/202010704.NET Framework: 900. 실행 시에 메서드 가로채기 - CLR Injection: Runtime Method Replacer 개선 - 네 번째 이야기(Monitor.Enter 후킹)파일 다운로드1
12164정성태2/29/202011583오류 유형: 598. Surface Pro 6 - Windows Hello Face Software Device가 인식이 안 되는 문제
12163정성태2/27/20209995.NET Framework: 899. 익명 함수를 가리키는 delegate 필드에 대한 직렬화 문제
12162정성태2/26/202012737디버깅 기술: 166. C#에서 만든 COM 객체를 C/C++로 P/Invoke Interop 시 메모리 누수(Memory Leak) 발생 [6]파일 다운로드2
12161정성태2/26/20209422오류 유형: 597. manifest - The value "x64" of attribute "processorArchitecture" in element "assemblyIdentity" is invalid.
12160정성태2/26/202010114개발 환경 구성: 469. Reg-free COM 개체 사용을 위한 manifest 파일 생성 도구 - COMRegFreeManifest
12159정성태2/26/20208317오류 유형: 596. Visual Studio - The project needs to include ATL support
12158정성태2/25/202010105디버깅 기술: 165. C# - Marshal.GetIUnknownForObject/GetIDispatchForObject 사용 시 메모리 누수(Memory Leak) 발생파일 다운로드1
12157정성태2/25/20209945디버깅 기술: 164. C# - Marshal.GetNativeVariantForObject 사용 시 메모리 누수(Memory Leak) 발생 및 해결 방법파일 다운로드1
12156정성태2/25/20209325오류 유형: 595. LINK : warning LNK4098: defaultlib 'nafxcw.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
12155정성태2/25/20208638오류 유형: 594. Warning NU1701 - This package may not be fully compatible with your project
12154정성태2/25/20208517오류 유형: 593. warning LNK4070: /OUT:... directive in .EXP differs from output filename
12153정성태2/23/202011147.NET Framework: 898. Trampoline을 이용한 후킹의 한계파일 다운로드1
12152정성태2/23/202010865.NET Framework: 897. 실행 시에 메서드 가로채기 - CLR Injection: Runtime Method Replacer 개선 - 세 번째 이야기(Trampoline 후킹)파일 다운로드1
12151정성태2/22/202011448.NET Framework: 896. C# - Win32 API를 Trampoline 기법을 이용해 C# 메서드로 가로채는 방법 - 두 번째 이야기 (원본 함수 호출)파일 다운로드1
12150정성태2/21/202011273.NET Framework: 895. C# - Win32 API를 Trampoline 기법을 이용해 C# 메서드로 가로채는 방법 [1]파일 다운로드1
12149정성태2/20/202011025.NET Framework: 894. eBEST C# XingAPI 래퍼 - 연속 조회 처리 방법 [1]
12148정성태2/19/202012197디버깅 기술: 163. x64 환경에서 구현하는 다양한 Trampoline 기법 [1]
12147정성태2/19/202010838디버깅 기술: 162. x86/x64의 기계어 코드 최대 길이
12146정성태2/18/202011131.NET Framework: 893. eBEST C# XingAPI 래퍼 - 로그인 처리파일 다운로드1
12145정성태2/18/202010364.NET Framework: 892. eBEST C# XingAPI 래퍼 - Sqlite 지원 추가파일 다운로드1
12144정성태2/13/202010362.NET Framework: 891. 실행 시에 메서드 가로채기 - CLR Injection: Runtime Method Replacer 개선 - 두 번째 이야기파일 다운로드1
12143정성태2/13/20208507.NET Framework: 890. 상황별 GetFunctionPointer 반환값 정리 - x64파일 다운로드1
... 46  47  48  49  50  51  52  53  54  55  56  57  [58]  59  60  ...