精品色哟哟视频在线观看,小b艹干翻爽入大鸡视频,大奶女上位视频91蝌蚪,91自拍偷拍视频第一页

您的位置:首頁(yè) >觀察 > 正文

天天觀察:PostgreSQL的clog屬于日志還是數(shù)據(jù),需要遵守write-WAL-before-data嗎?


(資料圖片僅供參考)

總結(jié)

從原理上來(lái)看,MVCC需要給定事務(wù)ID后,能查詢(xún)到事務(wù)的狀態(tài)。

在PG中事務(wù)狀態(tài)可以從幾個(gè)路徑獲取:

在快照中查詢(xún)(活躍事務(wù))在元組頭的狀態(tài)為查詢(xún)(不活躍事務(wù))在CLOG中查詢(xún)(不活躍事務(wù))

如果不看實(shí)現(xiàn)只看概念,不活躍事務(wù)提交狀態(tài)也可以在XLOG中查詢(xún),CLOG可以視作一種XLOG commit/rollback日志的緩存、映射,一種事務(wù)提交狀態(tài)的快速查詢(xún)方式。

所以在write-WAL-before-data中,CLOG也會(huì)按照data來(lái)處理,只有XLOG屬于WAL。

Postgresql中clog寫(xiě)盤(pán)實(shí)現(xiàn)SlruPhysicalWritePage

postgresql中clog使用SLRU機(jī)制讀寫(xiě),在Slru寫(xiě)盤(pán)前,會(huì)有保證xlog先寫(xiě)的機(jī)制:

group_lsn表示32個(gè)事務(wù)一組中最大的日志序列號(hào)(LSN)。group_lsn主要用于事務(wù)提交非同步落盤(pán)的場(chǎng)景。
static boolSlruPhysicalWritePage(SlruCtl ctl, int pageno, int slotno, SlruWriteAll fdata){...if (shared->group_lsn != NULL){/* * We must determine the largest async-commit LSN for the page. This * is a bit tedious, but since this entire function is a slow path * anyway, it seems better to do this here than to maintain a per-page * LSN variable (which"d need an extra comparison in the * transaction-commit path). */XLogRecPtrmax_lsn;intlsnindex,lsnoff;lsnindex = slotno * shared->lsn_groups_per_page;max_lsn = shared->group_lsn[lsnindex++];for (lsnoff = 1; lsnoff < shared->lsn_groups_per_page; lsnoff++){XLogRecPtrthis_lsn = shared->group_lsn[lsnindex++];if (max_lsn < this_lsn)max_lsn = this_lsn;    <<<<<<<<<<<<<<<<<<<<<<<<< 找到最大的LSN}if (!XLogRecPtrIsInvalid(max_lsn)){/* * As noted above, elog(ERROR) is not acceptable here, so if * XLogFlush were to fail, we must PANIC.  This isn"t much of a * restriction because XLogFlush is just about all critical * section anyway, but let"s make sure. */START_CRIT_SECTION();XLogFlush(max_lsn);      <<<<<<<<<<<<<<<<<<<<<<<<< 先保證XLOG寫(xiě)到這個(gè)位點(diǎn)!END_CRIT_SECTION();}}  ...  if (pg_pwrite(fd, shared->page_buffer[slotno], BLCKSZ, offset) != BLCKSZ)  {    ...  }}

Postgresql中用戶(hù)數(shù)據(jù)寫(xiě)盤(pán)實(shí)現(xiàn)FlushBuffer

數(shù)據(jù)頁(yè)面同理,也是先找到頁(yè)面lsn,刷xlog,在寫(xiě)數(shù)據(jù)。

static voidFlushBuffer(BufferDesc *buf, SMgrRelation reln){...buf_state = LockBufHdr(buf);/* * Run PageGetLSN while holding header lock, since we don"t have the * buffer locked exclusively in all cases. */recptr = BufferGetLSN(buf);   <<<<<<<<<<<<<<<<<<<<<<<<< 找到頁(yè)面的LSN/* To check if block content changes while flushing. - vadim 01/17/97 */buf_state &= ~BM_JUST_DIRTIED;UnlockBufHdr(buf, buf_state);/* * Force XLOG flush up to buffer"s LSN.  This implements the basic WAL * rule that log updates must hit disk before any of the data-file changes * they describe do. * * However, this rule does not apply to unlogged relations, which will be * lost after a crash anyway.  Most unlogged relation pages do not bear * LSNs since we never emit WAL records for them, and therefore flushing * up through the buffer LSN would be useless, but harmless.  However, * GiST indexes use LSNs internally to track page-splits, and therefore * unlogged GiST pages bear "fake" LSNs generated by * GetFakeLSNForUnloggedRel.  It is unlikely but possible that the fake * LSN counter could advance past the WAL insertion point; and if it did * happen, attempting to flush WAL through that location would fail, with * disastrous system-wide consequences.  To make sure that can"t happen, * skip the flush if the buffer isn"t permanent. */if (buf_state & BM_PERMANENT)XLogFlush(recptr);         <<<<<<<<<<<<<<<<<<<<<<<<< 先保證XLOG寫(xiě)到這個(gè)位點(diǎn)!    ...smgrwrite(reln,  BufTagGetForkNum(&buf->tag),  buf->tag.blockNum,  bufToWrite,  false);  ...}

關(guān)鍵詞 PostgreSQL

熱門(mén)資訊

圖片新聞

金阳县| 泸水县| 东明县| 枝江市| 泗水县| 红桥区| 金堂县| 寿阳县| 宜丰县| 曲阳县| 吉安县| 兴文县| 丹凤县| 靖州| 吉木萨尔县| 海城市| 青浦区| 连云港市| 阜南县| 余干县| 兰西县| 红桥区| 那曲县| 永州市| 龙江县| 龙里县| 济南市| 台北市| 河南省| 岳池县| 同心县| 章丘市| 长宁县| 甘肃省| 安塞县| 克什克腾旗| 德庆县| 新野县| 莱阳市| 罗源县| 中阳县|