如何运行选择查询以从Postgres hotstandby服务器读取?

时间:2018-11-30 14:17:31

标签: postgresql postgresql-9.3

我正在努力从postgres hoststandby复制从属服务器读取数据/运行选择查询。我遇到错误:

SQLSTATE[0A000]: Feature not supported: 7 
ERROR: cannot use serializable mode in a hot standby 
DETAIL: "default_transaction_isolation" is set to "serializable". 
HINT: You can use "SET default_transaction_isolation = 'repeatable read'" to change the default.

我已更改postgres.conf文件中的default_transaction_isolation ='可重复读取'。

postgres=# SHOW default_transaction_isolation;
 default_transaction_isolation
-------------------------------
 repeatable read
(1 row)

但是,当我尝试运行选择查询以读取数据时,仍然出现相同的错误。请帮忙。我想使用slave读取数据。

0 个答案:

没有答案