]> git.sur5r.net Git - bacula/bacula/blob - bacula/technotes-2.1
9badf5b62b0df16bc2328b4da233403d47263aa1
[bacula/bacula] / bacula / technotes-2.1
1               Technical notes on version 2.1
2
3 General:
4 20Feb07
5 ebl  Revert ClientRunBeforeJob to old position as in 1.38.X.
6      You can't generate include/exclude list. It will be fixed soon.
7 19Feb07
8 kes  Restore of sockets created false error messages because Bacula
9      no longer restores sockets, but the code was still trying to
10      set the attributes on a non-existent file. Reported by a user.
11 ebl  finish RecyclePool feature
12      Media will takes Pool.RecyclePool
13      when moving from Scratch to a Pool or when user will do
14      update volume=xxx frompool
15      To use it, add RecyclePool = aPool to your Pool resource
16         Pool {
17                 Name = Default
18                 RecyclePool = Scratch
19                 ...
20         }
21      TODO: update manual
22 kes  Expand new BSOCK class adding signal() and new BNET signals.
23 kes  Begin enhancing the dot commands adding a new API function
24      that returns more information and will make it easier
25      to interface to the Director from a program.
26 18Feb07
27 kes  Make DEVICE fd private. Its new name is m_fd, and can be
28      obtained with dev->fd() outside the class.  This is the
29      first of many DEVICE members to be made private.
30 kes  Implement Michael Renner's idea on having a virtual disk
31      changer. I made some minor modifications (e.g. I did not
32      implement the Virtual Changer directive, but simply set
33      the Changer Command to an empty string.
34 17Feb07
35 kes  Implement a BSOCK send() method that writes the whole record
36      in a single write() request rather than in two.
37 ebl  add update volume=xxx recyclepool=yyyy
38      volume takes recyclepool from pool when using update volume=xxx from pool
39 16Feb07
40 kes  Fix encryption deblocking bug, which caused some restored files
41      to be truncated. This fixes bug #763.
42 kes  Add FD event sequence order prepared by Eric -- for RunScripts.
43 kes  Fix 12am/pm bug as reported in bug #782.
44 13Feb07
45 kes  Apply Eric's ClientRunScriptAfter patch to 2.0 and 2.1.
46 ebl  Use btime_t instead of uint64_t in media patch.
47 11Feb07
48 kes  Optimize the use of the database a bit in the Status dir command.
49      Only open it when needed, ensure that if any previous database
50      was opened, it is closed.
51 10Feb07
52 kes  Correct VolCatBytes bug from media patch.
53 kes  Apply patch from bug #612 by Rudolf Cejka to speedup pruning
54      in the case of orphaned records.
55 kes  Modify dbcheck to handle orphaned JobMedia, Path, Filename,
56      and File records in 300K chunks to be more efficient. This
57      idea came from Juan Luis Frances (if I remember right).
58 kes  Apply Eric's scratch patch that moves a purged Volume to
59      the RecyclePool.  Question: how is RecyclePool set? what
60      happens to the ScratchPool?
61 kes  Apply Eric's media patch that collects read/write media
62      times as well as byte counts.  This patch requires a
63      simultaneous upgrade of the DIR and SD.  Note, there
64      should be some way to turn off timing. I'm not sure
65      times are in Bacula units.
66 kes  Apply Eric's batch-insert patch.
67 09Feb07
68 kes  Update projects list.
69 08Feb07
70 kes  Implement Include/Exclude file lists in FD as dlists using
71      the new dlistString class. This permits efficiently having
72      large include/exclude lists and completes project Item 25.
73 kes  Fix dird/ua_cmds.c so that a cancel command checks if the
74      console is authorized to cancel the job.  This fixes bug 
75      #767.
76 kes  Modify SD so that the VolCatJobs medium record is updated
77      at the beginning of a Job rather than the end.  This
78      fixes bug #775 where exceeding MaxVolJobs caused jobs
79      to fail.
80 kes  Added a mutex around getting and setting Volume information
81      so that multiple simultaneous jobs will single thread.
82 07Feb07
83      Switch to using Subversion
84 kes  Remove src/pygtk-console/ from configure
85 06Feb07
86 kes  Delete src/lib/btree.c from win32 build, then add rblist.c
87      plus the entrypoints.
88 kes  Apply patch supplied that corrects debug print
89      in canceling jobs for max run time.  Supplied as
90      part of bug #621, which was previously fixed.
91 05Feb07
92 kes  Test on job_canceled() and sd_msg_thread_done inside
93      loop starting the message thread to avoid a race condition.
94      Fixes bug #771.
95 kes  Remove rl_catch_signal from console.c as it conflicted
96      with the header definition. Fixes bug #765.
97 ebl  Fixes bug #766 about RunsOnClient = Yes
98 04Feb07
99 kes  Clarify some stored/acquire messages to indicate if the
100      problem is with read or append.
101 02Feb07
102 kes  Fix memory leak with storage ids in cats/sql_get.c
103 kes  Terminate watchdog earlier to avoid reference to released
104      memory -- reported by Jason Austin.
105 kes  Move closing the database from jobq.c to the director daemon
106      termination routine. This fixes memory leaks for shadow jobs
107      (i.e. migration jobs).
108 kes  Free up the unique jobid chain items in migrate.c.  This fixes
109      a memory leak problem.
110 kes  Convert some ugly looking for statements to use foreach_alist
111      in findlib/find.c.  This will facilitate converting the structures
112      to use dlist (for large include/exclude lists).
113 kes  Fix a bug in the btree.c and btree.h routines, then rename them
114      rblist and add them to be built in src/lib.  Include some new
115      methods written by Rudolf Cejka that make the code more readable
116      (hides some of the ugly casting).
117 kes  Add set_next() and set_prev() methods which make the code much more 
118      readable. Also add a new dlistString class that facilitates storing
119      strings in dlists.  To be used in the large include/exclude lists.
120 kes  Make some trivial modifications to lib/tree.h that use rblist
121      rather than dlist for storing the tree links. This was suggested
122      by Rudolf Cejka.  The result of this is that the restore tree now
123      uses red-black binary trees rather than simple linked lists. This
124      should give rather dramatic speed improvements for directories
125      contining large numbers of directories/files (more than 10000).
126 28Jan07 
127 kes  Fix maxruntime bug #621.
128 26Jan07
129 ebl  Implement the include JobID in spool file name project.
130 kes  Reorder projects file in order determined by Jan 2007 vote.
131 kes  Implement item #12 on project list -- quick release of FD by
132      the SD.
133 kes  Fix open of SQLite3 db where user does not have write permission
134      so that DIR does not crash. Fixes bug #761.
135 25Jan07
136 kes  Add back missing @ in Win32 Makefile.
137 kes  Change 'Device not configured to autolabel' from INFO
138      to WARNING.
139 kes  Fix jobq.c to restart failed jobs when Reschedule Times = 0 
140      which should restart an indefinite # of times.
141 kes  Fix configure --help to print --with-mysql[=DIR]. Same for
142      other DIR specifications.
143 23Jan07
144 rn   Fix msvc build problems. Fix bacula.dll exports for msvc build.
145      Fix path quoting in SQLite scripts.
146      Fix problems with SHGetFolderPath.
147 19Jan07
148 kes  Create patches/2.0.1-restart.patch. Fixes bug #755.
149 18Jan07
150 kes  Fix Job restart on error bug that promotes an Inc to a Full
151      backup.  This should fix bug #755.
152 kes  Add qt-console and first cut of code.
153
154 Version 2.0.1
155 12Jan07
156 kes  Fix Bacula->Documentation link on Win32 to point to index.html
157      instead of bacula.html. Fixed bug #750.
158 kes  Return JobId in db_get_job_record() when JobId==0. This should
159      fix bug #741.
160 kes  Do not release source pointers when restarting a failed job.
161 11Jan07
162 kes  Add dynamic dll entry point for SHGetFolderPath to Win32 code.
163      This *should* fix bug #747.
164 kes  Modify winbacula.nsi to substitute with g bin_dir_cmd. Should fix
165      bug #742.
166 09Jan07
167 kes  Modify USTORE constructor to set an empty store_source string, 
168      and don't copy the store_source string in a cancel.  Hopefully
169      this will fix Arno's seg fault, bug #744.
170 kes  Add back code to disable conio in configure. Fixes bug #743.
171 kes  Correct the Options scanner in the FD to correctly handle  
172      SHA1 option, which was eating the next option.  Reported by    
173      Sebastien Guilbaud.
174 kes  Add code to indicate when the SD is spooling, spool wait, and 
175      despooling as requested by Alan Brown.
176
177 Version 2.0.0 released: 4 January 2007