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