Hi
I have two servers and a single VIP for a website which requires stickiness. I use a specific uri for keepalives so the servers can be taken from service if the keepalive uri becomes unavailable.
The problem I have is that if I rename the keepalive file on the server resulting in the keepalives going to "Down", existing client connections arent remapped for up to 60 seconds afterwards.
New connections appear fine and are routed to the functioning server.
Config
service server1
ip address 10.12.1.244
keepalive type http
keepalive port 80
protocol tcp
keepalive method get
port 80 range 3001
keepalive uri "/alive.htm"
active
service server2
ip address 10.12.1.245
keepalive type http
keepalive port 80
protocol tcp
keepalive method get
port 80 range 3001
keepalive uri "/alive.htm"
active
content RG-PROD-1
vip address 10.123.190.20
add service server1
add service server2
protocol tcp
no persistent
advanced-balance sticky-srcip
active
For example, if as a client I am opening http://10.123.190.20/alive.htm in my browser and I then rename the alive.htm on server1 causing the keepalive->Down, I just sit there hitting refresh for up to 60 seconds and during that time I keep getting the expected 404 not found from the server until some sort of timeout kicks in and I get correctly moved to the functioning server.
Am I missing something obvious here? I use CSM's as well and have no such problems.
Thoughts appreciated.
Ross