中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Mycat連接池模型源碼-創(chuàng)新互聯(lián)

PhysicalDBNode 是Mycat集群(Datanode)的對(duì)應(yīng),引用一個(gè)連接池對(duì)象 PhysicalDBPool,
PhysicalDBPool 里面引用了真正的連接池對(duì)象 PhysicalDatasource,PhysicalDBPool 里面把該
集群的讀節(jié)點(diǎn),寫節(jié)點(diǎn)寫入各自的 PhysicalDatasource 數(shù)組,通過負(fù)載均衡決定走哪個(gè)節(jié)點(diǎn)
負(fù)載均衡策略:隨機(jī)選擇,按權(quán)重設(shè)置隨機(jī)概率
代碼:randomSelect
節(jié)點(diǎn)權(quán)重計(jì)算公式String weightStr = node.getAttribute("weight");
int weight = "".equals(weightStr) ? PhysicalDBPool.WEIGHT : Integer.parseInt(weightStr) ;
負(fù)載均衡:offset -= okSources.get(i).getConfig().getWeight();
沒明白為什么這么分配,難道可用達(dá)到權(quán)重越大,分配可能性越?????

創(chuàng)新互聯(lián)建站是一家專業(yè)提供南安企業(yè)網(wǎng)站建設(shè),專注與做網(wǎng)站、成都做網(wǎng)站、H5建站、小程序制作等業(yè)務(wù)。10年已為南安眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計(jì)公司優(yōu)惠進(jìn)行中。
public PhysicalDatasource randomSelect(ArrayList<PhysicalDatasource> okSources) {

   if (okSources.isEmpty()) {
      return this.getSource();

   } else {      

      int length = okSources.size();     // 總個(gè)數(shù)
        int totalWeight = 0;         // 總權(quán)重
        boolean sameWeight = true;        // 權(quán)重是否都一樣
        for (int i = 0; i < length; i++) {            
            int weight = okSources.get(i).getConfig().getWeight();
            totalWeight += weight;        // 累計(jì)總權(quán)重               
            if (sameWeight && i > 0 
                  && weight != okSources.get(i-1).getConfig().getWeight() ) {      // 計(jì)算所有權(quán)重是否一樣                              
                sameWeight = false;    
            }
        }

        if (totalWeight > 0 && !sameWeight ) {

           // 如果權(quán)重不相同且權(quán)重大于0則按總權(quán)重?cái)?shù)隨機(jī)
            int offset = random.nextInt(totalWeight);

            // 并確定隨機(jī)值落在哪個(gè)片斷上
            for (int i = 0; i < length; i++) {
                offset -= okSources.get(i).getConfig().getWeight();
                if (offset < 0) {
                    return okSources.get(i);
                }
            }
        }

        // 如果權(quán)重相同或權(quán)重為0則均等隨機(jī)
        return okSources.get( random.nextInt(length) );    

      //int index = Math.abs(random.nextInt()) % okSources.size();
      //return okSources.get(index);
   }
}

PhysicalDatasource 連接池對(duì)象保存該連接的可用連接使用的數(shù)據(jù)結(jié)構(gòu)是,ConMap,主要功能是獲取當(dāng)前節(jié)點(diǎn)的可用連接,首先從當(dāng)前database上獲取可用連接,如果沒有,則從其他 database 上獲取可用連接

public BackendConnection tryTakeCon(final String schema, boolean autoCommit) {
   final ConQueue queue = items.get(schema);
   BackendConnection con = tryTakeCon(queue, autoCommit);
   if (con != null) {
      return con;
   } else {
      for (ConQueue queue2 : items.values()) {
         if (queue != queue2) {
            con = tryTakeCon(queue2, autoCommit);
            if (con != null) {
               return con;
            }
         }
      }
   }
   return null;

}
private BackendConnection tryTakeCon(ConQueue queue, boolean autoCommit) {

   BackendConnection con = null;
   if (queue != null && ((con = queue.takeIdleCon(autoCommit)) != null)) {
      return con;
   } else {
      return null;
   }

}

database的可用連接是存放在數(shù)據(jù)結(jié)構(gòu)ConQueue中的,可用連接分為自動(dòng)提交,手動(dòng)提交,所以ConQueue由2個(gè)ConcurrentLinkedQueue組成,autoCommitCons 自動(dòng)提交隊(duì)列,manCommitCons 手動(dòng)提交隊(duì)列
分配可用連接:先從提交方式隊(duì)列隊(duì)首分配,分配失敗,從另一個(gè)隊(duì)列分配,分配失敗,從其他databse 分配。猜想:此處分配完成應(yīng)該不是最種的可用連接,還需要做事務(wù)隔離級(jí)別、事務(wù)模式、字符集、Database 等等處理和校驗(yàn),才能執(zhí)行具體的 sql 指令,這些應(yīng)該是在MySQLConnection 類中進(jìn)行的

public BackendConnection takeIdleCon(boolean autoCommit) {
   ConcurrentLinkedQueue<BackendConnection> f1 = autoCommitCons;
   ConcurrentLinkedQueue<BackendConnection> f2 = manCommitCons;

   if (!autoCommit) {
      f1 = manCommitCons;
      f2 = autoCommitCons;

   }
   BackendConnection con = f1.poll();
   if (con == null || con.isClosedOrQuit()) {
      con = f2.poll();
   }
   if (con == null || con.isClosedOrQuit()) {
      return null;
   } else {
      return con;
   }

}

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前名稱:Mycat連接池模型源碼-創(chuàng)新互聯(lián)
URL鏈接:http://www.rwnh.cn/article44/ccigee.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司、App設(shè)計(jì)、網(wǎng)站導(dǎo)航、ChatGPT、品牌網(wǎng)站設(shè)計(jì)、微信公眾號(hào)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
高州市| 万荣县| 通化县| 宣武区| 舞钢市| 福州市| 东丽区| 东乡县| 北宁市| 台北县| 聂荣县| 夏邑县| 洪洞县| 鄱阳县| 郓城县| 神农架林区| 科尔| 织金县| 赤城县| 望城县| 卫辉市| 马鞍山市| 霍州市| 浑源县| 枞阳县| 灵武市| 巴林右旗| 开阳县| 昌邑市| 太仆寺旗| 陆丰市| 涞源县| 雅安市| 横峰县| 丰原市| 宁陵县| 伊通| 余江县| 莆田市| 密山市| 增城市|