1

我目前正在做一个项目,我们选择 Yii 作为我们选择的新框架。我目前正在尝试找出在 Yii 中实现某种自动数据库故障转移的最佳方法。

我目前正在尝试覆盖 CDbConnection 类 - 打开功能。我不确定我是否朝着正确的方向前进。

基本上我要做的是检查数据库连接,如果它失败连接到另一个数据库。简单的概念我只是不知道把它放在哪里。我知道使用 mysqlnd_ms 有更好的方法来做到这一点,但它还没有在我们正在使用的服务器上设置,所以必须想出一种在 Yii 中做到这一点的方法。任何帮助是极大的赞赏。-DA

这就是我到目前为止的想法?

class DaDbConnection extends CDbConnection{

public $dbConnectTries = 6;
public $numDatabases = 3;
private $_tries =0;
private $_db = 1;

/*
 * Extends CDbConnection open() method
 * Tries to connect to database connections setup in config/main.php up to 
 * the value of $dbConnectionTries or a connection is successful
 * @throws CException If it can not connect to any DBs
 */
protected function open()
{
    try{
        //try to connect to the default DB
        parent::open();

    }catch(Exception $e){
        if($this->_tries < $this->dbConnectTries){

            //If there aren't anymore DBs to try we must start over from the first
            if($this->_db >= $this->numDatabases){
                $tryDb = 'db';
                $this->_db = 0;
            }else{
               $tryDb = 'db'.$this->_db;
            }

            $this->_db++;
            $this->_tries++;

            $this->connectionString = Yii::app()->$tryDb->connectionString;
            $this->username = Yii::app()->$tryDb->username;
            $this->password = Yii::app()->$tryDb->password;
            $this->open();
        }else{
            throw new CDbException('Could Not Connect to a DB.');
        }
    }    
}

}

4

1 回答 1

1

听起来方向是正确的。我不确定 Yii 有什么内置的,如果我错了,请有人纠正我。

我可能会尝试在我的主配置文件中定义两个数据库,但使用我自己的自定义类;

return array(
    ...
    'components' => array(
        'db' => array(
            'connectionString' => 'mysql:host=dbserver1;dbname=my1db',
            ...
            'class'            => 'MyCDbConnection',
            ...
        ),
        'dbBackup' => array(
            'connectionString' => 'mysql:host=dbserver2;dbname=my2db',
            ...
            'class'            => 'MyCDbConnection',
        ),
        ...
    ),
);

然后,按照您的建议,我将让MyCDbConnection该类扩展主 CDbConnection 类,但包含我自己的 open 方法。

可以很容易地在数据库之间切换(例如Yii 中的多数据库支持),我相信您可以将其集成到在您的自定义open()方法中打开数据库连接的 try/catch 中?

于 2012-12-21T16:56:01.930 回答