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