]> git.sur5r.net Git - bacula/bacula/blob - bacula/ReleaseNotes
f31e076058e708915e4a31d8198d0ab2414e967d
[bacula/bacula] / bacula / ReleaseNotes
1
2           Release Notes for Bacula 1.33.4
3
4   Bacula code: Total files = 306 Total lines = 91,112 (*.h *.c *.in)
5
6 Major Features:
7 - Data spooling which eliminates tape shoe-shine during Inc backups,         
8   and permits multiple simultaneous backups without interleaved blocks.
9 - Native Win32 client -- much faster and restores permissions correctly
10   (thanks to Christopher Hull)
11 - PostgreSQL database driver (thanks to Dan Langille).
12 - Polling of devices eliminating need to unmount and mount from
13   console.
14 - Improved Autochange support of Slots (update slots scan).
15 - Autochanger support for multiple drives (I think).
16 - New conio code to implement Console command line editing and history.
17 - JobDefs resource permits smaller .conf files for Director
18 - Access console lists for the Console
19 - Pool level overrides.
20 - Daemon statistics memory.
21 - Improved btape "test" and "fill" commands.
22
23
24 Items to note:  !!!!!
25 - The restore default is changed to have nothing selected by default.
26   You must either enter: "restore all" or after getting into the tree
27   selection prompt enter "mark *" to have everything selected.
28 - In previous versions the "all" keyword on the restore command caused
29   it to return without user interaction after selecting everything. 
30   This function is now replaced by the "done" keyword (more logical).
31   The "all" keyword now causes everything to be selected by default.
32 - The default tape driver behavior is now to write only a single EOF
33   at the end of the tape. For most tape drives, this is totally            
34   transparent and nothing needs to be done. For FreeBSD see below.
35 - FreeBSD users NOTE!!!!!
36   You may need the following two records to your SD Device resource for
37   tape drives.
38
39      TWOEOF = yes
40      Fast Forward Space File = no
41
42   The "Fast Forward Space File" is surely needed, and the TWOEOF          
43   is needed on some systems and not others. Running the btape
44   "test" command will tell you. If you get an error with TWOEOF set   
45   to yes, set it to no.
46
47 - The daemon protocol has changed from version 1.32, you must update 
48   everything at once.
49 - The database level has been updated. You must either re-initialize
50   your databases with:
51    
52     ./drop_bacula_tables
53     ./make_bacula_tables
54
55   which will delete ALL prior catalog information, or you can
56   update your 1.32 database with:
57
58     ./update_bacula_tables
59
60   Please save your old database before dropping the tables or doing
61   an upgrade or you may regret it later.
62 - If you are updating versions older than 1.32, you can look in
63   the updatedb directory for scripts that you can use. You will need
64   to manually set the paths for your system.
65
66 - smtp has now become bsmtp -- you *must* modify your .conf files.
67 - console has now become bconsole.
68 - console.conf is now bconsole.conf
69 - Please don't underestimate the repercussions of the bsmtp and bconsole 
70   name changes!
71
72
73 New directives:
74 - "Close on Poll = yes/no" in SD Device resource.
75 - "Volume Poll Interval = time-interval" in SD Device resource.
76 - "Two EOF = yes/no" in SD Device resource.
77 - "Maximum Network Buffer Size = size" in SD Device resource.
78 - "Maximum Network Buffer Size = size" in FD FileDaemon (or Client) resource.
79 - "Console" new resource in Director conf file.
80      New directives: Name, Description, Password, JobACL, ClientACL,
81         StorageACL, ScheduleACL, RunACL, PoolACL, CommandACL,
82         FileSetACL, CatalogACL.
83 - "Max Run Time = duration" in Director Job resource.
84 - "Max Wait Time = duration" in Director Job resource (not fully implemented).
85 - "JobDefs = name-of-resource" in Director Job resource.
86 - "Jobdefs" new resource in Director. Same directives as for a Job.
87 - "Full Backup Pool = xxx" in Job resource in the Director.
88 - "Incremental Backup Pool = xxx" in Job resource in the Director.
89 - "Differential Backup Pool = xxx" in Job resource in the Director.
90 - Three new options on the Run override statement in a Schedule resource:
91    FullPool=xxx
92    IncrementalPool=xxx
93    DifferentialPool=xxx
94 - SpoolData=yes/no in DIR Job resource
95 - SpoolData=yes/no in Run override directive.
96 - MaximumSpoolSize in SD Device resource
97 - MaximumJobSpoolSize in SD Device resource
98 - SpoolDirectory in SD Device resource.
99
100 New Commands:
101 - "SetIP"
102 - Added "pool=xxx" to restore command line.
103 - Added "fileset=xxx" to restore command line.
104 - Fixed "storage=xxx" on restore command line.
105 - "markdir" command in restore tree.
106 - "unmarkdir" command in restore tree.
107 - "quit" command in restore tree.
108 - Trace option on "setdebug trace=1/0 ..."
109 - Update slots scan
110 - The "all" keyword on the restore command marks all files by default.
111 - The "done" keyword prevents user interaction with the tree -- used
112   mostly for batch scripting.
113
114
115 Additional changes:
116 - Implement Gnome 2.0 restore GUI
117 - Add a missing unlock in the jobq handler.
118 - Fix bug where a soft linked file and a directory had the same name
119   by treating the soft link as a directory and putting the entries under
120   it. This fixes the bug reported by Alexander Mueller.
121 - Apply Jess Guardiani's second fix to list autochanger volumes without
122   opening the drive (necessary on FreeBSD if no tape is in the drive).
123 - Reworked the command line handler in restore to walk through the
124   arguments one at a time. This makes the file= entries work correctly.
125   Also reworked the code that takes the MediaType and finds a 
126   storage device.
127 - Add quit command to restore tree handler.
128 - Make restore tree handler remember if a hard link is present, and
129   in doing a mark, only get database entry if there is a hard link.
130   mark commands thus run at least 2 orders of magnitude faster.
131 - Add files=xxx field to run command submitted for restore.   
132 - Add yes to restore run command if either yes or run is command line
133   argument.
134 - Make "yes" on command line argument skip prompt for modification of
135   run job.
136 - Add markdir and unmarkdir -- both affect only the directory in
137   question and do not do a recursive descent.
138 - Make tree command automatically mark all higher level directories to
139   be restored when a directory or a file is selected.  Such directories
140   are indicated by preceding the name with a + to indicate that only
141   the directory entry is selected and not the whole directory tree.
142 - Modify a few tree commands to walk through all arguments rather than
143   just taking the first one.
144 - Improved btape "test" and "fill" commands.
145 - The ability to ask the Storage daemon on a device by device basis
146   to "poll" the tape drive at a given interval (minimum 1 minute). If
147   a tape is found, its label is read and if appropriate it is used.
148   This eliminates the need to do "mount" commands.
149 - The ability to close and re-open the device when a poll occurs. 
150   This permits dealing with certain recalcitrant autochangers that
151   invalidate devices (typically on FreeBSD).
152 - Dan Langille has written a PostgreSQL driver for Bacula.
153 - Implement "update slots scan" that reads the volume label(s).
154 - The full form of the scan is "scan=1,2,4-5,7". With no specification,
155   all occupied slots are scanned.
156 - Turn off changer Volumes that are not current in the changer when
157   an "update slots" is done, or if any tape operation discovers that
158   the right volume is not in the slot.
159 - The console program will run all commands it finds in ~/.bconsolerc
160   at startup.
161 - Add Dan Langille's changes to the bacula start/stop script that 
162   permit dropping root permissions just after startup.
163 - New version 1.5.5-1 Cygwin.
164 - Modify SD to update the catalog database when it is shutdown,
165   even if the job is canceled.
166 - Fixed seg fault in restore of multiple simultaneous jobs to 
167   a single Volume.
168 - Fixed thread race problem in multiple simultaneous jobs to
169   a single Volume where the volume label is not in the first 
170   tape block, so the tape is not recognized.
171 - Restore directory tree automatically selects all higher level
172   directories to be restored.
173 - Implement conio.c to use in console program -- mini-readline.
174 - Enhance "fill" command of btape -- simpler output. Use -v to
175   cause last block to be dumped after write and after re-read.
176 - Added an autochanger test to the btape "test" command. It is 
177   automatically invoked if the autochanger is properly configured.  It
178   is still a bit primitive but covers the essential of testing
179   the mtx-changer script with your autochanger.
180 - Select the oldest LastWritten volume during recycling.
181 - Added forward space file test to btape "test" command.
182 - All 1.32d patches applied.
183 - Fixed seg fault in restore of multiple simultaneous jobs to 
184   a single Volume.
185 - Fixed thread race problem in multiple simultaneous jobs to
186   a single Volume where the volume lable is not in the first 
187   tape block, so the tape is not recognized.