PostgreSQL WAL日志名解析

日志名组成

在PG中日志名是一串数字,刚开始接触PG的朋友对名字都有些疑惑,在PG中日志名是由16进制命名总共24个字符由三部分组成:

  1. 0000000100000001000000C4
  2. 00000001 //时间线ID
  3. 00000001 //LogId
  4. 000000C4 //logSeg

如何计算?

我们知道由三部分组成,那么又是如何计算呢?公式如下:

  1. WAL segment file name = timelineId +(uint32)LSN1 / (16M 256 + (uint32)(LSN 1 / 16M) % 256

我们算一个试一试.查看当前LSN位置

  1. postgres=# select pg_current_wal_lsn();
  2. pg_current_wal_lsn
  3. --------------------
  4. 1/C469AA30
  5. (1 row)

这里的LSN是’ 1/C469AA30’ 我们转换为十进制数:

  1. postgres=# select x'1C469AA30'::bigint;
  2. int8
  3. ------------
  4. 7590226480
  5. (1 row)

利用公式计算:

  1. logSeg:
  2. postgres=# select ((7590226480 - 1) / (16 * 1024 * 1024 )) % 256 ;
  3. ?column?
  4. ----------
  5. 196
  6. (1 row)
  7. 196是十进制数 转换为16 进制为 c4
  8. postgres=# select to_hex(196);
  9. to_hex
  10. --------
  11. c4
  12. (1 row)
  13. LogId:
  14. postgres=# select ((7590226480 - 1) / (16::bigint * 1024::bigint * 1024::bigint * 256::bigint) :: int8);
  15. ?column?
  16. ----------
  17. 1
  18. (1 row)
  19. 得出的LogId等于1
  20. 时间线ID:
  21. postgres@coredumped ~ pg_controldata|grep TimeLine
  22. Latest checkpoint's TimeLineID: 1
  23. Latest checkpoint's PrevTimeLineID: 1

算出来的值与通过函数查询的一致:

  1. postgres=# select pg_walfile_name('1/C469AA30');
  2. pg_walfile_name
  3. --------------------------
  4. 0000000100000001000000C4
  5. (1 row)

通过源码分析

上述的公式也是在网站中看到,特意查看了下PG代码确认下正确性:

  1. // 这里是计算一个logSegNo
  2. #define XLByteToPrevSeg(xlrp, logSegNo) \
  3. logSegNo = ((xlrp) - 1) / XLogSegSize
  4. //XLOG_SEG_SIZE 定义
  5. #define XLOG_SEG_SIZE (16 * 1024 * 1024)
  6. //这块是拼文件名地方
  7. #define XLogFilePath(path, tli, logSegNo) \
  8. snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X", tli,
  9. ¦(uint32) ((logSegNo) / XLogSegmentsPerXLogId),
  10. ¦(uint32) ((logSegNo) % XLogSegmentsPerXLogId))
  11. LogIdlogSeg 分别是LogSegNoXLogSegmentsPerXLogId或者是对XLogSegmentsPerXLogId取模,那么XLogSegmentsPerXLogId又是什么呢?
  12. //看到XLogSegmentsPerXLogId的定义我们可以自己计算下
  13. #define XLogSegmentsPerXLogId (UINT64CONST(0x100000000) / XLOG_SEG_SIZE)
  14. postgres=# select x'100000000'::bigint / (16 * 1024 * 1024);
  15. ?column?
  16. ----------
  17. 256
  18. (1 row)
  19. 这个值就是256

总结

WAL日志命名感觉上并不像MySQL Binlog日志那么直观,有时候感觉会容易混乱,大家学习时可以多进行研究多做实验,这样对自己也是一种提高。

本站文章,未经作者同意,请勿转载,如需转载,请邮件customer@csudata.com.
0 评论  
添加一条新评论