Hello. At Thu, 12 Dec 2019 22:50:20 +0000, "Bossart, Nathan" <bossa...@amazon.com> wrote in > Hi hackers, > > I believe I've uncovered a bug that may cause archive status ".ready" > files to be created too early, which in turn may cause an incorrect > version of the corresponding WAL segment to be archived. > > The crux of the issue seems to be that XLogWrite() does not wait for > the entire record to be written to disk before creating the ".ready" > file. Instead, it just waits for the last page of the segment to be > written before notifying the archiver. If PostgreSQL crashes before > it is able to write the rest of the record, it will end up reusing the > ".ready" segment at the end of crash recovery. In the meantime, the > archiver process may have already processed the old version of the > segment.
Year, that can happen if the server restarted after the crash. > This issue seems to most often manifest as WAL corruption on standby > servers after the primary server has crashed because it ran out of > disk space. In the first place, it's quite bad to set restart_after_crash to on, or just restart crashed master in replication set. The standby can be incosistent at the time of master crash, so it should be fixed using pg_rewind or should be recreated from a base backup. Even without that archiving behavior, a standby may receive wal bytes inconsistent to the bytes from the same master just before crash. It is not limited to segment boundary. It can happen on every block boundary and could happen everywhere with more complecated steps. What you are calling as a "problem" seems coming from allowing the restart_after_crash behavior. On the other hand, as recommended in the documentation, archive_command can refuse overwriting of the same segment, but we don't impose to do that. As the result the patch doesn't seem to save anything than setting up and operating correctly. > Another thing I am exploring is whether a crash in between writing the > last page of a segment and creating the ".ready" file could cause the > archiver process to skip processing it altogether. In the scenario I > mention earlier, the server seems to recreate the ".ready" file since > it rewrites a portion of the segment. However, if a WAL record fits > perfectly into the last section of the segment, I am not sure whether > the ".ready" file would be created after restart. Why that segment needs .ready after restart, even though nothing could be written to the old segment? > I am admittedly in the early stages of working on this problem, but I > thought it would be worth reporting to the community early on in case > anyone has any thoughts on or past experiences with this issue. regards. -- Kyotaro Horiguchi NTT Open Source Software Center