1
我正在測試Postgres-XL 9.5r1.2
。我使用gtm
,coord1
,datanode1
,datanode2
構建了一個羣集。Postgres-XL發生錯誤:已達到準備交易的最大數量
我用pgbench
下面的命令來測試其性能:
pgbench -h db -U postgres -i -s 100 testdb;
pgbench -h db -U postgres -c 70 -t 40 -r testdb
在測試結果,下面的錯誤發生多次
Client NN aborted in state 13: ERROR: maximum number of prepared transactions reached
HINT: Increase max_prepared_transactions (currently 10).
所以,看來我需要調整max_prepared_transactions
。
我的問題是,我應該在哪個主機上調整postgresql.conf
? coord1
? datanode1
和datanode2
?還是還有什麼?