DEFAULT_MAX_HOST_CONNECTIONS
Hello,
Sorry for my English,
In code of com.pega.apache class this default configuration we find :
public static final int DEFAULT_MAX_HOST_CONNECTIONS = 2
with this explanation :
Clients that use persistent connections SHOULD limit the number of
simultaneous connections that they maintain to a given server. A
single-user client SHOULD NOT maintain more than 2 connections with
any server or proxy. A proxy SHOULD use up to 2*N connections to
another server or proxy, where N is the number of simultaneously
active users. These guidelines are intended to improve HTTP response
times and avoid congestion.
<<A single-user client SHOULD NOT maintain more than 2 connections with any server or proxy.>>
Hello,
Sorry for my English,
In code of com.pega.apache class this default configuration we find :
public static final int DEFAULT_MAX_HOST_CONNECTIONS = 2
with this explanation :
Clients that use persistent connections SHOULD limit the number of
simultaneous connections that they maintain to a given server. A
single-user client SHOULD NOT maintain more than 2 connections with
any server or proxy. A proxy SHOULD use up to 2*N connections to
another server or proxy, where N is the number of simultaneously
active users. These guidelines are intended to improve HTTP response
times and avoid congestion.
<<A single-user client SHOULD NOT maintain more than 2 connections with any server or proxy.>>
A single-user client correspond that an jboss application server instance, and in MACIF context we have approximatively 150-200 end user requestors per jboss application server instance
So these 2 connections are not enought for our application, one jboss instance can use 2 connections max, or we have 200 users per jboss instances.
So we encounter some contention, blocking.
How we can update this configuration to increase this.