]> git.sur5r.net Git - bacula/docs/blob - docs/manual/pools.tex
Final changes
[bacula/docs] / docs / manual / pools.tex
1 %%
2 %%
3
4 \section*{Automated Disk Backup}
5 \label{_ChapterStart11}
6 \index[general]{Volumes!Using Pools to Manage }
7 \index[general]{Disk!Automated Backup}
8 \index[general]{Using Pools to Manage Volumes }
9 \index[general]{Automated Disk Backup}
10 \addcontentsline{toc}{section}{Using Pools to Manage Volumes}
11 \addcontentsline{toc}{section}{Automated Disk Backup}
12
13 If you manage 5 or 10 machines and have a nice tape backup, you don't need
14 Pools, and you may wonder what they are good for. In this chapter, you will
15 see that Pools can help you optimize disk storage space. The same techniques
16 can be applied to a shop that has multiple tape drives, or that wants to mount
17 various different Volumes to meet their needs. 
18
19 The rest of this chapter will give an example involving backup to disk
20 Volumes, but most of the information applies equally well to tape Volumes. 
21
22 \label{TheProblem}
23 \subsection*{The Problem}
24 \index[general]{Problem }
25 \addcontentsline{toc}{subsection}{Problem}
26
27 A site that I administer (a charitable organization) had a tape DDS-3 tape
28 drive that was failing. The exact reason for the failure is still unknown.
29 Worse yet, their full backup size is about 15GB whereas the capacity of their
30 broken DDS-3 was at best 8GB (rated 6/12). A new DDS-4 tape drive and the
31 necessary cassettes was more expensive than their budget could handle. 
32 \label{TheSolution}
33
34 \subsection*{The Solution}
35 \index[general]{Solution }
36 \addcontentsline{toc}{subsection}{Solution}
37
38 They want to maintain 6 months of backup data, and be able to access the old
39 files on a daily basis for a week, a weekly basis for a month, then monthly
40 for 6 months. In addition, offsite capability was not needed (well perhaps
41 it really is, but it was never used). Their daily changes amount to about
42 300MB on the average, or about 2GB per week. 
43
44 As a consequence, the total volume of data they need to keep to meet their
45 needs is about 100GB (15GB x 6 + 2GB x 5 + 0.3 x 7) = 102.1GB. 
46
47 The chosen solution was to buy a 120GB hard disk for next to nothing -- far
48 less than 1/10th the price of a tape drive and the cassettes to handle the
49 same amount of data, and to have Bacula write to disk files. 
50
51 The rest of this chapter will explain how to setup Bacula so that it would
52 automatically manage a set of disk files with the minimum intervention on my
53 part. The system has been running since 22 January 2004 until today (08 April
54 2004) with no intervention. Since we have not yet crossed the six month
55 boundary, we still lack some data to be sure the system performs as desired. 
56 \label{OverallDesign}
57
58 \subsection*{Overall Design}
59 \index[general]{Overall Design }
60 \index[general]{Design!Overall }
61 \addcontentsline{toc}{subsection}{Overall Design}
62
63 Getting Bacula to write to disk rather than tape in the simplest case is
64 rather easy, and is documented in the previous chapter. In addition, all the
65 directives discussed here are explained in that chapter. We'll leave it to you
66 to look at the details there. If you haven't read it and are not familiar with
67 Pools, you probably should at least read it once quickly for the ideas before
68 continuing here. 
69
70 One needs to consider about what happens if we have only a single large Bacula
71 Volume defined on our hard disk. Everything works fine until the Volume fills,
72 then Bacula will ask you to mount a new Volume. This same problem applies to
73 the use of tape Volumes if your tape fills. Being a hard disk and the only one
74 you have, this will be a bit of a problem. It should be obvious that it is
75 better to use a number of smaller Volumes and arrange for Bacula to
76 automatically recycle them so that the disk storage space can be reused. The
77 other problem with a single Volume, is that at the current time (1.34.0)
78 Bacula does not seek within a disk Volume, so restoring a single file can take
79 more time than one would expect. 
80
81 As mentioned, the solution is to have multiple Volumes, or files on the disk.
82 To do so, we need to limit the use and thus the size of a single Volume, by
83 time, by number of jobs, or by size. Any of these would work, but we chose to
84 limit the use of a single Volume by putting a single job in each Volume with
85 the exception of Volumes containing Incremental backup where there will be 6
86 jobs (a week's worth of data) per volume. The details of this will be
87 discussed shortly. 
88
89 The next problem to resolve is recycling of Volumes. As you noted from above,
90 the requirements are to be able to restore monthly for 6 months, weekly for a
91 month, and daily for a week. So to simplify things, why not do a Full save
92 once a month, a Differential save once a week, and Incremental saves daily.
93 Now since each of these different kinds of saves needs to remain valid for
94 differing periods, the simplest way to do this (and possibly the only) is to
95 have a separate Pool for each backup type. 
96
97 The decision was to use three Pools: one for Full saves, one for Differential
98 saves, and one for Incremental saves, and each would have a different number
99 of volumes and a different Retention period to accomplish the requirements. 
100 \label{FullPool}
101
102 \subsubsection*{Full Pool}
103 \index[general]{Pool!Full }
104 \index[general]{Full Pool }
105 \addcontentsline{toc}{subsubsection}{Full Pool}
106
107 Putting a single Full backup on each Volume, will require six Full save
108 Volumes, and a retention period of six months. The Pool needed to do that is: 
109
110 \footnotesize
111 \begin{verbatim}
112 Pool {
113   Name = Full-Pool
114   Pool Type = Backup
115   Recycle = yes
116   AutoPrune = yes
117   Volume Retention = 6 months
118   Maximum Volume Jobs = 1
119   Label Format = Full-
120   Maximum Volumes = 6
121 }
122 \end{verbatim}
123 \normalsize
124
125 Since these are disk Volumes, no space is lost by having separate Volumes for
126 each backup (done once a month in this case). The items to note are the
127 retention period of six months (i.e. they are recycled after 6 months), that
128 there is one job per volume (Maximum Volume Jobs = 1), the volumes will be
129 labeled Full-0001, ... Full-0006 automatically. One could have labeled these
130 manual from the start, but why not use the features of Bacula. 
131 \label{DiffPool}
132
133 \subsubsection*{Differential Pool}
134 \index[general]{Pool!Differential }
135 \index[general]{Differential Pool }
136 \addcontentsline{toc}{subsubsection}{Differential Pool}
137
138 For the Differential backup Pool, we choose a retention period of a bit longer
139 than a month and ensure that there is at least one Volume for each of the
140 maximum of five weeks in a month. So the following works: 
141
142 \footnotesize
143 \begin{verbatim}
144 Pool {
145   Name = Diff-Pool
146   Pool Type = Backup
147   Recycle = yes
148   AutoPrune = yes
149   Volume Retention = 40 days
150   Maximum Volume Jobs = 1
151   Label Format = Diff-
152   Maximum Volumes = 6
153 }
154 \end{verbatim}
155 \normalsize
156
157 As you can see, the Differential Pool can grow to a maximum of six volumes,
158 and the Volumes are retained 40 days and thereafter they can be recycled. Finally
159 there is one job per volume. This, of course, could be tightened up a lot, but
160 the expense here is a few GB which is not too serious. 
161 \label{IncPool}
162
163 \subsubsection*{Incremental Pool}
164 \index[general]{Incremental Pool }
165 \index[general]{Pool!Incremental }
166 \addcontentsline{toc}{subsubsection}{Incremental Pool}
167
168 Finally, here is the resource for the Incremental Pool: 
169
170 \footnotesize
171 \begin{verbatim}
172 Pool {
173   Name = Inc-Pool
174   Pool Type = Backup
175   Recycle = yes
176   AutoPrune = yes
177   Volume Retention = 20 days
178   Maximum Volume Jobs = 6
179   Label Format = Inc-
180   Maximum Volumes = 5
181 }
182 \end{verbatim}
183 \normalsize
184
185 We keep the data for 20 days rather than just a week as the needs require. To
186 reduce the proliferation of volume names, we keep a week's worth of data (6
187 incremental backups) in each Volume. In practice, the retention period should
188 be set to just a bit more than a week and keep only two or three volumes
189 instead of five. Again, the lost is very little and as the system reaches the
190 full steady state, we can adjust these values so that the total disk usage
191 doesn't exceed the disk capacity. 
192 \label{Example}
193
194 \subsection*{The Actual Conf Files}
195 \index[general]{Files!Actual Conf }
196 \index[general]{Actual Conf Files }
197 \addcontentsline{toc}{subsection}{Actual Conf Files}
198
199 The following example shows you the actual files used, with only a few minor
200 modifications to simplify things. 
201
202 The Director's configuration file is as follows: 
203
204 \footnotesize
205 \begin{verbatim}
206 Director {          # define myself
207   Name = bacula-dir
208   DIRport = 9101
209   QueryFile = "/home/bacula/bin/query.sql"
210   WorkingDirectory = "/home/bacula/working"
211   PidDirectory = "/home/bacula/working"
212   Maximum Concurrent Jobs = 1
213   Password = " "
214   Messages = Standard
215 }
216 #   By default, this job will back up to disk in /tmp
217 Job {
218   Name = client
219   Type = Backup
220   Client = client-fd
221   FileSet = "Full Set"
222   Schedule = "WeeklyCycle"
223   Storage = File
224   Messages = Standard
225   Pool = Default
226   Full Backup Pool = Full-Pool
227   Incremental Backup Pool = Inc-Pool
228   Differential Backup Pool = Diff-Pool
229   Write Bootstrap = "/home/bacula/working/client.bsr"
230   Priority = 10
231 }
232 # List of files to be backed up
233 FileSet {
234   Name = "Full Set"
235   Include = signature=SHA1 compression=GZIP9 {
236     /
237     /usr
238     /home
239   }
240   Exclude = {
241      /proc /tmp /.journal /.fsck
242   }
243 }
244 Schedule {
245   Name = "WeeklyCycle"
246   Run = Full 1st sun at 1:05
247   Run = Differential 2nd-5th sun at 1:05
248   Run = Incremental mon-sat at 1:05
249 }
250 Client {
251   Name = client-fd
252   Address = client
253   FDPort = 9102
254   Catalog = MyCatalog
255   Password = " "
256   AutoPrune = yes      # Prune expired Jobs/Files
257   Job Retention = 6 months
258   File Retention = 60 days
259 }
260 Storage {
261   Name = File
262   Address = localhost
263   SDPort = 9103
264   Password = " "
265   Device = FileStorage
266   Media Type = File
267 }
268 Catalog {
269   Name = MyCatalog
270   dbname = bacula; user = bacula; password = ""
271 }
272 Pool {
273   Name = Full-Pool
274   Pool Type = Backup
275   Recycle = yes           # automatically recycle Volumes
276   AutoPrune = yes         # Prune expired volumes
277   Volume Retention = 6 months
278   Maximum Volume Jobs = 1
279   Label Format = Full-
280   Maximum Volumes = 6
281 }
282 Pool {
283   Name = Inc-Pool
284   Pool Type = Backup
285   Recycle = yes           # automatically recycle Volumes
286   AutoPrune = yes         # Prune expired volumes
287   Volume Retention = 20 days
288   Maximum Volume Jobs = 6
289   Label Format = Inc-
290   Maximum Volumes = 5
291 }
292 Pool {
293   Name = Diff-Pool
294   Pool Type = Backup
295   Recycle = yes
296   AutoPrune = yes
297   Volume Retention = 40 days
298   Maximum Volume Jobs = 1
299   Label Format = Diff-
300   Maximum Volumes = 6
301 }
302 Messages {
303   Name = Standard
304   mailcommand = "bsmtp -h mail.domain.com -f \"\(Bacula\) %r\"
305       -s \"Bacula: %t %e of %c %l\" %r"
306   operatorcommand = "bsmtp -h mail.domain.com -f \"\(Bacula\) %r\"
307       -s \"Bacula: Intervention needed for %j\" %r"
308   mail = root@domain.com = all, !skipped
309   operator = root@domain.com = mount
310   console = all, !skipped, !saved
311   append = "/home/bacula/bin/log" = all, !skipped
312 }
313 \end{verbatim}
314 \normalsize
315
316 and the Storage daemon's configuration file is: 
317
318 \footnotesize
319 \begin{verbatim}
320 Storage {               # definition of myself
321   Name = bacula-sd
322   SDPort = 9103       # Director's port
323   WorkingDirectory = "/home/bacula/working"
324   Pid Directory = "/home/bacula/working"
325 }
326 Director {
327   Name = bacula-dir
328   Password = " "
329 }
330 Device {
331   Name = FileStorage
332   Media Type = File
333   Archive Device = /files/bacula
334   LabelMedia = yes;    # lets Bacula label unlabeled media
335   Random Access = Yes;
336   AutomaticMount = yes;   # when device opened, read it
337   RemovableMedia = no;
338   AlwaysOpen = no;
339 }
340 Messages {
341   Name = Standard
342   director = bacula-dir = all
343 }
344 \end{verbatim}
345 \normalsize