+ Asynchronous Archiving
+
+ The archive-async option offloads WAL archiving to a separate process to improve throughput. WAL segments are temporarily stored in a local queue on the database server, specified by the spool-path option, before being transferred to the repository on the backup server.
+
+ The spool directory is created to hold the WAL segments while they are waiting to be (optionally) compressed and transferred.
+
+
+ Create the spool directory
+
+
+ mkdir -m 750 {[spool-path]}
+
+
+ chown postgres:postgres {[spool-path]}
+
+
+
+ The spool path must be configured and asynchronous archiving enabled.
+
+
+ Configure the spool path and asynchronous archiving
+
+ {[spool-path]}
+ y
+
+
+ The check command ensures that asynchronous archiving is working.
+
+
+ Check asynchronous archiving
+
+
+ {[project-exe]} {[dash]}-stanza={[postgres-cluster-demo]} {[dash]}-log-level-console=info check
+ WAL segment
+
+
+
@@ -1789,18 +1816,4 @@
-
-