When I open the admin console of any domain, I see the list below in the configurations → server-config → Thread pools:
- admin thread pool
- Http stream pool
- flow-pool-1
So, I came to the conclusion that for each domain the flow settings are set. However, when I read https://docs.oracle.com/cd/E19798-01/821-1751/abluc/index.html , I do not see a single word about the domain settings. Also, when I do
asadmin> help list-threadpools
I get
Valid values are as follows: server Lists the thread pools for the default GlassFish Server instance server. configuration-name Lists the thread pools for the named configuration. cluster-name Lists the thread pools for every instance in the cluster. instance-name Lists the thread pools for a particular instance.
As you can see, this help talks about the GlassFish Server instance server. From here, https://stackoverflow.com/a/4146263
The GlassFish Server instance is a single virtual machine for the Java platform (Java virtual machine or JVM machine) on a single node that runs on GlassFish Server. A node defines the host where the GlassFish Server Instance is located.
Can someone explain how server stream settings merge (?) With domain stream settings? Correct me if I understand something is wrong.
This question is important to me because I need to understand how to make the most optimal settings when I have many GlassFish domains (> 20) on one GlassFish server instance.
source share