溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PostgreSQL DBA(96) - System Conf(client_min_messages)

發(fā)布時(shí)間:2020-08-11 09:48:35 來源:ITPUB博客 閱讀:220 作者:husthxd 欄目:關(guān)系型數(shù)據(jù)庫

PostgreSQL提供了參數(shù)client_min_messages用以控制返回給客戶的消息級別,不同的級別返回的消息大小不同,默認(rèn)為NOTICE。在通常情況下,如果客戶端執(zhí)行的SQL語句不頻繁的話,使用默認(rèn)參數(shù)即可,但如果客戶端執(zhí)行大量的SQL,設(shè)置該參數(shù)為較高級別就顯得有意義了:可以減少消息的大小從而降低網(wǎng)絡(luò)負(fù)載,提升吞吐。

參數(shù)簡介
下面創(chuàng)建一個存儲過程,raise notice顯示通知信息

[local]:5432 pg12@testdb=# CREATE OR REPLACE FUNCTION foo() RETURNS void AS
pg12@testdb-# $$
pg12@testdb$#         BEGIN
pg12@testdb$#                 RAISE NOTICE 'some message';
pg12@testdb$#                 RETURN;
pg12@testdb$#         END;
pg12@testdb$# $$ LANGUAGE 'plpgsql';
CREATE FUNCTION
Time: 389.227 ms
[local]:5432 pg12@testdb=#

執(zhí)行存儲過程

[local]:5432 pg12@testdb=# show client_min_messages;
 client_min_messages 
---------------------
 notice
(1 row)
Time: 0.589 ms
[local]:5432 pg12@testdb=# select foo();
NOTICE:  some message
 foo 
-----
(1 row)
Time: 26.838 ms
[local]:5432 pg12@testdb=# set client_min_messages='ERROR';
SET
Time: 0.361 ms
[local]:5432 pg12@testdb=# select foo();
 foo 
-----
(1 row)
Time: 1.638 ms
[local]:5432 pg12@testdb=#

在client_min_messages設(shè)置為ERROR后,不再顯示NOTICE通知信息。
下面使用benchmarksql壓測工具測試該參數(shù)從NOTICE修改為ERROR后的性能變化。
1.NOTICE

[xdb@localhost run]$ ./runBenchmark.sh props.pg
2019-09-25 12:15:25,434  INFO - Term-00, 
2019-09-25 12:15:25,435  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:15:25,435  INFO - Term-00,      BenchmarkSQL v4.1.1
2019-09-25 12:15:25,435  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:15:25,435  INFO - Term-00,  (c) 2003, Raul Barbosa
2019-09-25 12:15:25,435  INFO - Term-00,  (c) 2004-2016, Denis Lussier
2019-09-25 12:15:25,435  INFO - Term-00,  (c) 2016, Jan Wieck
2019-09-25 12:15:25,435  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:15:25,435  INFO - Term-00, 
2019-09-25 12:15:25,435  INFO - Term-00, driver=org.postgresql.Driver
2019-09-25 12:15:25,435  INFO - Term-00, conn=jdbc:postgresql://192.168.26.28:5432/benchmarkdb
2019-09-25 12:15:25,435  INFO - Term-00, user=pg12
2019-09-25 12:15:25,435  INFO - Term-00, 
2019-09-25 12:15:25,435  INFO - Term-00, warehouses=32
2019-09-25 12:15:25,435  INFO - Term-00, terminals=20
2019-09-25 12:15:25,435  INFO - Term-00, runMins=5
2019-09-25 12:15:25,435  INFO - Term-00, limitTxnsPerMin=0
2019-09-25 12:15:25,435  INFO - Term-00, 
2019-09-25 12:15:25,435  INFO - Term-00, newOrderWeight=45
2019-09-25 12:15:25,435  INFO - Term-00, paymentWeight=43
2019-09-25 12:15:25,435  INFO - Term-00, orderStatusWeight=4       Term-00, Running Average 
2019-09-25 12:20:25,706  INFO - Term-00, 52216    Memory Usage: 26MB / 37MB                 
2019-09-25 12:20:25,706  INFO - Term-00,                                                    
2019-09-25 12:20:25,707  INFO - Term-00, Measured tpmC (NewOrders) = 7448.89                
2019-09-25 12:20:25,707  INFO - Term-00, Measured tpmTOTAL = 16626.58                       
2019-09-25 12:20:25,707  INFO - Term-00, Session Start     = 2019-09-25 12:15:25
2019-09-25 12:20:25,707  INFO - Term-00, Session End       = 2019-09-25 12:20:25
2019-09-25 12:20:25,707  INFO - Term-00, Transaction Count = 83171
[xdb@localhost run]$ 
[xdb@localhost run]$

2.ERROR

[xdb@localhost run]$ ./runBenchmark.sh props.pg
2019-09-25 12:22:57,954  INFO - Term-00, 
2019-09-25 12:22:57,954  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:22:57,954  INFO - Term-00,      BenchmarkSQL v4.1.1
2019-09-25 12:22:57,954  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:22:57,954  INFO - Term-00,  (c) 2003, Raul Barbosa
2019-09-25 12:22:57,955  INFO - Term-00,  (c) 2004-2016, Denis Lussier
2019-09-25 12:22:57,955  INFO - Term-00,  (c) 2016, Jan Wieck
2019-09-25 12:22:57,955  INFO - Term-00, +-------------------------------------------------------------+
2019-09-25 12:22:57,955  INFO - Term-00, 
2019-09-25 12:22:57,955  INFO - Term-00, driver=org.postgresql.Driver
2019-09-25 12:22:57,955  INFO - Term-00, conn=jdbc:postgresql://192.168.26.28:5432/benchmarkdb
2019-09-25 12:22:57,955  INFO - Term-00, user=pg12
2019-09-25 12:22:57,955  INFO - Term-00, 
2019-09-25 12:22:57,955  INFO - Term-00, warehouses=32
2019-09-25 12:22:57,955  INFO - Term-00, terminals=20
2019-09-25 12:22:57,955  INFO - Term-00, runMins=5
2019-09-25 12:22:57,955  INFO - Term-00, limitTxnsPerMin=0
2019-09-25 12:22:57,955  INFO - Term-00, 
2019-09-25 12:22:57,955  INFO - Term-00, newOrderWeight=45
2019-09-25 12:22:57,955  INFO - Term-00, paymentWeight=43
2019-09-25 12:22:57,955  INFO - Term-00, orderStatusWeight=4       Term-00, Running Average 
2019-09-25 12:27:58,267  INFO - Term-00, 79156    Memory Usage: 18MB / 37MB                 
2019-09-25 12:27:58,267  INFO - Term-00,                                                    
2019-09-25 12:27:58,267  INFO - Term-00, Measured tpmC (NewOrders) = 7815.72                
2019-09-25 12:27:58,267  INFO - Term-00, Measured tpmTOTAL = 17440.12                       
2019-09-25 12:27:58,267  INFO - Term-00, Session Start     = 2019-09-25 12:22:58
2019-09-25 12:27:58,267  INFO - Term-00, Session End       = 2019-09-25 12:27:58
2019-09-25 12:27:58,268  INFO - Term-00, Transaction Count = 87254
[xdb@localhost run]$

TPMC 7815 vs 7448,提升比例為4.9%

為免系統(tǒng)隨機(jī)擾動導(dǎo)致的誤差,重新測試了一遍

-- NONE
2019-09-25 14:53:05,384  INFO - Term-00, Measured tpmC (NewOrders) = 7168.43                
2019-09-25 14:53:05,384  INFO - Term-00, Measured tpmTOTAL = 15890.5                        
2019-09-25 14:53:05,384  INFO - Term-00, Session Start     = 2019-09-25 14:48:05
2019-09-25 14:53:05,385  INFO - Term-00, Session End       = 2019-09-25 14:53:05
2019-09-25 14:53:05,385  INFO - Term-00, Transaction Count = 79491
[xdb@localhost run]$ 
-- vacuum full;
-- client_min_messages=error
2019-09-25 14:44:29,101  INFO - Term-00, Measured tpmC (NewOrders) = 7239.02                
2019-09-25 14:44:29,101  INFO - Term-00, Measured tpmTOTAL = 16079.06                       
2019-09-25 14:44:29,101  INFO - Term-00, Session Start     = 2019-09-25 14:39:28
2019-09-25 14:44:29,102  INFO - Term-00, Session End       = 2019-09-25 14:44:29
2019-09-25 14:44:29,102  INFO - Term-00, Transaction Count = 80434
-- vacuum full;
-- update_process_title=off
-- track_activities=off
2019-09-25 15:01:11,861  INFO - Term-00, Measured tpmC (NewOrders) = 7253.43                
2019-09-25 15:01:11,861  INFO - Term-00, Measured tpmTOTAL = 16111.73                       
2019-09-25 15:01:11,862  INFO - Term-00, Session Start     = 2019-09-25 14:56:11
2019-09-25 15:01:11,862  INFO - Term-00, Session End       = 2019-09-25 15:01:11
2019-09-25 15:01:11,862  INFO - Term-00, Transaction Count = 80584
-- vacuum full;
-- client_min_messages=error
-- update_process_title=off
-- track_activities=off
2019-09-25 15:08:46,923  INFO - Term-00, Measured tpmC (NewOrders) = 7194.55                
2019-09-25 15:08:46,923  INFO - Term-00, Measured tpmTOTAL = 16059.38                       
2019-09-25 15:08:46,923  INFO - Term-00, Session Start     = 2019-09-25 15:03:46
2019-09-25 15:08:46,923  INFO - Term-00, Session End       = 2019-09-25 15:08:46
2019-09-25 15:08:46,923  INFO - Term-00, Transaction Count = 80350

似乎沒有什么效果。

參考資料
Reducing log messages on the client

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI