Operating System - HP-UX
1751972 Members
4721 Online
108783 Solutions
New Discussion юеВ

Re: Setting up oracle app servers with content switch

 
SOLVED
Go to solution
Ratzie
Super Advisor

Setting up oracle app servers with content switch

We are looking to go with oracle application servers along with the a web front end.

The load balancing will be done with a content switch.

THis is as far as I know about this stuff. Hey, I can at least spell it.
I need some high level overview of how content switching is done, as well as the do's and donts of setting up oracle application servers. 9i, but may go with 10g.

Is there any courses, docs. I would like to start high so I could understand it.
If any one has some info it would be greatly appreciated.
9 REPLIES 9
Steven E. Protter
Exalted Contributor

Re: Setting up oracle app servers with content switch

10g is more complex than its predecessor, but appeared reasonably reliable in the tests we ran at my previous job, prior to leaving the US.

The do's are follow the install guide very, very precisely. Be prepared for problems, because early 10g versions did not recognize the next major Ansi C release as valid and had to be tricked into installing.

Do patch your system fully and with care, reading the notes for other possible impacts.

Do not give up, and do not let Oracle support bounce your case around without resolution.

Do have a support agreement with Oracle.

10g and the previous versiions do have the ability to work with load balancing schemes, though if your load is heavy you may want to implement your own solution with multiple copies of content.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Eric Antunes
Honored Contributor

Re: Setting up oracle app servers with content switch

mghosalk
Advisor

Re: Setting up oracle app servers with content switch

Oracle 10g AS is truly very complex.
Oracle is not interested in not coming out with patchsets for 10g AS as compared to linux,solaris and windows.
its been 2 months and i am still waiting for them to release the 10gAS (9.0.4.2) patchset for hp-ux 11.11.
TwoProc
Honored Contributor

Re: Setting up oracle app servers with content switch

By a content switch - do you mean specifically Cisco's CSM blade module? If so, I could put in a few thoughts on it.

We are the people our parents warned us about --Jimmy Buffett
Ratzie
Super Advisor

Re: Setting up oracle app servers with content switch

We were looking at the:
Cisco CSS11501 Content Services Switch with Hard Disk (8x100 + 1Gig ports)

Looking more for do's and don'ts.
Should we have a private vlan on one side.how to do load balancing.
One content switch 3 app servers 9i
TwoProc
Honored Contributor
Solution

Re: Setting up oracle app servers with content switch

I've found it best to put the virtual addresses and the real addresses on two different vlans, although we've made it work without it. This prevents people from finding out that they can have their favorite server that they like to get to, and bypassing your hard-won load balancing system. With this, you can allow users into one vlan (with the virtual IP's), and deny them access to the actual VLANS that have the servers.

That switch has a few load-balancing options, including round-robin and process-counter basis (there are others too).

Round robin has the downside of not really keeping everything fully balanced, it just allocates in rr fashion, and doesn't care what the load is, or how many processes are currently running, but it is robust. By the end of the day, things can at times get pretty much out of whack in number of users and cpu/disk loads at times.

Process-counting does a handsome job of keeping all of the number of processes correctly balanced - BUT - if you end up with a server process "partially up", then you can get into a bit of problem. We've seen the app servers die from time to time (though rarely), but not fully die (which would be preferred). What happens is you can set the port probes to check to see if a) http server, b) forms server or c) java servlet(s) are up, but you can't set the CSM to know if they are up enough to really do work for the users that are trying to connect (or are already connected to this server). What this means is that any of these servers are up enough to respond to port probes, but can't get you any meaningful data to your requests. What happens then is the users on that box, start backing out and the server farm knows that this box suddenly becomes the low-numbered proc count box, so... it starts sending ALL new requests to this partially up/down box. Meaning that, no-one can get logged in, etc. until the server processes on this server are bounced, or the offending server is taken inactive from the farm.

Which one to choose - you're probably OK with either, unless you're tight on cpu resources at peak periods of activity, in which case that kind of leaves you with process-counting only as your method.

Also, Oracle Apps processes are kind of funny in that they seem to want to bring components up and have them running on the box before bringing up other parts. And, it seems to want to know that it is working that way from its own box. Solution after many weeks of diagnosis: Set the real hostname in the /etc/hosts file of each machine to have the ip address of 127.0.0.1 instead of having it be the IP of one of the Lan cards (some types of UNIX flavors do this by default). You'll then have to go and fix the security (deny,allow) sections of the Apache and Jserv configs to accept connections from the loopback connector (127.0.0.1).

You'll also have to consider something we call "The Sticky" (we've now fully forgotten the real name for this, and now all agree on calling it this by this name). This denotes a client workstations affinity to connect to the same client server for work. This is a time based setting and you will probably want a minimum of 10 minutes or so, and up to one hour, depending on what works best for you.
This allows your client workstation to keep connecting to the same forms server (or java servlet) which is doing work on your behalf, and contains results that need to be pushed back to you. Setting this too short will result in nonsensical connections if someone stops working in a form and talks on the phone for a while (longer than the time setting). Setting this too long adversely affects how well you load balance.

Newest versions of the s/w for this also offer coookie injection as alternative to "The Sticky". Newer versions also offer load balancing based on response time from a dedicated process call that you setup and designate from the server and integrate into the CSM.

Proper usage of the features of the CSM module require the latest software releases in the switch - which require the latest OS software, which require the latest firmware in the supervisor blades, which can require later versions of sup blades themselves. With that in mind, the amount of memory in the switch to hold the newest versions of all software may not be big enough, and the older versions of the OS may not support the larger memory cards (meaning you can't half step your way through the upgrade). So - MAKE SURE that your network guy has asked and reasked everyone that he needs to, and then triple checked compatibility across all of these fronts, or you'll possibly be making multiple attempts at getting the hardware configured and started up.

Going through all of this to make it work is actually going to take more time than you are probably thinking, just because conceptually it just sounds so neat and simple. So allocate more than the "day-or-two" that you may be thinking of for this aspect of the project.
We are the people our parents warned us about --Jimmy Buffett
TwoProc
Honored Contributor

Re: Setting up oracle app servers with content switch

Did you get the thing up?
We are the people our parents warned us about --Jimmy Buffett
Ratzie
Super Advisor

Re: Setting up oracle app servers with content switch

No, not yet hardware has not been purchased.
I thank you for all your help, it will come in quite handy!
TwoProc
Honored Contributor

Re: Setting up oracle app servers with content switch

points?
We are the people our parents warned us about --Jimmy Buffett