|
> 怎么才能把service固定在某个RAC节点上
When you create a service using srvctl, you can define some but not all nodes of the RAC cluster. See
http://yong321.freeshell.org/oranotes/Service.txt
for the "srvctl add service" command.
> 既然都是用服务来达到分割应用的目的了,(LOAD_BALANCE = YES)是不是就不应该存在了?
Load_ balance here means something different. Documentation says if you don't use description_list, load_balance is off, so each address is tried in sequence until successful connection is made. If you set load_balance to yes or on, addresses are tried randomly.
In the example, london1-vip and london2-vip probably have service1 running on them. You may have service2 running on london1-vip only, service3 running on london1-vip, london2-vip and london3-vip, etc. That design is up to your decision.
Yong Huang |
|