Forum Discussion
Reverting to http1.0 from http1.1
Hi Erick,
Sounds like you are not exactly sure if the cause is more HTTP Request that is causing the issue. I would first look at changing the load balancing algorithm and also investigate the OneConnect Profile to see if that might help before starting to change HTTP versions.
If you are going to end up needing to round robin based on HTTP request then I suppose an irule would be
when HTTP_REQUEST {
set poolname "pooltest"
if { [active_members $poolname] < 1 } {
No active pool members; reset client
reject
return
}
set count [members $poolname]
set try 0
while { $try < $count } {
set plist [lindex [members -list $poolname] [expr {[table incr "round-robin:$poolname"] % $count}]]
set mip [lindex $plist 0]
set mport [lindex $plist 1]
if { [LB::status pool $poolname member $mip $mport up] } {
pool $poolname member $mip $mport
return
}
incr try
}
}
Bhattman
Recent Discussions
Related Content
* 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