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