PhysicalDBNode 是Mycat集群(Datanode)的對應(yīng),引用一個連接池對象 PhysicalDBPool,
PhysicalDBPool 里面引用了真正的連接池對象 PhysicalDatasource,PhysicalDBPool 里面把該
集群的讀節(jié)點,寫節(jié)點寫入各自的 PhysicalDatasource 數(shù)組,通過負載均衡決定走哪個節(jié)點
負載均衡策略:隨機選擇,按權(quán)重設(shè)置隨機概率
代碼:randomSelect
節(jié)點權(quán)重計算公式String weightStr = node.getAttribute("weight");
int weight = "".equals(weightStr) ? PhysicalDBPool.WEIGHT : Integer.parseInt(weightStr) ;
負載均衡:offset -= okSources.get(i).getConfig().getWeight();
沒明白為什么這么分配,難道可用達到權(quán)重越大,分配可能性越?。???
專注于為中小企業(yè)提供網(wǎng)站制作、成都網(wǎng)站制作服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)高縣免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了近千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
public PhysicalDatasource randomSelect(ArrayList<PhysicalDatasource> okSources) {
if (okSources.isEmpty()) {
return this.getSource();
} else {
int length = okSources.size(); // 總個數(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; // 累計總權(quán)重
if (sameWeight && i > 0
&& weight != okSources.get(i-1).getConfig().getWeight() ) { // 計算所有權(quán)重是否一樣
sameWeight = false;
}
}
if (totalWeight > 0 && !sameWeight ) {
// 如果權(quán)重不相同且權(quán)重大于0則按總權(quán)重數(shù)隨機
int offset = random.nextInt(totalWeight);
// 并確定隨機值落在哪個片斷上
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則均等隨機
return okSources.get( random.nextInt(length) );
//int index = Math.abs(random.nextInt()) % okSources.size();
//return okSources.get(index);
}
}
PhysicalDatasource 連接池對象保存該連接的可用連接使用的數(shù)據(jù)結(jié)構(gòu)是,ConMap,主要功能是獲取當(dāng)前節(jié)點的可用連接,首先從當(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中的,可用連接分為自動提交,手動提交,所以ConQueue由2個ConcurrentLinkedQueue組成,autoCommitCons 自動提交隊列,manCommitCons 手動提交隊列
分配可用連接:先從提交方式隊列隊首分配,分配失敗,從另一個隊列分配,分配失敗,從其他databse 分配。猜想:此處分配完成應(yīng)該不是最種的可用連接,還需要做事務(wù)隔離級別、事務(wù)模式、字符集、Database 等等處理和校驗,才能執(zhí)行具體的 sql 指令,這些應(yīng)該是在MySQLConnection 類中進行的
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;
}
}
當(dāng)前標(biāo)題:Mycat連接池模型源碼
當(dāng)前URL:http://aaarwkj.com/article20/pjcgjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、品牌網(wǎng)站制作、自適應(yīng)網(wǎng)站、網(wǎng)站建設(shè)、App設(shè)計、定制網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)