Telegram_2021-04-12T02

<< Click to Display Table of Contents >>

Navigation:  Telegram > 2021 > 04 > 12 >

Telegram_2021-04-12T02

Telegram link

 

2021-04-12T02:44:18

 

What type of application is that? http.sys or Indy?

 


 

Telegram link

 

2021-04-12T02:46:53

 

This page contains lots of info about these limits.

 

type: link https://techcommunity.microsoft.com/t5/windows-blog-archive/pushing-the-limits-of-windows-processes-and-threads/ba-p/723824

 

It may be that the number of threads created also reached a limit for your process

 


 

Telegram link

 

2021-04-12T02:48:42

 

if you create them all at once and this is an Indy app, probably the number of threads that Indy layer is creating is hitting the Windows wall...

 

You can: (a) use a thread pool or (b) switch to Http.sys (which uses a limited number of threads according to number of processor cores)

 


 

Telegram link

 

2021-04-12T02:49:27

 

or even (c) just ignore it if you will never have 6K sessions created at once

 


 

Telegram link

 

2021-04-12T02:50:18

 

The positive thing is: If this was a Java app you would need 3 or 4 servers + a load balancer to run this test LOL