|
You may not need RAC to consolidate applications into the same Oracle instance. Here are a few rules that I follow when faced with a similar situation.
First, I take a look at the resources of the servers running the Oracle instances. How much memory is being used by each Oracle instance? Are the CPUs always busy, or mostly idle? When you consolidate instances, you will be sharing resources. You may find that your resource requirements are not that high and you can easily consolidate instances into one database server. If resource demands are high, then you may have to implement RAC so as to spread those resource requirements out over multiple database nodes.
Second, I always put different application data into different schemas. This way, applications cannot see the other applications' data. Additionally, I try to seperate the application's data onto different disk devices if at all possible. This way, high disk usage of one application will not impact other applications.
Third, if you are considering RAC, then take a look at the management aspects. It is easier to manage three separate database servers running three applications than it is to implement a three-node RAC cluster. So you may be doing more harm than good by combining applications into one Oracle database and putting RAC into the equation. RAC should be used for two reasons. One, higher availability. If one node goes down, another node can still be used to access the data. Two, better performance. By splitting the load across multiple nodes, one can spread out the resource demands. If these two reasons do not apply, then implementing RAC can waste the company valuable man hours to manage a high-end configuration that may not be necessary.
|