溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

zookeeper(13)源碼分析-請求處理鏈(3)

發(fā)布時(shí)間:2020-07-18 10:39:23 來源:網(wǎng)絡(luò) 閱讀:241 作者:shayang88 欄目:編程語言

FinalRequestProcessor是請求處理鏈中最后的一個(gè)處理器。

public class FinalRequestProcessor implements RequestProcessor {
    ZooKeeperServer zks;
}

FinalRequestProcessor只實(shí)現(xiàn)了RequestProcessor接口,需要實(shí)現(xiàn)process Request方法和shutdown方法。

核心屬性為zks,表示Zookeeper服務(wù)器,可以通過zks訪問到Zookeeper內(nèi)存數(shù)據(jù)庫。

我們看一下核心方法process Request代碼:

同步代碼塊

synchronized (zks.outstandingChanges) {
            // Need to process local session requests
            // 當(dāng)前節(jié)點(diǎn),處理請求,若為事務(wù)性請求,則提交到ZooKeeper內(nèi)存數(shù)據(jù)庫中。
            // 對于processTxn函數(shù)而言,其最終會(huì)調(diào)用DataTree的processTxn
            rc = zks.processTxn(request);

            // request.hdr is set for write requests, which are the only ones
            // that add to outstandingChanges.
            //只有寫請求才會(huì)有消息頭
            if (request.getHdr() != null) {
                TxnHeader hdr = request.getHdr();
                Record txn = request.getTxn();
                long zxid = hdr.getZxid();
                //當(dāng)outstandingChanges不為空且其首元素的zxid小于等于請求的zxid時(shí),
                // 就會(huì)一直從outstandingChanges中取出首元素,并且對outstandingChangesForPath做相應(yīng)的操作
                while (!zks.outstandingChanges.isEmpty()
                       && zks.outstandingChanges.peek().zxid <= zxid) {
                    ChangeRecord cr = zks.outstandingChanges.remove();
                    if (cr.zxid < zxid) {
                        LOG.warn("Zxid outstanding " + cr.zxid
                                 + " is less than current " + zxid);
                    }
                    if (zks.outstandingChangesForPath.get(cr.path) == cr) {
                        zks.outstandingChangesForPath.remove(cr.path);
                    }
                }
            }

            // do not add non quorum packets to the queue.
            //判斷是否為事務(wù)性請求則是通過調(diào)用isQuorum函數(shù)
            //只將quorum包(事務(wù)性請求)添加進(jìn)隊(duì)列
            //addCommittedProposal函數(shù)將請求添加至ZKDatabase的committedLog結(jié)構(gòu)中
            if (request.isQuorum()) {
                zks.getZKDatabase().addCommittedProposal(request);
            }
        }

如果請求是ping

根據(jù)請求的創(chuàng)建時(shí)間來更新Zookeeper服務(wù)器的延遲,updateLatency函數(shù)中會(huì)記錄最大延遲、最小延遲、總的延遲和延遲次數(shù)。
然后更新響應(yīng)中的狀態(tài),如請求創(chuàng)建到響應(yīng)該請求總共花費(fèi)的時(shí)間、最后的操作類型等。然后設(shè)置響應(yīng)后返回

case OpCode.ping: {
                //更新延遲
                zks.serverStats().updateLatency(request.createTime);

                lastOp = "PING";
                // 更新響應(yīng)的狀態(tài)
                cnxn.updateStatsForResponse(request.cxid, request.zxid, lastOp,
                        request.createTime, Time.currentElapsedTime());
                // 設(shè)置響應(yīng)
                cnxn.sendResponse(new ReplyHeader(-2,
                        zks.getZKDatabase().getDataTreeLastProcessedZxid(), 0), null, "response");
                return;
            }

其他請求與此類似,
最后會(huì)根據(jù)其他請求再次更新服務(wù)器的延遲,設(shè)置響應(yīng)的狀態(tài)等

// 獲取最后處理的zxid
long lastZxid = zks.getZKDatabase().getDataTreeLastProcessedZxid();
// 響應(yīng)頭
        ReplyHeader hdr =
            new ReplyHeader(request.cxid, lastZxid, err.intValue());
// 更新服務(wù)器延遲
        zks.serverStats().updateLatency(request.createTime);
                // 更新狀態(tài)
        cnxn.updateStatsForResponse(request.cxid, lastZxid, lastOp,
                    request.createTime, Time.currentElapsedTime());

最后使用sendResponse函數(shù)將響應(yīng)發(fā)送給請求方。

try {
            //返回相應(yīng)
            cnxn.sendResponse(hdr, rsp, "response");
            if (request.type == OpCode.closeSession) {
                //關(guān)閉會(huì)話
                cnxn.sendCloseSession();
            }
        } catch (IOException e) {
            LOG.error("FIXMSG",e);
        }
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI