Forum Discussion
K-Dubb
Nimbostratus
Sep 30, 2013HTTP:Retry and LB:Reselect not working as expected.
Hello, We are using ASP.net Session state via SQL server behind our BIGIP Version 10.2.4. Session state is working great. We do not want the user to ever see a service unavailable. We tried setti...
StephanManthey
Nacreous
Oct 01, 2013I´ve got it working in v10.2.4HF7 for source address affinity in combination with oneconnect (plain oneconnect profile used, btw I recommend a 32bit mask) only. I´m deleting the persistence record and things work fine so far. There is still an issue with the limitation counter. It stops at twice the number of poolmembers if each server returns a '503':
when CLIENT_ACCEPTED {
set retry 0
set default_pool [LB::server pool]
}
when HTTP_REQUEST {
if { ([HTTP::method]) eq "GET" && ($retry == 0) } {
set request_headers [HTTP::request]
log local0. "Current retries of $retry for [HTTP::uri]"
}
}
when LB_SELECTED {
if { $retry > 0 } {
persist delete source_addr [IP::client_addr]
log local0. "Re-loadbalancing to [LB::server] retries $retry [HTTP::uri]"
LB::reselect pool $default_pool
}
}
when HTTP_RESPONSE {
if { [HTTP::status] starts_with "5" } {
incr retry
log local0. "5xx error caught: retry $retry out of [active_members $default_pool]"
if { $retry < [active_members $default_pool] } {
log local0. "will retry now"
HTTP::retry $request_headers
return
}
} else {
set retry 0
}
}
Another attempt with cookie persistence failed so far. But I´m running out of time right now and need to stop at this point, sorry.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects
