應用PMDK修改WAL操做使之適配持久化內存

應用PMDK修改WAL操做使之適配持久化內存

這幾個補丁可以經過使用PMDK對存儲在持久化內存PMEM上的WAL日誌進行讀寫。PMEM是下一代存儲介質,具備一系列特性:快速、字節尋址、非易失。node

Pgbench是PG的通用benchmark,使用benchmark進行測試,這些補丁修改後的PG比原生PG性能提高5%。使用咱們的insert benchmark,可以比原生PG快90%。下面進行詳細描述。linux

這個e-mail包括如下幾部分:sql

A)PMDKapp

B)補丁socket

C)測試方法及結果async

PMDK

PMDK提供函數使應用可以直接訪問PMEM,無需經過內核做爲內存。API包括:ide

1)open PMEM文件的API、create PMEM文件的API、map PMEM文件到虛擬地址的API函數

    PMDK利用DAX文件系統特性提供這些API函數。DAX文件系統對PMEM敏感,容許直接訪問PMEM,而不使用內核的page cache。可使用標準的mmap函數將DAX文件系統中的文件映射到內存。更進一步說,經過將PMEM中的文件映射到虛擬地址,應用可使用CPU的 load/store指令替代read/write訪問PMEM。post

2)讀寫 PMEM文件的API性能

PMDK提供API:相似memcpy()函數,經過single instruction、multiple data instruction、NT storage instruction 將數據拷貝到PMEM。這些指令可以提高拷貝性能。所以這些API比read/write更快。API參考:

[1] http://pmem.io/pmdk/

[2]https://www.usenix.org/system/files/login/articles/login_summer17_07_rudoff.pdf

[3] SIMD: 對加載數據進行操做的單指令。若是SIMD系統一次加載8字節數據到寄存器,那麼到PMEM的存儲操做會同時對全部8字節值進行。

[4] NT store instructions: 該指令跳過CPU cache,所以使用該指令不須要flush。

補丁

補丁修改:

0001-Add-configure-option-for-PMDK.patch:添加--with-libpmem配置,經過pmdk庫執行IO

0002-Read-write-WAL-files-using-PMDK.patch:

使用PMDK函數對WAL進行IO操做

wal_sync_method參數增長pmem-drain,用於標明PMEM上wal sync方式。

0003-Walreceiver-WAL-IO-using-PMDK.patch:

    對於備機的walreciver進程,使用PMDK寫日誌。

執行方式及結果

   環境:

  Server: HP ProLiant DL360 Gen9

CPU:    Xeon E5-2667 v4 (3.20GHz); 2 processors(without HT)

DRAM:   DDR4-2400; 32 GiB/processor

        (8GiB/socket x 4 sockets/processor) x 2 processors

NVDIMM: DDR4-2133; 32 GiB/processor

        (8GiB/socket x 4 sockets/processor) x 2 processors

HDD:    Seagate Constellation2 2.5inch SATA 3.0. 6Gb/s 1TB 7200rpm x 1

OS:     Ubuntu 16.04, linux-4.12

DAX FS: ext4

NVML:   master(at)Aug 30, 2017

PostgreSQL: master

Note: I bound the postgres processes to one NUMA node, and the benchmarks to other NUMA node.

 

1)配置pmem,將之做爲一個塊設備

    # ndctl list

# ndctl create-namespace -f -e namespace0.0 --mode=memory -M dev

2)在pmem上建立一個文件系統,以DAX方式掛載

    # mkfs.ext4 /dev/pmem0

# mount -t ext4 -o dax /dev/pmem0 /mnt/pmem0

3)設置PMEM_IS_PMEM_FORCE,表示WAL文件存放在PMEM上

   注意,沒有設置這個環境變量,PG的進程啓動不起來

   # export PMEM_IS_PMEM_FORCE=1

4)安裝PG

   安裝Pg時有3個重要注意事項:

a. Configure時添加--with-libpmem:"./configure --with-libpmem"

b. 將WAL目錄存放到PMEM上

c. 將wal_sync_method參數由fdatasync改成pmem_drain

   具體操做:

# cd /path/to/[PG_source dir]

# ./configure --with-libpmem

# make && make install

# initdb /path/to/PG_DATA -X /mnt/pmem0/path/to/[PG_WAL dir]

# cat /path/to/PG_DATA/postgresql.conf | sed -e s/#wal_sync_method\ =\

fsync/wal_sync_method\ =\ pmem_drain/ > /path/to/PG_DATA/postgresql.conf.

tmp

# mv /path/to/PG_DATA/postgresql.conf.tmp /path/to/PG_DATA/postgresql.conf

# pg_ctl start -D /path/to/PG_DATA

# created [DB_NAME]

5)執行2個benchmark,一個是pgbench,一個是my insert benchmark

  Pgbench:

      # numactl -N 1 pgbech -c 32 -j 8 -T 120 -M prepared [DB_NAME]

      執行pgbench三次的平均值:

      wal_sync_method=fdatasync:   tps = 43,179

wal_sync_method=pmem_drain:  tps = 45,254

  pclinet_thread:my insert benchmark

      準備:

      CREATE TABLE [TABLE_NAME] (id int8, value text);

ALTER TABLE [TABLE_NAME] ALTER value SET STORAGE external;

PREPARE insert_sql (int8) AS INSERT INTO %s (id, value) values ($1, '

[1K_data]');

執行:

BEGIN; EXECUTE insert_sql(%lld); COMMIT;

Note: I ran this quer 5M times with 32 threads.

 

# ./pclient_thread

Invalid Arguments:

Usage: ./pclient_thread [The number of threads] [The number to insert

tuples] [data size(KB)]

# numactl -N 1 ./pclient_thread 32 5242880 1

 

測試三次的平均值:

wal_sync_method=fdatasync:   tps =  67,780

wal_sync_method=pmem_drain:  tps = 131,962

 

Attachment

Content-Type

Size

0001-Add-configure-option-for-PMDK.patch

application/octet-stream

5.1 KB

0002-Read-write-WAL-files-using-PMDK.patch

application/octet-stream

46.9 KB

0003-Walreceiver-WAL-IO-using-PMDK.patch

application/octet-stream

4.8 KB

 

 

 

 

 

 

原文

https://www.postgresql.org/message-id/C20D38E97BCB33DAD59E3A1%40lab.ntt.co.jp

相關文章
相關標籤/搜索