|
> 在主库故障时,另一个库也能让应用程序正常访问,你那边有什么好的方案?
If the primary database is completely unusable (we've never had that disaster), many teams will work together and we'll bring up (which probably means failover i.e. activate) the standby. Since our primary is RAC, we always have at least one of the nodes available to the users. If you don't use RAC and your applications are fairly easy to change, you can consider automatic failover/switchover. But manual failover/switchover is not that hard anyway. Being automatic only saves you a little time. To us, it's not worth it. We DBAs are equiped with blackberry smart phones which have the SSH client that can connect to the servers. Even if we travel to the other side of the earth, we can login the database servers. So, saving a little response time is not a high priority and it comes with high risk. |
|