Forum Discussion
kyn3s_53106
Nimbostratus
Feb 03, 2010Loadbalancing URI on same server ?
Hello folks !
I have an unusual request to submit to your skills. I have two web servers running a proprietary solution. For some dark reasons (process loadbalancing, process optimisation...), they both are running two identical websites on same port but different URI. This is as follows:
http://1.2.3.45:8080/toto1.exe
http://1.2.3.45:8080/toto2.exe
http://1.2.3.46:8080/toto1.exe
http://1.2.3.46:8080/toto2.exe
I would like the users to access each of them. So I wrote the following iRule, as I could see in another post (http://devcentral.f5.com/Default.aspx?tabid=53&forumid=5&tpage=1&view=topic&postid=6232).
I am actually unable to test this solution. So any help is appreciated. My questions are:
Would this work ?
Is there any way to optimize this ?
How about using a pool ?
And what about client-server affinity ?
Thanks again!
rule lb_URI_rule {
when RULE_INIT {
set ::lb_caisd_counter 1
}
when HTTP_REQUEST {
if {$::lb_caisd_counter == 1} {
set ::lb_caisd_counter 2
HTTP::redirect "http://1.2.3.45:8080/toto1.exe "
}
elseif {$::lb_caisd_counter == 2} {
set ::lb_caisd_counter 3
HTTP::redirect "http://1.2.3.46:8080/toto1.exe "
}
elseif {$::lb_caisd_counter == 3} {
set ::lb_caisd_counter 4
HTTP::redirect "http://1.2.3.45:8080/toto2.exe "
}
elseif {$::lb_caisd_counter == 4} {
set ::lb_caisd_counter 1
HTTP::redirect "http://1.2.3.46:8080/toto2.exe "
}
}
}12 Replies
- kyn3s_53106
Nimbostratus
Hi !
Just one more question: will the statement "When HTTP_RESQUEST" match every GET request or only when the TCP session is established and not the further GET statements ?
Trying to know if the persistence profile will work or if I have to code something into my iRule...
-kyn3s. - L4L7_53191
Nimbostratus
k7n3s: would it be possible to simply bind multiple instances of this app to different ports as opposed to using a path-based instance of the app? Spinning up multiple instances allows you to take advantage of native capabilities, as you know. Do you have any information as to why the application is designed this way?
-Matt
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