7128 /*
7129 * Let postmaster know we've started redo now, so that it can launch
7130 * checkpointer to perform restartpoints. We don't bother during
7131 * crash recovery as restartpoints can only be performed during
7132 * archive recovery. And we'd like to keep crash recovery simple, to
7133 * avoid introducing bugs that could affect you when recovering after
7134 * crash.
7135 *
7136 * After this point, we can no longer assume that we're the only
7137 * process in addition to postmaster! Also, fsync requests are
7138 * subsequently to be handled by the checkpointer, not locally.
7139 */
7140 if (ArchiveRecoveryRequested && IsUnderPostmaster)
7141 {
7142 PublishStartupProcessInformation();
7143 EnableSyncRequestForwarding();
7144 SendPostmasterSignal(PMSIGNAL_RECOVERY_STARTED);
7145 bgwriterLaunched = true;
7146 }
Thanks
Ray