IndexFile文件講解
?之前說了RocketMQ的物理日志文件CommitLog和邏輯日志文件ConsumeQueue。現(xiàn)在說的是對應(yīng)的消息索引文件IndexFile富腊。
概述
?IndexFile(索引文件)提供了一種可以通過key或時間區(qū)間來查詢消息的方法玻蝌。Index文件的存儲位置是:HOME\store\index{fileName}
词疼,文件名fileName是以創(chuàng)建時的時間戳命名的帘腹,固定的單個IndexFile文件大小約為400M许饿,一個IndexFile可以保存 2000W個索引,IndexFile的底層存儲設(shè)計為在文件系統(tǒng)中實現(xiàn)HashMap結(jié)構(gòu)球化,故rocketmq的索引文件其底層實現(xiàn)為hash索引瓦糟。
文件結(jié)構(gòu)
?文件的結(jié)構(gòu)這里參考網(wǎng)上的一張圖
?這個圖是整個IndexFile的文件結(jié)構(gòu),主要分為3部分巢掺。第一部分劲蜻,文件頭信息(大小為40 byte);第二部分先嬉,hash槽位(單個槽位4byte,一共500w個)含懊;第三部分,索引信息鏈表部分(單個index為20 byte绢要,一共2000w個)拗小。分三部分進(jìn)行說明:
- 頭信息Index Head部分:主要記錄整個文件的相關(guān)信息
-
beginTimestamp
:第一個索引消息落在Broker的時間戳; -
endTimestamp
:最后一個索引消息落在Broker的時間戳剿配; -
beginPhyOffset
:第一個索引消息在commitlog的偏移量阅束; -
endPhyOffset
:最后一個索引消息在commitlog的偏移量; -
hashSlotCount
:構(gòu)建索引占用的槽位數(shù)息裸; -
indexCount
:構(gòu)建的索引個數(shù)沪编;
-
- Hash槽 Slot Table 部分:保存的是消息key在Index部分的位置蚁廓,槽位的確定方式是消息的topic和key中間用#拼接起來(topic#key)然后對總槽樹取模厨幻,計算槽位。
- Index鏈表部分:Index中存儲的是消息相關(guān)的詳細(xì)信息况脆,和hash沖突時的處理方式
-
keyHash
:topic#key結(jié)構(gòu)的Hash值(key是消息的key) -
phyOffset
:commitLog真實的物理位移 -
timeOffset
:時間位移,消息的存儲時間與Index Header中beginTimestamp的時間差 -
slotValue
(解決hash槽沖突的值):當(dāng)topic-key(key是消息的key)的Hash值取500W的余之后得到的Slot Table的slot位置中已經(jīng)有值了(即Hash值取余后在Slot Table中有hash沖突時)看铆,則會用最新的Index值覆蓋盛末,并且將上一個值寫入最新Index的slotValue中,從而形成了一個鏈表的結(jié)構(gòu)肤频。
-
IndexFile文件相關(guān)的類
IndexFile頭文件相關(guān)的IndexHead
類
?IndexHead
類關(guān)聯(lián)的其實就是IndexFile文件的頭文件相關(guān)的信息,沒有復(fù)雜的方法宵荒,都是一些字段的get和set方法
//IndexFile的頭大小
public static final int INDEX_HEADER_SIZE = 40;
//beginTimestamp:第一個索引消息落在Broker的時間戳
private static int beginTimestampIndex = 0;
//endTimestamp:最后一個索引消息落在Broker的時間戳
private static int endTimestampIndex = 8;
//beginPhyOffset:第一個索引消息在commitlog的偏移量净嘀;
private static int beginPhyoffsetIndex = 16;
//endPhyOffset:最后一個索引消息在commitlog的偏移量;
private static int endPhyoffsetIndex = 24;
//hashSlotCount:構(gòu)建索引占用的槽位數(shù)
private static int hashSlotcountIndex = 32;
//indexCount:構(gòu)建的索引個數(shù)
private static int indexCountIndex = 36;
//記錄對應(yīng)信息用的原子類
private AtomicLong beginTimestamp = new AtomicLong(0);
private AtomicLong endTimestamp = new AtomicLong(0);
private AtomicLong beginPhyOffset = new AtomicLong(0);
private AtomicLong endPhyOffset = new AtomicLong(0);
private AtomicInteger hashSlotCount = new AtomicInteger(0);
private AtomicInteger indexCount = new AtomicInteger(1);
?可以看到這里通過6個字段來表示對應(yīng)的6個字段的偏移量暑刃,其中6個字段的值都是用原子類來記錄表示的膜眠。
IndexFile讀寫相關(guān)的IndexFile
類
?IndexFile文件相關(guān)操作對應(yīng)的就是IndexFile
類,提供對IndexFile文件的插入信息和對應(yīng)的查詢操作架谎。
字段屬性
//hash曹的大小
private static int hashSlotSize = 4;
//一個index結(jié)構(gòu)的大小
private static int indexSize = 20;
//無效的index
private static int invalidIndex = 0;
//hash槽總數(shù)
private final int hashSlotNum;
//index的數(shù)量
private final int indexNum;
//IndexFile文件的映射文件對象
private final MappedFile mappedFile;
private final FileChannel fileChannel;
private final MappedByteBuffer mappedByteBuffer;
//IndexFile的頭信息
private final IndexHeader indexHeader;
?記錄的主要是整個文件中相應(yīng)的單元的單個大小辟躏,和對應(yīng)hash槽和index鏈表的大小。和對應(yīng)文件的映射對象等信息
內(nèi)部方法分析
構(gòu)造方法
?構(gòu)造方法主要就是對應(yīng)的主要參數(shù)的設(shè)置捎琐,根據(jù)入?yún)⒂嬎阏麄€文件的大泄住(IndexFile的頭大小 + hash槽的大小 x hash槽的數(shù)量 + index結(jié)構(gòu)的大小 x index結(jié)構(gòu)的數(shù)量)概页,然后創(chuàng)建文件,設(shè)置文件頭對象IndexHead
public IndexFile(final String fileName, final int hashSlotNum, final int indexNum,
final long endPhyOffset, final long endTimestamp) throws IOException {
//計算文件的大小 = IndexFile的頭大小 + hash槽的大小*hash槽的數(shù)量 + index結(jié)構(gòu)的大小*index結(jié)構(gòu)的數(shù)量
int fileTotalSize =
IndexHeader.INDEX_HEADER_SIZE + (hashSlotNum * hashSlotSize) + (indexNum * indexSize);
//獲取映射文件對象
this.mappedFile = new MappedFile(fileName, fileTotalSize);
//獲取對應(yīng)的channel
this.fileChannel = this.mappedFile.getFileChannel();
//獲取對應(yīng)文件的緩存
this.mappedByteBuffer = this.mappedFile.getMappedByteBuffer();
//設(shè)置hash槽數(shù)量
this.hashSlotNum = hashSlotNum;
//設(shè)置index結(jié)構(gòu)的數(shù)量
this.indexNum = indexNum;
ByteBuffer byteBuffer = this.mappedByteBuffer.slice();
//創(chuàng)建文件對應(yīng)的IndexHead對象
this.indexHeader = new IndexHeader(byteBuffer);
//初始化頭文件的beginPhyOffset 和 endPhyOffset
if (endPhyOffset > 0) {
this.indexHeader.setBeginPhyOffset(endPhyOffset);
this.indexHeader.setEndPhyOffset(endPhyOffset);
}
//初始化頭文件的beginTimestamp 和 endTimestamp
if (endTimestamp > 0) {
this.indexHeader.setBeginTimestamp(endTimestamp);
this.indexHeader.setEndTimestamp(endTimestamp);
}
}
保存key對應(yīng)index的putKey
方法
?這個方法的調(diào)用绰沥,是在消息存入CommitLog之后贺待,進(jìn)行消息轉(zhuǎn)存的時候會調(diào)用麸塞。這里簡單貼一些調(diào)用鏈。
ReputMessageService#run
ReputMessageService#doReput
DefaultMessageStore#doDispatch
CommitLogDispatcherBuildIndex#dispatch
DefaultMessageStore#putMessagePositionInfo
IndexService#buildIndex
IndexService#putKey
IndexFile#putKey
?這個方法根據(jù)傳入的消息的key哪工,消息在CommitLog的物理偏移量弧哎,消息的存儲時間三個參數(shù)來進(jìn)行構(gòu)建索引。主要邏輯過程為:
- 檢查
IndexHead
類中記錄的indexCount
值和IndexFile
類中記錄的indexNum
進(jìn)行比較偎捎,檢查文件是否已經(jīng)滿了,如果滿了直接返回 - 計算傳入key對應(yīng)的hash槽的位置茴她,并檢查要插入的槽位是否已經(jīng)存在值了程奠,如果已經(jīng)存在值了,檢查是不是無效值瞄沙,如果不是則需要記錄。在插入index信息的時候保存
- 吧當(dāng)前key的索引值申尼,插入對應(yīng)的hash槽中
- 計算對應(yīng)的index鏈表的位置肮疗,然后插入index信息,如果之前hash槽分配存在hash沖突伪货,則在把沖突的上一個key的index的值钾怔,保存在
slotValue
中
?源碼如下
public boolean putKey(final String key, final long phyOffset, final long storeTimestamp) {
//如果已經(jīng)構(gòu)建的索引index數(shù)量 < 最大的index數(shù)量宗侦,則進(jìn)行插入,否則直接返回 false
if (this.indexHeader.getIndexCount() < this.indexNum) {
//計算key 的 hash值矾利,使用的是String自帶的hashcode方法計算
int keyHash = indexKeyHashMethod(key);
// 計算key對應(yīng)的hash槽的位置
int slotPos = keyHash % this.hashSlotNum;
//計算對應(yīng)槽為的偏移量 IndexFile的頭長度+hash槽的位置*hash槽大小 40+位置*4
int absSlotPos = IndexHeader.INDEX_HEADER_SIZE + slotPos * hashSlotSize;
FileLock fileLock = null;
try {
// fileLock = this.fileChannel.lock(absSlotPos, hashSlotSize,
// false);
//從對應(yīng)的槽位的位置開始 獲取4個字節(jié)的長度 得到對應(yīng)topic的key對應(yīng)索引的位置
int slotValue = this.mappedByteBuffer.getInt(absSlotPos);
//檢查對應(yīng)槽位的值 是不是無效的索引馋袜,如果不是說明這次插入的key跟之前的key沖突,則要取出之前的keu
if (slotValue <= invalidIndex || slotValue > this.indexHeader.getIndexCount()) {
slotValue = invalidIndex;
}
// 存儲時間 - 頭文件記錄的開始時間得到 時間差
long timeDiff = storeTimestamp - this.indexHeader.getBeginTimestamp();
//轉(zhuǎn)換時間
timeDiff = timeDiff / 1000;
//如果頭文件記錄的開始時間小于0察皇,則時間差記為0 泽台, 如果大于int最大值,則為最大值怀酷,如果時間差小于0,也記錄為0
if (this.indexHeader.getBeginTimestamp() <= 0) {
timeDiff = 0;
} else if (timeDiff > Integer.MAX_VALUE) {
timeDiff = Integer.MAX_VALUE;
} else if (timeDiff < 0) {
timeDiff = 0;
}
/**
* 計算 需要設(shè)置值的index偏移量 IndexFile頭大小+hash槽數(shù)量*hash槽大小+IndexFile的indexCount*index大小
* 也就是 40+500w*4+20*indexCount
*/
int absIndexPos =
IndexHeader.INDEX_HEADER_SIZE + this.hashSlotNum * hashSlotSize
+ this.indexHeader.getIndexCount() * indexSize;
//設(shè)置 index中的 keyHash
this.mappedByteBuffer.putInt(absIndexPos, keyHash);
//設(shè)置 index中的 phyOffset
this.mappedByteBuffer.putLong(absIndexPos + 4, phyOffset);
//設(shè)置 index中的 timeDiff
this.mappedByteBuffer.putInt(absIndexPos + 4 + 8, (int) timeDiff);
//設(shè)置 index中的 slotValue
this.mappedByteBuffer.putInt(absIndexPos + 4 + 8 + 4, slotValue);
//設(shè)置 在hash槽中的 index
this.mappedByteBuffer.putInt(absSlotPos, this.indexHeader.getIndexCount());
//如果indexCount 小于1桅锄,則表示是第一個存入的消息信息 則設(shè)置對應(yīng)的初始信息
if (this.indexHeader.getIndexCount() <= 1) {
this.indexHeader.setBeginPhyOffset(phyOffset);
this.indexHeader.setBeginTimestamp(storeTimestamp);
}
//如果對應(yīng)的 key的索引是無效索引
if (invalidIndex == slotValue) {
this.indexHeader.incHashSlotCount();
}
//增加indexCount值
this.indexHeader.incIndexCount();
//設(shè)置對應(yīng)的最后一個消息的偏移量
this.indexHeader.setEndPhyOffset(phyOffset);
//設(shè)置對應(yīng)的最后一個消息的存儲時間
this.indexHeader.setEndTimestamp(storeTimestamp);
return true;
} catch (Exception e) {
log.error("putKey exception, Key: " + key + " KeyHashCode: " + key.hashCode(), e);
} finally {
if (fileLock != null) {
try {
//釋放文件鎖
fileLock.release();
} catch (IOException e) {
log.error("Failed to release the lock", e);
}
}
}
} else {
log.warn("Over index file capacity: index count = " + this.indexHeader.getIndexCount()
+ "; index max num = " + this.indexNum);
}
return false;
}
根據(jù)時間區(qū)間查詢和key來進(jìn)行查詢消息的selectPhyOffset
方法
?根據(jù)消息和落盤時間段來尋找消息在CommitLog上的偏移量竞滓。主要邏輯如下:
- 根據(jù)傳入的key吹缔,計算hash槽的位置
- 獲取hash槽記錄的index鏈表的位置的值
- 獲取index鏈表中的
slotValue
值是否大于0,大于0表示存在hash沖突厢塘,也就是存在key相同的消息,需要進(jìn)入步驟4進(jìn)一步尋找晚碾,否則直接返回 - 根據(jù)
slotValue
記錄的值,尋找對應(yīng)的index鏈表的index信息笛求。同時校驗,index記錄的timeOffset
和IndexHead
記錄的beginTimestamp
的和是否在傳入的時間區(qū)間內(nèi)探入。在則繼續(xù)獲取slotValue
重復(fù)步驟4,直到找到不符合的消息苗膝。
?整個方法就是根據(jù)key計算消息的偏移量。源碼如下
/**
* 根據(jù)偏移量和落盤時間段獲取消息的物理偏移量集合
* @param phyOffsets 封裝邏輯偏移量值的集合
* @param key 開始尋找的key 結(jié)構(gòu)為消息的topic#key
* @param maxNum 尋找的數(shù)量
* @param begin 落盤時間段開始時間
* @param end 落盤時間段結(jié)束時間
* @param lock 是否加文件鎖辱揭,現(xiàn)階段是不加鎖
*/
public void selectPhyOffset(final List<Long> phyOffsets, final String key, final int maxNum,
final long begin, final long end, boolean lock) {
if (this.mappedFile.hold()) {
//計算key的hash槽的位置
int keyHash = indexKeyHashMethod(key);
int slotPos = keyHash % this.hashSlotNum;
//計算槽位的偏移量信息
int absSlotPos = IndexHeader.INDEX_HEADER_SIZE + slotPos * hashSlotSize;
FileLock fileLock = null;
try {
if (lock) {
// fileLock = this.fileChannel.lock(absSlotPos,
// hashSlotSize, true);
}
//獲取key對應(yīng)的索引信息
int slotValue = this.mappedByteBuffer.getInt(absSlotPos);
// if (fileLock != null) {
// fileLock.release();
// fileLock = null;
// }
//如果是無效索引則不處理问窃,意思就是沒有hash沖突的情況下則不進(jìn)一步處理,否則需要獲取之前的沖突的key
if (slotValue <= invalidIndex || slotValue > this.indexHeader.getIndexCount()
|| this.indexHeader.getIndexCount() <= 1) {
} else {
//迭代獲取沖突的消息直到?jīng)]有沖突
for (int nextIndexToRead = slotValue; ; ) {
//獲取完畢泡躯,就結(jié)束
if (phyOffsets.size() >= maxNum) {
break;
}
//計算index結(jié)構(gòu)的偏移量
int absIndexPos =
IndexHeader.INDEX_HEADER_SIZE + this.hashSlotNum * hashSlotSize
+ nextIndexToRead * indexSize;
//獲取key的hash值
int keyHashRead = this.mappedByteBuffer.getInt(absIndexPos);
//獲取消息的物理偏移量
long phyOffsetRead = this.mappedByteBuffer.getLong(absIndexPos + 4);
//獲取時間位移
long timeDiff = (long) this.mappedByteBuffer.getInt(absIndexPos + 4 + 8);
//獲取槽位沖突的上一個key的index信息
int prevIndexRead = this.mappedByteBuffer.getInt(absIndexPos + 4 + 8 + 4);
//如果時間偏移小于0丽焊,則進(jìn)行處理
if (timeDiff < 0) {
break;
}
timeDiff *= 1000L;
//計算消息的存儲時間
long timeRead = this.indexHeader.getBeginTimestamp() + timeDiff;
//檢查消息是否符合
boolean timeMatched = (timeRead >= begin) && (timeRead <= end);
//符合條件的消息的 物理偏移量 添加到結(jié)果集中
if (keyHash == keyHashRead && timeMatched) {
phyOffsets.add(phyOffsetRead);
}
//如果槽位沖突的上一個key的index信息不合法咕别,則直接跳過,否則處理沖突的key
if (prevIndexRead <= invalidIndex
|| prevIndexRead > this.indexHeader.getIndexCount()
|| prevIndexRead == nextIndexToRead || timeRead < begin) {
break;
}
nextIndexToRead = prevIndexRead;
}
}
} catch (Exception e) {
log.error("selectPhyOffset exception ", e);
} finally {
if (fileLock != null) {
try {
fileLock.release();
} catch (IOException e) {
log.error("Failed to release the lock", e);
}
}
this.mappedFile.release();
}
}
}
操作IndexFile文件集合的IndexService
?IndexService
是對多個IndexFile
類的一種封裝雌贱。也是IndexFile文件最外層的操作類偿短。這個類的很多方法和CommitLog文件相關(guān)的CommitLog
類以及ConsumeQueue文件相關(guān)的ConsumeQueue
類相似∥舳海可以看看前面的兩篇文章,分別分析這兩個類:
?這里對于文件的加載,創(chuàng)建和刪除邏輯就不進(jìn)行分析段只,主要看創(chuàng)建消息的索引的方法,和根據(jù)消息以及時間范圍查詢消息集合的方法
字段屬性
?IndexService
中的字段赞枕,主要是設(shè)置單個IndexFile文件中的hash槽和index鏈表長度相關(guān)的
//嘗試創(chuàng)建IndexFile的最大次數(shù)
private static final int MAX_TRY_IDX_CREATE = 3;
//消息存儲的操作類
private final DefaultMessageStore defaultMessageStore;
//hash槽合數(shù)
private final int hashSlotNum;
//index索引鏈表個數(shù)
private final int indexNum;
//存儲的路徑
private final String storePath;
//IndexFile的集合
private final ArrayList<IndexFile> indexFileList = new ArrayList<IndexFile>();
//讀寫鎖
private final ReadWriteLock readWriteLock = new ReentrantReadWriteLock();
內(nèi)部方法
構(gòu)造方法
public IndexService(final DefaultMessageStore store) {
this.defaultMessageStore = store;
//獲取默認(rèn)構(gòu)建的索引個數(shù) 默認(rèn)是的 500w個
this.hashSlotNum = store.getMessageStoreConfig().getMaxHashSlotNum();
//設(shè)置索引的個數(shù) 默認(rèn)是 5000000 * 4 也就是2000w個
this.indexNum = store.getMessageStoreConfig().getMaxIndexNum();
//存儲的路徑
this.storePath =
StorePathConfigHelper.getStorePathIndex(store.getMessageStoreConfig().getStorePathRootDir());
}
?這里兩個參數(shù)都是可以通過配置來設(shè)置
參數(shù) | 含義 |
---|---|
maxHashSlotNum | IndexFile的hash槽數(shù)量,默認(rèn)500w |
maxIndexNum | IndexFile的index鏈長度谍椅,默認(rèn)2000w |
創(chuàng)建消息索引和保存的buildIndex
?buildIndex
方法的邏輯比較簡單古话。就是根據(jù)請求的中的消息的key和topic來構(gòu)建存儲的key結(jié)構(gòu)。然后調(diào)用IndexFile
類中的方法陪踩。其中對于事務(wù)消息的回滾類型的消息不進(jìn)行記錄。
public void buildIndex(DispatchRequest req) {
//嘗試獲取和創(chuàng)建 IndexFile 最大嘗試次數(shù)為3 次
IndexFile indexFile = retryGetAndCreateIndexFile();
if (indexFile != null) {
long endPhyOffset = indexFile.getEndPhyOffset();
DispatchRequest msg = req;
//獲取消息轉(zhuǎn)存請求中消息的 topic 和 key
String topic = msg.getTopic();
String keys = msg.getKeys();
//如果消息的CommitLog的物理偏移量 < IndexFile記錄的最后一個消息物理結(jié)束偏移量摘完,則表示消息已經(jīng)記錄了
if (msg.getCommitLogOffset() < endPhyOffset) {
return;
}
//獲取消息的類型,如果是事務(wù)消息的回滾類型的消息孝治,則直接返回,不進(jìn)行記錄
final int tranType = MessageSysFlag.getTransactionValue(msg.getSysFlag());
switch (tranType) {
case MessageSysFlag.TRANSACTION_NOT_TYPE:
case MessageSysFlag.TRANSACTION_PREPARED_TYPE:
case MessageSysFlag.TRANSACTION_COMMIT_TYPE:
break;
case MessageSysFlag.TRANSACTION_ROLLBACK_TYPE:
return;
}
if (req.getUniqKey() != null) {
//保存對應(yīng)的key的 谈飒, key的格式為 topic + "#" + key
indexFile = putKey(indexFile, msg, buildKey(topic, req.getUniqKey()));
if (indexFile == null) {
log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
return;
}
}
if (keys != null && keys.length() > 0) {
String[] keyset = keys.split(MessageConst.KEY_SEPARATOR);
for (int i = 0; i < keyset.length; i++) {
String key = keyset[i];
if (key.length() > 0) {
indexFile = putKey(indexFile, msg, buildKey(topic, key));
if (indexFile == null) {
log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
return;
}
}
}
}
} else {
log.error("build index error, stop building index");
}
}
根據(jù)消息以及時間范圍查詢消息集合的queryOffset
?queryOffset
方法也比較簡單杭措,先根據(jù)傳入的落盤時間區(qū)間段,獲取合適的IndexFile文件手素,然后調(diào)用IndexFile
類從文件中根據(jù)消息的key和topic獲取消息的物理偏移量集合
public QueryOffsetResult queryOffset(String topic, String key, int maxNum, long begin, long end) {
List<Long> phyOffsets = new ArrayList<Long>(maxNum);
long indexLastUpdateTimestamp = 0;
long indexLastUpdatePhyoffset = 0;
//比較此次要獲取的 最大數(shù)量 和 配置的 maxMsgsNumBatch 參數(shù)瘩蚪。 取最大值
maxNum = Math.min(maxNum, this.defaultMessageStore.getMessageStoreConfig().getMaxMsgsNumBatch());
try {
this.readWriteLock.readLock().lock();
//indexFile 不為空 則迭代indexFile 集合
if (!this.indexFileList.isEmpty()) {
for (int i = this.indexFileList.size(); i > 0; i--) {
// 獲取IndexFile
IndexFile f = this.indexFileList.get(i - 1);
boolean lastFile = i == this.indexFileList.size();
//如果是最后一個IndexFile,則記錄對應(yīng)的 最后記錄時間 和 最大偏移量
if (lastFile) {
indexLastUpdateTimestamp = f.getEndTimestamp();
indexLastUpdatePhyoffset = f.getEndPhyOffset();
}
/**
* 檢查時間是不是符合 疹瘦,
* 1. 開始時間和結(jié)束 時間在 IndexFile 頭文件記錄的beginTimestamp 和endTimestamp 中
* 2. 開始時間 在 beginTimestamp 和endTimestamp 中
* 3. 結(jié)束時間 在 beginTimestamp 和endTimestamp 中
*/
if (f.isTimeMatched(begin, end)) {
//獲取符合條件的key的物理偏移量
f.selectPhyOffset(phyOffsets, buildKey(topic, key), maxNum, begin, end, lastFile);
}
if (f.getBeginTimestamp() < begin) {
break;
}
if (phyOffsets.size() >= maxNum) {
break;
}
}
}
} catch (Exception e) {
log.error("queryMsg exception", e);
} finally {
this.readWriteLock.readLock().unlock();
}
return new QueryOffsetResult(phyOffsets, indexLastUpdateTimestamp, indexLastUpdatePhyoffset);
}