gpt4 book ai didi

postgresql - recovery.conf 在 PITR 之后没有更改为 recovery.done

转载 作者:行者123 更新时间:2023-11-29 13:13:09 39 4
gpt4 key购买 nike

recovery.conf 中,如果我们将 recovery_target_time 设置为 2018-09-07 03:25:46(无 EST)并重新启动 PostgreSQL,恢复。 conf 不会更改为 recovery.done

然而 PITR 是成功的,并且记录/表格仅在给定时间之前恢复。但随后数据库仍处于恢复模式,我无法修改数据。

在第二种情况下,如果我添加 EST 并重新启动 PostgreSQL,recovery.conf 会更改为 recovery.done,但一切都会恢复。我的意思是在 2018-09-07 03:25:46 之后添加的表/记录也被恢复。

其他信息:在 Linux 主机上进行。 postgresql.conf 中的 TimezoneUS/Eastern

postgresql.conf 配置了以下设置。其他选项被注释掉。

listen_addresses = '*'
port = 5432
max_connections = 100
shared_buffers = 128MB
dynamic_shared_memory_type = posix
wal_level = replica
archive_mode = on
archive_command = 'cp %p /archive/%f'
log_destination = 'stderr'
logging_collector =on
log_timezone = 'US/Eastern'
datestyle = 'iso, mdy'
timezone ='US/Eastern'
lc_messages = 'en_US.UTF-8'
lc_monetary ='en_US.UTF-8'
lc_numeric = 'en_US.UTF-8'
lc_time = 'en_US.UTF-8'
default_text_search_config = 'pg_catalog.english'

`recovery.conf' 启用了以下两个选项:

restore_command = 'cp /archive/%f %p'
recovery_target_time = '2018-09-07 03:25:46'


2018-09-07 03:35:57.745 EDT [8264] LOG: database system was interrupted; last known up at 2018-09-07 03:23:31 EDT
2018-09-07 03:35:59.593 EDT [8264] LOG: starting point-in-time recovery to 2018-09-07 03:25:46-04
2018-09-07 03:35:59.682 EDT [8264] LOG: restored log file "000000010000000000000003" from archive
2018-09-07 03:35:59.722 EDT [8264] LOG: redo starts at 0/3000028
2018-09-07 03:35:59.725 EDT [8264] LOG: consistent recovery state reached at 0/3000130
2018-09-07 03:35:59.725 EDT [8262] LOG: database system is ready to accept read only connections
2018-09-07 03:36:00.058 EDT [8264] LOG: restored log file "000000010000000000000004" from archive
2018-09-07 03:36:00.097 EDT [8264] LOG: recovery stopping before commit of transaction 562, time 2018-09-07 03:26:17.435255-04
2018-09-07 03:36:00.097 EDT [8264] LOG: recovery has paused
2018-09-07 03:36:00.097 EDT [8264] HINT: Execute pg_wal_replay_resume() to continue.
2018-09-07 03:36:54.138 EDT [8288] ERROR: cannot execute CREATE TABLE in a read-only transaction
2018-09-07 03:36:54.138 EDT [8288] STATEMENT: CREATE TABLE scale_data5 ( section NUMERIC NOT NULL, id1 NUMERIC NOT NULL, id2 NUMERIC NOT NULL );

最佳答案

如您所见,恢复在达到目标后暂停。

这是因为你有 hot_standby = on 并且你离开了 recovery_target_action在其默认值 pause

您必须在 recovery.conf 中添加以下内容:

recovery_target_action = promote

或者,您可以连接到正在恢复的服务器并手动完成恢复:

SELECT pg_wal_replay_resume();

要解开为什么添加时区会有所不同的谜团,请将日志中的时区 (EDT) 与您使用的时区 (EST) 进行比较。

您的数据库在东部夏令时运行,与 UTC 相差 -4 小时,而东部标准时间/strong> 偏移 -5 小时。

所以发生的事情是,通过使用“EST”,您实际上指定了一个对应于 2018-09-07 04:25:46 EDT 的恢复目标时间,它已经过了 WAL 的末尾,所以PostgreSQL 进行了完全恢复。

关于postgresql - recovery.conf 在 PITR 之后没有更改为 recovery.done,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52198557/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com