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