I am in the midst of performance testing a web application and I get these errors in Apache logs
[Sat Apr 18 03:01:01 2015] [error] [client xx.xx.xxx.253] proxy: DNS lookup failure for: jboss-host-name returned by /some/url, referer: It occurs only at high load levels which indicates that it may not be the configuration that is causing it. I have seen posts where this error occurs due to incorrect proxy configuration, but my case doesn't fall under that I guess. At the very end of the test I get another error - "All workers are in error state". I think the first DNS error causes all workers to shutdown.
Can someone point where I could start looking? Please let me know if you need more details than whats mentioned below.
More details:
Apache version: 2.2
mod_cluster: 1.2.4.Final
I have an F5 in front of two Apache servers. There are ten JBoss servers in the balancer.
Apache configuration snippet: (I am not using proxypass, just modcluster with a proxylist on Jboss)
Jboss config:
[Sat Apr 18 03:01:01 2015] [error] [client xx.xx.xxx.253] proxy: DNS lookup failure for: jboss-host-name returned by /some/url, referer: It occurs only at high load levels which indicates that it may not be the configuration that is causing it. I have seen posts where this error occurs due to incorrect proxy configuration, but my case doesn't fall under that I guess. At the very end of the test I get another error - "All workers are in error state". I think the first DNS error causes all workers to shutdown.
Can someone point where I could start looking? Please let me know if you need more details than whats mentioned below.
More details:
Apache version: 2.2
mod_cluster: 1.2.4.Final
I have an F5 in front of two Apache servers. There are ten JBoss servers in the balancer.
Apache configuration snippet: (I am not using proxypass, just modcluster with a proxylist on Jboss)
Code:
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyVia On
</IfModule>
<IfModule mpm_worker_module>
ServerLimit, StartServers and worker related attributes configured here
</IfModule>
ProxyPreserveHost On
MemManagerFile /var/cache/httpd
<VirtualHost *:1280>
ManagerBalancerName some2
........
Code:
<subsystem xmlns="urn:jboss:domain:modcluster:1.1">
<mod-cluster-config advertise-socket="modcluster" proxy-list="host:1280,host-2:1280" balancer="some2" advertise="false" excluded-contexts="invoker,jbossws,juddi,console" connector="http">
<dynamic-load-provider>
<load-metric type="busyness"/>
</dynamic-load-provider>
</mod-cluster-config>
</subsystem>