Create "replication and recovery" section in alpha release notes.
authorRobert Haas
Wed, 9 Mar 2011 01:55:29 +0000 (20:55 -0500)
committerRobert Haas
Wed, 9 Mar 2011 01:55:29 +0000 (20:55 -0500)
doc/src/sgml/release-9.1.sgml

index 6682106820c1e1f34a19d50a36b0ef3567d44552..2ea0fd7e21a27664dff523baf690497de1f6ad20 100644 (file)
   
   
     Changes
+
+    
+      Replication and Recovery
+      
+
+       
+        
+         Support named restore points
+        
+        
+         Named restore points can be created using a new server function,
+         pg_create_restore_point.  A new recovery.conf parameter,
+         recovery_target_name, allows recovery to stop at a named restore
+         point.
+        
+       
+
+       
+        
+         Add new recovery.conf parameter, pause_at_recovery_target,
+         which defaults to on
+        
+        
+         This is a behavior change from previous releases, which entered normal
+         running upon reaching the recovery target.
+        
+       
+
+       
+        
+         Add pg_is_xlog_replay_paused, pg_xlog_replay_pause, and
+         pg_xlog_replay_resume functions
+        
+       
+
+       
+        
+         Allow standby servers to send information on running
+         transactions back to the master
+        
+        
+         When enabled, this prevents most recovery conflicts on the slave,
+         but may cause MVCC bloat on the master.
+        
+       
+
+       
+        
+         Support streaming base backups
+        
+        
+         A new client, pg_basebackup, can be used to perform a streaming base
+         backup.
+        
+       
+
+      
+    
+
     
       SQL Features
       
         
        
 
-       
-        
-         Add new recovery.conf parameter, pause_at_recovery_target,
-         which defaults to on.
-        
-        
-         This is a behavior change from previous releases, which entered normal
-         running upon reaching the recovery target.
-        
-       
-
-       
-        
-         Add new recovery.conf parameter, recovery_target_name,
-         allowing recovery to proceed to a named restore point
-        
-        
-         Named restore points can be created using a new server function,
-         pg_create_restore_point.
-        
-       
-
       
     
     
         
        
 
-       
-        
-         Allow standby servers to send information on running
-         transactions back to the master
-        
-        
-         When enabled, this prevents most recovery conflicts on the slave,
-         but may cause MVCC bloat on the master.
-        
-       
-
       
     
     
         
        
 
-       
-        
-         Add pg_is_xlog_replay_paused, pg_xlog_replay_pause, and
-         pg_xlog_replay_resume functions.
-        
-       
-
        
         
          Change pg_last_xlog_receive_location not to move
         
        
 
-       
-        
-         Support streaming base backups.
-        
-        
-         A new client, pg_basebackup, can be used to perform a streaming base
-         backup.
-        
-       
-
        
         
          Add a directory output format to pg_dump