本節(jié)通過源碼解釋了snapshot中的xmax的具體含義.
成都創(chuàng)新互聯(lián)公司專業(yè)IDC數(shù)據(jù)服務器托管提供商,專業(yè)提供成都服務器托管,服務器租用,成都服務器托管,成都服務器托管,成都多線服務器托管等服務器托管服務。
上一節(jié)提到PostgreSQL通過txid_current_snapshot()函數(shù)獲取快照,格式為xmin : xmax : xip_list,其中xmax應理解為最后已完結(jié)事務(COMMITTED/ABORTED)的txid + 1。
詳見以下PG源碼:
Snapshot
GetSnapshotData(Snapshot snapshot)
{
/* xmax is always latestCompletedXid + 1 */
xmax = ShmemVariableCache->latestCompletedXid;
Assert(TransactionIdIsNormal(xmax));
TransactionIdAdvance(xmax);
/* initialize xmin calculation with xmax */
globalxmin = xmin = xmax;
...
snapshot->xmax = xmax;
...
return snapshot;
}
xmax is always latestCompletedXid + 1,最后已完結(jié)事務(COMMITTED/ABORTED)的txid + 1(ShmemVariableCache->latestCompletedXid + 1)。
PostgreSQL Source Code