Whamcloud - gitweb
LUDOC-11 misc: remove pre-2.5 conditional text
[doc/manual.git] / BackupAndRestore.xml
1 <?xml version='1.0' encoding='utf-8'?>
2 <chapter xmlns="http://docbook.org/ns/docbook"
3 xmlns:xl="http://www.w3.org/1999/xlink" version="5.0" xml:lang="en-US"
4 xml:id="backupandrestore">
5   <title xml:id="backupandrestore.title">Backing Up and Restoring a File
6   System</title>
7   <para>This chapter describes how to backup and restore at the file
8   system-level, device-level and file-level in a Lustre file system. Each
9   backup approach is described in the the following sections:</para>
10   <itemizedlist>
11     <listitem>
12       <para>
13         <xref linkend="dbdoclet.backup_file"/>
14       </para>
15     </listitem>
16     <listitem>
17       <para>
18         <xref linkend="dbdoclet.backup_device"/>
19       </para>
20     </listitem>
21     <listitem>
22       <para>
23         <xref linkend="backup_fs_level"/>
24       </para>
25     </listitem>
26     <listitem>
27       <para>
28         <xref linkend="backup_fs_level.restore"/>
29       </para>
30     </listitem>
31     <listitem>
32       <para>
33         <xref linkend="dbdoclet.backup_lvm_snapshot"/>
34       </para>
35     </listitem>
36   </itemizedlist>
37   <para>It is <emphasis>strongly</emphasis> recommended that sites perform
38   periodic device-level backup of the MDT(s)
39   (<xref linkend="dbdoclet.backup_device"/>),
40   for example twice a week with alternate backups going to a separate
41   device, even if there is not enough capacity to do a full backup of all
42   of the filesystem data.  Even if there are separate file-level backups of
43   some or all files in the filesystem, having a device-level backup of the
44   MDT can be very useful in case of MDT failure or corruption.  Being able to
45   restore a device-level MDT backup can avoid the significantly longer process
46   of restoring the entire filesystem from backup.  Since the MDT is required
47   for access to all files, its loss would otherwise force full restore of the
48   filesystem (if that is even possible) even if the OSTs are still OK.</para>
49   <para>Performing a periodic device-level MDT backup can be done relatively
50   inexpensively because the storage need only be connected to the primary
51   MDS (it can be manually connected to the backup MDS in the rare case
52   it is needed), and only needs good linear read/write performance.  While
53   the device-level MDT backup is not useful for restoring individual files,
54   it is most efficient to handle the case of MDT failure or corruption.</para>
55   <section xml:id="dbdoclet.backup_file">
56     <title>
57     <indexterm>
58       <primary>backup</primary>
59     </indexterm>
60     <indexterm>
61       <primary>restoring</primary>
62       <see>backup</see>
63     </indexterm>
64     <indexterm>
65       <primary>LVM</primary>
66       <see>backup</see>
67     </indexterm>
68     <indexterm>
69       <primary>rsync</primary>
70       <see>backup</see>
71     </indexterm>Backing up a File System</title>
72     <para>Backing up a complete file system gives you full control over the
73     files to back up, and allows restoration of individual files as needed.
74     File system-level backups are also the easiest to integrate into existing
75     backup solutions.</para>
76     <para>File system backups are performed from a Lustre client (or many
77     clients working parallel in different directories) rather than on
78     individual server nodes; this is no different than backing up any other
79     file system.</para>
80     <para>However, due to the large size of most Lustre file systems, it is
81     not always possible to get a complete backup. We recommend that you back
82     up subsets of a file system. This includes subdirectories of the entire
83     file system, filesets for a single user, files incremented by date, and
84     so on, so that restores can be done more efficiently.</para>
85     <note>
86       <para>Lustre internally uses a 128-bit file identifier (FID) for all
87       files. To interface with user applications, the 64-bit inode numbers
88       are returned by the <literal>stat()</literal>,
89       <literal>fstat()</literal>, and 
90       <literal>readdir()</literal> system calls on 64-bit applications, and
91       32-bit inode numbers to 32-bit applications.</para>
92       <para>Some 32-bit applications accessing Lustre file systems (on both
93       32-bit and 64-bit CPUs) may experience problems with the 
94       <literal>stat()</literal>, 
95       <literal>fstat()</literal> or
96       <literal>readdir()</literal> system calls under certain circumstances,
97       though the Lustre client should return 32-bit inode numbers to these
98       applications.</para>
99       <para>In particular, if the Lustre file system is exported from a 64-bit
100       client via NFS to a 32-bit client, the Linux NFS server will export
101       64-bit inode numbers to applications running on the NFS client. If the
102       32-bit applications are not compiled with Large File Support (LFS), then
103       they return 
104       <literal>EOVERFLOW</literal> errors when accessing the Lustre files. To
105       avoid this problem, Linux NFS clients can use the kernel command-line
106       option "<literal>nfs.enable_ino64=0</literal>" in order to force the
107       NFS client to export 32-bit inode numbers to the client.</para>
108       <para>
109       <emphasis role="bold">Workaround</emphasis>: We very strongly recommend
110       that backups using 
111       <literal>tar(1)</literal> and other utilities that depend on the inode
112       number to uniquely identify an inode to be run on 64-bit clients. The
113       128-bit Lustre file identifiers cannot be uniquely mapped to a 32-bit
114       inode number, and as a result these utilities may operate incorrectly on
115       32-bit clients.  While there is still a small chance of inode number
116       collisions with 64-bit inodes, the FID allocation pattern is designed
117       to avoid collisions for long periods of usage.</para>
118     </note>
119     <section remap="h3">
120       <title>
121       <indexterm>
122         <primary>backup</primary>
123         <secondary>rsync</secondary>
124       </indexterm>Lustre_rsync</title>
125       <para>The 
126       <literal>lustre_rsync</literal> feature keeps the entire file system in
127       sync on a backup by replicating the file system's changes to a second
128       file system (the second file system need not be a Lustre file system, but
129       it must be sufficiently large). 
130       <literal>lustre_rsync</literal> uses Lustre changelogs to efficiently
131       synchronize the file systems without having to scan (directory walk) the
132       Lustre file system. This efficiency is critically important for large
133       file systems, and distinguishes the Lustre 
134       <literal>lustre_rsync</literal> feature from other replication/backup
135       solutions.</para>
136       <section remap="h4">
137         <title>
138         <indexterm>
139           <primary>backup</primary>
140           <secondary>rsync</secondary>
141           <tertiary>using</tertiary>
142         </indexterm>Using Lustre_rsync</title>
143         <para>The 
144         <literal>lustre_rsync</literal> feature works by periodically running 
145         <literal>lustre_rsync</literal>, a userspace program used to
146         synchronize changes in the Lustre file system onto the target file
147         system. The 
148         <literal>lustre_rsync</literal> utility keeps a status file, which
149         enables it to be safely interrupted and restarted without losing
150         synchronization between the file systems.</para>
151         <para>The first time that 
152         <literal>lustre_rsync</literal> is run, the user must specify a set of
153         parameters for the program to use. These parameters are described in
154         the following table and in 
155         <xref linkend="dbdoclet.50438219_63667" />. On subsequent runs, these
156         parameters are stored in the the status file, and only the name of the
157         status file needs to be passed to 
158         <literal>lustre_rsync</literal>.</para>
159         <para>Before using 
160         <literal>lustre_rsync</literal>:</para>
161         <itemizedlist>
162           <listitem>
163             <para>Register the changelog user. For details, see the 
164             <xref linkend="systemconfigurationutilities" />(
165             <literal>changelog_register</literal>) parameter in the 
166             <xref linkend="systemconfigurationutilities" />(
167             <literal>lctl</literal>).</para>
168           </listitem>
169         </itemizedlist>
170         <para>- AND -</para>
171         <itemizedlist>
172           <listitem>
173             <para>Verify that the Lustre file system (source) and the replica
174             file system (target) are identical 
175             <emphasis>before</emphasis> registering the changelog user. If the
176             file systems are discrepant, use a utility, e.g. regular 
177             <literal>rsync</literal>(not 
178             <literal>lustre_rsync</literal>), to make them identical.</para>
179           </listitem>
180         </itemizedlist>
181         <para>The 
182         <literal>lustre_rsync</literal> utility uses the following
183         parameters:</para>
184         <informaltable frame="all">
185           <tgroup cols="2">
186             <colspec colname="c1" colwidth="3*" />
187             <colspec colname="c2" colwidth="10*" />
188             <thead>
189               <row>
190                 <entry>
191                   <para>
192                     <emphasis role="bold">Parameter</emphasis>
193                   </para>
194                 </entry>
195                 <entry>
196                   <para>
197                     <emphasis role="bold">Description</emphasis>
198                   </para>
199                 </entry>
200               </row>
201             </thead>
202             <tbody>
203               <row>
204                 <entry>
205                   <para>
206                     <literal>--source=
207                     <replaceable>src</replaceable></literal>
208                   </para>
209                 </entry>
210                 <entry>
211                   <para>The path to the root of the Lustre file system (source)
212                   which will be synchronized. This is a mandatory option if a
213                   valid status log created during a previous synchronization
214                   operation (
215                   <literal>--statuslog</literal>) is not specified.</para>
216                 </entry>
217               </row>
218               <row>
219                 <entry>
220                   <para>
221                     <literal>--target=
222                     <replaceable>tgt</replaceable></literal>
223                   </para>
224                 </entry>
225                 <entry>
226                   <para>The path to the root where the source file system will
227                   be synchronized (target). This is a mandatory option if the
228                   status log created during a previous synchronization
229                   operation (
230                   <literal>--statuslog</literal>) is not specified. This option
231                   can be repeated if multiple synchronization targets are
232                   desired.</para>
233                 </entry>
234               </row>
235               <row>
236                 <entry>
237                   <para>
238                     <literal>--mdt=
239                     <replaceable>mdt</replaceable></literal>
240                   </para>
241                 </entry>
242                 <entry>
243                   <para>The metadata device to be synchronized. A changelog
244                   user must be registered for this device. This is a mandatory
245                   option if a valid status log created during a previous
246                   synchronization operation (
247                   <literal>--statuslog</literal>) is not specified.</para>
248                 </entry>
249               </row>
250               <row>
251                 <entry>
252                   <para>
253                     <literal>--user=
254                     <replaceable>userid</replaceable></literal>
255                   </para>
256                 </entry>
257                 <entry>
258                   <para>The changelog user ID for the specified MDT. To use 
259                   <literal>lustre_rsync</literal>, the changelog user must be
260                   registered. For details, see the 
261                   <literal>changelog_register</literal> parameter in 
262                   <xref linkend="systemconfigurationutilities" />(
263                   <literal>lctl</literal>). This is a mandatory option if a
264                   valid status log created during a previous synchronization
265                   operation (
266                   <literal>--statuslog</literal>) is not specified.</para>
267                 </entry>
268               </row>
269               <row>
270                 <entry>
271                   <para>
272                     <literal>--statuslog=
273                     <replaceable>log</replaceable></literal>
274                   </para>
275                 </entry>
276                 <entry>
277                   <para>A log file to which synchronization status is saved.
278                   When the 
279                   <literal>lustre_rsync</literal> utility starts, if the status
280                   log from a previous synchronization operation is specified,
281                   then the state is read from the log and otherwise mandatory 
282                   <literal>--source</literal>, 
283                   <literal>--target</literal> and 
284                   <literal>--mdt</literal> options can be skipped. Specifying
285                   the 
286                   <literal>--source</literal>, 
287                   <literal>--target</literal> and/or 
288                   <literal>--mdt</literal> options, in addition to the 
289                   <literal>--statuslog</literal> option, causes the specified
290                   parameters in the status log to be overridden. Command line
291                   options take precedence over options in the status
292                   log.</para>
293                 </entry>
294               </row>
295               <row>
296                 <entry>
297                   <literal>--xattr 
298                   <replaceable>yes|no</replaceable></literal>
299                 </entry>
300                 <entry>
301                   <para>Specifies whether extended attributes (
302                   <literal>xattrs</literal>) are synchronized or not. The
303                   default is to synchronize extended attributes.</para>
304                   <para>
305                     <note>
306                       <para>Disabling xattrs causes Lustre striping information
307                       not to be synchronized.</para>
308                     </note>
309                   </para>
310                 </entry>
311               </row>
312               <row>
313                 <entry>
314                   <para>
315                     <literal>--verbose</literal>
316                   </para>
317                 </entry>
318                 <entry>
319                   <para>Produces verbose output.</para>
320                 </entry>
321               </row>
322               <row>
323                 <entry>
324                   <para>
325                     <literal>--dry-run</literal>
326                   </para>
327                 </entry>
328                 <entry>
329                   <para>Shows the output of 
330                   <literal>lustre_rsync</literal> commands (
331                   <literal>copy</literal>, 
332                   <literal>mkdir</literal>, etc.) on the target file system
333                   without actually executing them.</para>
334                 </entry>
335               </row>
336               <row>
337                 <entry>
338                   <para>
339                     <literal>--abort-on-err</literal>
340                   </para>
341                 </entry>
342                 <entry>
343                   <para>Stops processing the 
344                   <literal>lustre_rsync</literal> operation if an error occurs.
345                   The default is to continue the operation.</para>
346                 </entry>
347               </row>
348             </tbody>
349           </tgroup>
350         </informaltable>
351       </section>
352       <section remap="h4">
353         <title>
354         <indexterm>
355           <primary>backup</primary>
356           <secondary>rsync</secondary>
357           <tertiary>examples</tertiary>
358         </indexterm>
359         <literal>lustre_rsync</literal> Examples</title>
360         <para>Sample 
361         <literal>lustre_rsync</literal> commands are listed below.</para>
362         <para>Register a changelog user for an MDT (e.g. 
363         <literal>testfs-MDT0000</literal>).</para>
364         <screen># lctl --device testfs-MDT0000 changelog_register testfs-MDT0000
365 Registered changelog userid 'cl1'</screen>
366         <para>Synchronize a Lustre file system (
367         <literal>/mnt/lustre</literal>) to a target file system (
368         <literal>/mnt/target</literal>).</para>
369         <screen>$ lustre_rsync --source=/mnt/lustre --target=/mnt/target \
370            --mdt=testfs-MDT0000 --user=cl1 --statuslog sync.log  --verbose 
371 Lustre filesystem: testfs 
372 MDT device: testfs-MDT0000 
373 Source: /mnt/lustre 
374 Target: /mnt/target 
375 Statuslog: sync.log 
376 Changelog registration: cl1 
377 Starting changelog record: 0 
378 Errors: 0 
379 lustre_rsync took 1 seconds 
380 Changelog records consumed: 22</screen>
381         <para>After the file system undergoes changes, synchronize the changes
382         onto the target file system. Only the 
383         <literal>statuslog</literal> name needs to be specified, as it has all
384         the parameters passed earlier.</para>
385         <screen>$ lustre_rsync --statuslog sync.log --verbose 
386 Replicating Lustre filesystem: testfs 
387 MDT device: testfs-MDT0000 
388 Source: /mnt/lustre 
389 Target: /mnt/target 
390 Statuslog: sync.log 
391 Changelog registration: cl1 
392 Starting changelog record: 22 
393 Errors: 0 
394 lustre_rsync took 2 seconds 
395 Changelog records consumed: 42</screen>
396         <para>To synchronize a Lustre file system (
397         <literal>/mnt/lustre</literal>) to two target file systems (
398         <literal>/mnt/target1</literal> and 
399         <literal>/mnt/target2</literal>).</para>
400         <screen>$ lustre_rsync --source=/mnt/lustre --target=/mnt/target1 \
401            --target=/mnt/target2 --mdt=testfs-MDT0000 --user=cl1  \
402            --statuslog sync.log</screen>
403       </section>
404     </section>
405   </section>
406   <section xml:id="dbdoclet.backup_device">
407     <title>
408     <indexterm>
409       <primary>backup</primary>
410       <secondary>MDT/OST device level</secondary>
411     </indexterm>Backing Up and Restoring an MDT or OST (ldiskfs Device Level)</title>
412     <para>In some cases, it is useful to do a full device-level backup of an
413     individual device (MDT or OST), before replacing hardware, performing
414     maintenance, etc. Doing full device-level backups ensures that all of the
415     data and configuration files is preserved in the original state and is the
416     easiest method of doing a backup. For the MDT file system, it may also be
417     the fastest way to perform the backup and restore, since it can do large
418     streaming read and write operations at the maximum bandwidth of the
419     underlying devices.</para>
420     <note>
421       <para>Keeping an updated full backup of the MDT is especially important
422       because permanent failure or corruption of the MDT file system renders
423       the much larger amount of data in all the OSTs largely inaccessible and
424       unusable.  The storage needed for one or two full MDT device backups
425       is much smaller than doing a full filesystem backup, and can use less
426       expensive storage than the actual MDT device(s) since it only needs to
427       have good streaming read/write speed instead of high random IOPS.</para>
428     </note>
429     <para>If hardware replacement is the reason for the backup or if a spare
430     storage device is available, it is possible to do a raw copy of the MDT or
431     OST from one block device to the other, as long as the new device is at
432     least as large as the original device. To do this, run:</para>
433     <screen>dd if=/dev/{original} of=/dev/{newdev} bs=4M</screen>
434     <para>If hardware errors cause read problems on the original device, use
435     the command below to allow as much data as possible to be read from the
436     original device while skipping sections of the disk with errors:</para>
437     <screen>dd if=/dev/{original} of=/dev/{newdev} bs=4k conv=sync,noerror /
438       count={original size in 4kB blocks}</screen>
439     <para>Even in the face of hardware errors, the <literal>ldiskfs</literal>
440     file system is very robust and it may be possible
441     to recover the file system data after running 
442     <literal>e2fsck -fy /dev/{newdev}</literal> on the new device.</para>
443     <para>With Lustre software version 2.6 and later, the
444     <literal>LFSCK</literal> scanning will automatically move objects from 
445     <literal>lost+found</literal> back into its correct location on the OST
446     after directory corruption.</para>
447     <para>In order to ensure that the backup is fully consistent, the MDT or
448     OST must be unmounted, so that there are no changes being made to the
449     device while the data is being transferred.  If the reason for the
450     backup is preventative (i.e. MDT backup on a running MDS in case of
451     future failures) then it is possible to perform a consistent backup from
452     an LVM snapshot.  If an LVM snapshot is not available, and taking the
453     MDS offline for a backup is unacceptable, it is also possible to perform
454     a backup from the raw MDT block device.  While the backup from the raw
455     device will not be fully consistent due to ongoing changes, the vast
456     majority of ldiskfs metadata is statically allocated, and inconsistencies
457     in the backup can be fixed by running <literal>e2fsck</literal> on the
458     backup device, and is still much better than not having any backup at all.
459     </para>
460   </section>
461   <section xml:id="backup_fs_level">
462     <title>
463     <indexterm>
464       <primary>backup</primary>
465       <secondary>OST file system</secondary>
466     </indexterm>
467     <indexterm>
468       <primary>backup</primary>
469       <secondary>MDT file system</secondary>
470     </indexterm>Backing Up an OST or MDT (Backend File System Level)</title>
471     <para>This procedure provides an alternative to backup or migrate the data
472     of an OST or MDT at the file level. At the file-level, unused space is
473     omitted from the backup and the process may be completed quicker with a
474     smaller total backup size. Backing up a single OST device is not
475     necessarily the best way to perform backups of the Lustre file system,
476     since the files stored in the backup are not usable without metadata stored
477     on the MDT and additional file stripes that may be on other OSTs. However,
478     it is the preferred method for migration of OST devices, especially when it
479     is desirable to reformat the underlying file system with different
480     configuration options or to reduce fragmentation.</para>
481     <note>
482       <para>Since Lustre stores internal metadata that maps FIDs to local
483         inode numbers via the Object Index file, they need to be rebuilt at
484         first mount after a restore is detected so that file-level MDT backup
485         and restore is supported.  The OI Scrub rebuilds these automatically
486         at first mount after a restore is detected, which may affect MDT
487         performance after mount until the rebuild is completed.  Progress can
488         be monitored via <literal>lctl get_param osd-*.*.oi_scrub</literal>
489         on the MDS or OSS node where the target filesystem was restored.
490       </para>
491     </note>
492     <section xml:id="backup_fs_level.index_objects" condition="l2B">
493       <title>
494         <indexterm>
495           <primary>backup</primary>
496           <secondary>index objects</secondary>
497         </indexterm>Backing Up an OST or MDT (Backend File System Level)</title>
498       <para>Prior to Lustre software release 2.11.0, we can only do the backend
499         file system level backup and restore process for ldiskfs-based systems.
500         The ability to perform a zfs-based MDT/OST file system level backup and
501         restore is introduced beginning in Lustre software release 2.11.0.
502         Differing from an ldiskfs-based system, index objects must be backed up
503         before the unmount of the target (MDT or OST) in order to be able to
504         restore the file system successfully.  To enable index backup on the
505         target, execute the following command on the target server:</para>
506       <screen># lctl set_param osd-*.${fsname}-${target}.index_backup=1</screen>
507       <para><replaceable>${target}</replaceable> is composed of the target type
508         (MDT or  OST) plus the target index, such as <literal>MDT0000</literal>,
509         <literal>OST0001</literal>, and so on.</para>
510       <note><para>The index_backup is also valid for an ldiskfs-based system,
511         that will be used when migrating data between ldiskfs-based and
512         zfs-based systems as described in <xref linkend="migrate_backends"/>.
513       </para></note>
514     </section>
515     <section xml:id="backup_fs_level.ost_mdt">
516       <title>
517         <indexterm>
518           <primary>backup</primary>
519           <secondary>OST and MDT</secondary>
520         </indexterm>Backing Up an OST or MDT</title>
521       <para>If backing up an MDT, substitute <literal>mdt</literal> for
522         <literal>ost</literal> in the instructions below.</para>
523       <orderedlist>
524         <listitem>
525           <para><emphasis role="bold">Umount the target</emphasis></para>
526         </listitem>
527         <listitem>
528           <para><emphasis role="bold">Make a mountpoint for the file system.
529           </emphasis></para>
530           <screen>[oss]# mkdir -p /mnt/ost</screen>
531         </listitem>
532         <listitem>
533           <para><emphasis role="bold">Mount the file system.</emphasis></para>
534         <para>For ldiskfs-based systems:</para>
535         <screen>[oss]# mount -t ldiskfs /dev/<emphasis>{ostdev}</emphasis> /mnt/ost</screen>
536         <para>For zfs-based systems:</para>
537         <orderedlist>
538           <listitem>
539             <para>Import the pool for the target if it is exported. For example:
540               <screen>[oss]# zpool import lustre-ost [-d ${ostdev_dir}]</screen>
541             </para>
542           </listitem>
543           <listitem>
544             <para>Enable the <literal>canmount</literal> property on the target
545               filesystem. For example:
546               <screen>[oss]# zfs set canmount=on ${fsname}-ost/ost</screen>
547               You also can specify the mountpoint property. By default, it will
548               be: <literal>/${fsname}-ost/ost</literal>
549             </para>
550           </listitem>
551           <listitem>
552             <para>Mount the target as 'zfs'. For example:
553               <screen>[oss]# zfs mount ${fsname}-ost/ost</screen>
554             </para>
555           </listitem>
556         </orderedlist>
557       </listitem>
558       <listitem>
559         <para>
560           <emphasis role="bold">Change to the mountpoint being backed
561           up.</emphasis>
562         </para>
563         <screen>[oss]# cd /mnt/ost</screen>
564       </listitem>
565       <listitem>
566         <para>
567           <emphasis role="bold">Back up the extended attributes.</emphasis>
568         </para>
569         <screen>[oss]# getfattr -R -d -m '.*' -e hex -P . &gt; ea-$(date +%Y%m%d).bak</screen>
570         <note>
571           <para>If the <literal>tar(1)</literal> command supports the 
572           <literal>--xattr</literal> option (see below), the 
573           <literal>getfattr</literal> step may be unnecessary as long as tar
574           correctly backs up the <literal>trusted.*</literal> attributes.
575           However, completing this step is not harmful and can serve as an
576           added safety measure.</para>
577         </note>
578         <note>
579           <para>In most distributions, the 
580           <literal>getfattr</literal> command is part of the 
581           <literal>attr</literal> package. If the 
582           <literal>getfattr</literal> command returns errors like 
583           <literal>Operation not supported</literal>, then the kernel does not
584           correctly support EAs. Stop and use a different backup method.</para>
585         </note>
586       </listitem>
587       <listitem>
588         <para>
589           <emphasis role="bold">Verify that the 
590           <literal>ea-$date.bak</literal> file has properly backed up the EA
591           data on the OST.</emphasis>
592         </para>
593         <para>Without this attribute data, the MDT restore process will fail
594         and result in an unusable filesystem.  The OST restore process may be
595         missing extra data that can be very useful in case of later file system
596         corruption. Look at this file with <literal>more</literal> or a text
597         editor. Each object file should have a corresponding item similar to
598         this:</para>
599         <screen>[oss]# file: O/0/d0/100992
600 trusted.fid= \
601 0x0d822200000000004a8a73e500000000808a0100000000000000000000000000</screen>
602       </listitem>
603       <listitem>
604         <para>
605           <emphasis role="bold">Back up all file system data.</emphasis>
606         </para>
607         <screen>[oss]# tar czvf {backup file}.tgz [--xattrs] [--xattrs-include="trusted.*" --sparse .</screen>
608         <note>
609           <para>The tar 
610           <literal>--sparse</literal> option is vital for backing up an MDT.
611           Very old versions of tar may not support the
612           <literal>--sparse</literal> option correctly, which may cause the
613           MDT backup to take a long time.  Known-working versions include
614           the tar from Red Hat Enterprise Linux distribution (RHEL version
615           6.3 or newer) or GNU tar version 1.25 and newer.</para>
616         </note>
617         <warning>
618           <para>The tar <literal>--xattrs</literal> option is only available
619           in GNU tar version 1.27 or later or in RHEL 6.3 or newer.  The
620           <literal>--xattrs-include="trusted.*"</literal> option is
621           <emphasis>required</emphasis> for correct restoration of the xattrs
622           when using GNU tar 1.27 or RHEL 7 and newer.</para>
623         </warning>
624       </listitem>
625       <listitem>
626         <para>
627           <emphasis role="bold">Change directory out of the file
628           system.</emphasis>
629         </para>
630         <screen>[oss]# cd -</screen>
631       </listitem>
632       <listitem>
633         <para>
634           <emphasis role="bold">Unmount the file system.</emphasis>
635         </para>
636         <screen>[oss]# umount /mnt/ost</screen>
637         <note>
638           <para>When restoring an OST backup on a different node as part of an
639           OST migration, you also have to change server NIDs and use the 
640           <literal>--writeconf</literal> command to re-generate the
641           configuration logs. See 
642           <xref linkend="lustremaintenance" />(Changing a Server NID).</para>
643         </note>
644       </listitem>
645     </orderedlist>
646     </section>
647   </section>
648   <section xml:id="backup_fs_level.restore">
649     <title>
650     <indexterm>
651       <primary>backup</primary>
652       <secondary>restoring file system backup</secondary>
653     </indexterm>Restoring a File-Level Backup</title>
654     <para>To restore data from a file-level backup, you need to format the
655     device, restore the file data and then restore the EA data.</para>
656     <orderedlist>
657       <listitem>
658         <para>Format the new device.</para>
659         <screen>[oss]# mkfs.lustre --ost --index {<emphasis>OST index</emphasis>}
660 --replace --fstype=${fstype} {<emphasis>other options</emphasis>} /dev/<emphasis>{newdev}</emphasis></screen>
661       </listitem>
662       <listitem>
663         <para>Set the file system label (<emphasis role="bold">ldiskfs-based
664           systems only</emphasis>).</para>
665         <screen>[oss]# e2label {fsname}-OST{index in hex} /mnt/ost</screen>
666       </listitem>
667       <listitem>
668         <para>Mount the file system.</para>
669         <para>For ldiskfs-based systems:</para>
670         <screen>[oss]# mount -t ldiskfs /dev/<emphasis>{newdev}</emphasis> /mnt/ost</screen>
671         <para>For zfs-based systems:</para>
672         <orderedlist>
673           <listitem>
674             <para>Import the pool for the target if it is exported. For example:
675             </para>
676             <screen>[oss]# zpool import lustre-ost [-d ${ostdev_dir}]</screen>
677           </listitem>
678           <listitem>
679             <para>Enable the canmount property on the target filesystem. For
680               example:</para>
681             <screen>[oss]# zfs set canmount=on ${fsname}-ost/ost</screen>
682             <para>You also can specify the <literal>mountpoint</literal>
683               property. By default, it will be:
684               <literal>/${fsname}-ost/ost</literal></para>
685           </listitem>
686           <listitem>
687             <para>Mount the target as 'zfs'. For example:</para>
688             <screen>[oss]# zfs mount ${fsname}-ost/ost</screen>
689           </listitem>
690         </orderedlist>
691       </listitem>
692       <listitem>
693         <para>Change to the new file system mount point.</para>
694         <screen>[oss]# cd /mnt/ost</screen>
695       </listitem>
696       <listitem>
697         <para>Restore the file system backup.</para>
698         <screen>[oss]# tar xzvpf <emphasis>{backup file}</emphasis> [--xattrs] [--xattrs-include="trusted.*"] --sparse</screen>
699         <warning>
700           <para>The tar <literal>--xattrs</literal> option is only available
701           in GNU tar version 1.27 or later or in RHEL 6.3 or newer.  The
702           <literal>--xattrs-include="trusted.*"</literal> option is
703           <emphasis>required</emphasis> for correct restoration of the
704           MDT xattrs when using GNU tar 1.27 or RHEL 7 and newer.  Otherwise,
705           the <literal>setfattr</literal> step below should be used.
706           </para>
707         </warning>
708       </listitem>
709       <listitem>
710         <para>If not using a version of tar that supports direct xattr
711         backups, restore the file system extended attributes.</para>
712         <screen>[oss]# setfattr --restore=ea-${date}.bak</screen>
713         <note>
714           <para>If 
715           <literal>--xattrs</literal> option is supported by tar and specified
716           in the step above, this step is redundant.</para>
717         </note>
718       </listitem>
719       <listitem>
720         <para>Verify that the extended attributes were restored.</para>
721         <screen>[oss]# getfattr -d -m ".*" -e hex O/0/d0/100992 trusted.fid= \
722 0x0d822200000000004a8a73e500000000808a0100000000000000000000000000</screen>
723       </listitem>
724       <listitem>
725         <para>Remove old OI and LFSCK files.</para>
726         <screen>[oss]# rm -rf oi.16* lfsck_* LFSCK</screen>
727       </listitem>
728       <listitem>
729         <para>Remove old CATALOGS.</para>
730         <screen>[oss]# rm -f CATALOGS</screen>
731         <note>
732         <para>This is optional for the MDT side only. The CATALOGS record the
733         llog file handlers that are used for recovering cross-server updates.
734         Before OI scrub rebuilds the OI mappings for the llog files, the
735         related recovery will get a failure if it runs faster than the
736         background OI scrub.  This will result in a failure of the whole mount
737         process. OI scrub is an online tool, therefore, a mount failure means
738         that the OI scrub will be stopped.  Removing the old CATALOGS will
739         avoid this potential trouble.  The side-effect of removing old
740         CATALOGS is that the recovery for related cross-server updates will
741         be aborted. However, this can be handled by LFSCK after the system
742         mount is up.</para>
743         </note>
744       </listitem>
745       <listitem>
746         <para>Change directory out of the file system.</para>
747         <screen>[oss]# cd -</screen>
748       </listitem>
749       <listitem>
750         <para>Unmount the new file system.</para>
751         <screen>[oss]# umount /mnt/ost</screen>
752         <note><para>If the restored system has a different NID from the backup
753           system, please change the NID. For detail, please refer to
754           <xref linkend="lustremaint.changingservernid" />.  For example:</para>
755           <screen>[oss]# mount -t lustre -o nosvc ${fsname}-ost/ost /mnt/ost
756 [oss]# lctl replace_nids ${fsname}-OSTxxxx $new_nids
757 [oss]# umount /mnt/ost</screen></note>
758       </listitem>
759       <listitem>
760         <para>Mount the target as <literal>lustre</literal>.</para>
761         <para>Usually, we will use the <literal>-o abort_recov</literal> option
762           to skip unnecessary recovery. For example:</para>
763         <screen>[oss]# mount -t lustre -o abort_recov #{fsname}-ost/ost /mnt/ost</screen>
764         <para>Lustre can detect the restore automatically when mounting the
765           target, and then trigger OI scrub to rebuild the OIs and index objects
766           asynchronously in the background. You can check the OI scrub status
767           with the following command:</para>
768         <screen>[oss]# lctl get_param -n osd-${fstype}.${fsname}-${target}.oi_scrub</screen>
769       </listitem>
770     </orderedlist>
771     <para>If the file system was used between the time the backup was made and
772       when it was restored, then the online <literal>LFSCK</literal> tool will
773       automatically be run to ensure the filesystem is coherent. If all of the
774       device filesystems were backed up at the same time after Lustre was
775       was stopped, this step is unnecessary. In either case, the filesystem
776       will be immediately although there may be I/O errors reading
777       from files that are present on the MDT but not the OSTs, and files that
778       were created after the MDT backup will not be accessible or visible. See 
779       <xref linkend="dbdoclet.lfsckadmin" />for details on using LFSCK.</para>
780   </section>
781   <section xml:id="dbdoclet.backup_lvm_snapshot">
782     <title>
783     <indexterm>
784       <primary>backup</primary>
785       <secondary>using LVM</secondary>
786     </indexterm>Using LVM Snapshots with the Lustre File System</title>
787     <para>If you want to perform disk-based backups (because, for example,
788     access to the backup system needs to be as fast as to the primary Lustre
789     file system), you can use the Linux LVM snapshot tool to maintain multiple,
790     incremental file system backups.</para>
791     <para>Because LVM snapshots cost CPU cycles as new files are written,
792     taking snapshots of the main Lustre file system will probably result in
793     unacceptable performance losses. You should create a new, backup Lustre
794     file system and periodically (e.g., nightly) back up new/changed files to
795     it. Periodic snapshots can be taken of this backup file system to create a
796     series of "full" backups.</para>
797     <note>
798       <para>Creating an LVM snapshot is not as reliable as making a separate
799       backup, because the LVM snapshot shares the same disks as the primary MDT
800       device, and depends on the primary MDT device for much of its data. If
801       the primary MDT device becomes corrupted, this may result in the snapshot
802       being corrupted.</para>
803     </note>
804     <section remap="h3">
805       <title>
806       <indexterm>
807         <primary>backup</primary>
808         <secondary>using LVM</secondary>
809         <tertiary>creating</tertiary>
810       </indexterm>Creating an LVM-based Backup File System</title>
811       <para>Use this procedure to create a backup Lustre file system for use
812       with the LVM snapshot mechanism.</para>
813       <orderedlist>
814         <listitem>
815           <para>Create LVM volumes for the MDT and OSTs.</para>
816           <para>Create LVM devices for your MDT and OST targets. Make sure not
817           to use the entire disk for the targets; save some room for the
818           snapshots. The snapshots start out as 0 size, but grow as you make
819           changes to the current file system. If you expect to change 20% of
820           the file system between backups, the most recent snapshot will be 20%
821           of the target size, the next older one will be 40%, etc. Here is an
822           example:</para>
823           <screen>cfs21:~# pvcreate /dev/sda1
824    Physical volume "/dev/sda1" successfully created
825 cfs21:~# vgcreate vgmain /dev/sda1
826    Volume group "vgmain" successfully created
827 cfs21:~# lvcreate -L200G -nMDT0 vgmain
828    Logical volume "MDT0" created
829 cfs21:~# lvcreate -L200G -nOST0 vgmain
830    Logical volume "OST0" created
831 cfs21:~# lvscan
832    ACTIVE                  '/dev/vgmain/MDT0' [200.00 GB] inherit
833    ACTIVE                  '/dev/vgmain/OST0' [200.00 GB] inherit</screen>
834         </listitem>
835         <listitem>
836           <para>Format the LVM volumes as Lustre targets.</para>
837           <para>In this example, the backup file system is called 
838           <literal>main</literal> and designates the current, most up-to-date
839           backup.</para>
840           <screen>cfs21:~# mkfs.lustre --fsname=main --mdt --index=0 /dev/vgmain/MDT0
841  No management node specified, adding MGS to this MDT.
842     Permanent disk data:
843  Target:     main-MDT0000
844  Index:      0
845  Lustre FS:  main
846  Mount type: ldiskfs
847  Flags:      0x75
848                (MDT MGS first_time update )
849  Persistent mount opts: errors=remount-ro,iopen_nopriv,user_xattr
850  Parameters:
851 checking for existing Lustre data
852  device size = 200GB
853  formatting backing filesystem ldiskfs on /dev/vgmain/MDT0
854          target name  main-MDT0000
855          4k blocks     0
856          options        -i 4096 -I 512 -q -O dir_index -F
857  mkfs_cmd = mkfs.ext2 -j -b 4096 -L main-MDT0000  -i 4096 -I 512 -q
858   -O dir_index -F /dev/vgmain/MDT0
859  Writing CONFIGS/mountdata
860 cfs21:~# mkfs.lustre --mgsnode=cfs21 --fsname=main --ost --index=0
861 /dev/vgmain/OST0
862     Permanent disk data:
863  Target:     main-OST0000
864  Index:      0
865  Lustre FS:  main
866  Mount type: ldiskfs
867  Flags:      0x72
868                (OST first_time update )
869  Persistent mount opts: errors=remount-ro,extents,mballoc
870  Parameters: mgsnode=192.168.0.21@tcp
871 checking for existing Lustre data
872  device size = 200GB
873  formatting backing filesystem ldiskfs on /dev/vgmain/OST0
874          target name  main-OST0000
875          4k blocks     0
876          options        -I 256 -q -O dir_index -F
877  mkfs_cmd = mkfs.ext2 -j -b 4096 -L lustre-OST0000 -J size=400 -I 256 
878   -i 262144 -O extents,uninit_bg,dir_nlink,huge_file,flex_bg -G 256 
879   -E resize=4290772992,lazy_journal_init, -F /dev/vgmain/OST0
880  Writing CONFIGS/mountdata
881 cfs21:~# mount -t lustre /dev/vgmain/MDT0 /mnt/mdt
882 cfs21:~# mount -t lustre /dev/vgmain/OST0 /mnt/ost
883 cfs21:~# mount -t lustre cfs21:/main /mnt/main
884 </screen>
885         </listitem>
886       </orderedlist>
887     </section>
888     <section remap="h3">
889       <title>
890       <indexterm>
891         <primary>backup</primary>
892         <secondary>new/changed files</secondary>
893       </indexterm>Backing up New/Changed Files to the Backup File
894       System</title>
895       <para>At periodic intervals e.g., nightly, back up new and changed files
896       to the LVM-based backup file system.</para>
897       <screen>cfs21:~# cp /etc/passwd /mnt/main 
898  
899 cfs21:~# cp /etc/fstab /mnt/main 
900  
901 cfs21:~# ls /mnt/main 
902 fstab  passwd</screen>
903     </section>
904     <section remap="h3">
905       <title>
906       <indexterm>
907         <primary>backup</primary>
908         <secondary>using LVM</secondary>
909         <tertiary>creating snapshots</tertiary>
910       </indexterm>Creating Snapshot Volumes</title>
911       <para>Whenever you want to make a "checkpoint" of the main Lustre file
912       system, create LVM snapshots of all target MDT and OSTs in the LVM-based
913       backup file system. You must decide the maximum size of a snapshot ahead
914       of time, although you can dynamically change this later. The size of a
915       daily snapshot is dependent on the amount of data changed daily in the
916       main Lustre file system. It is likely that a two-day old snapshot will be
917       twice as big as a one-day old snapshot.</para>
918       <para>You can create as many snapshots as you have room for in the volume
919       group. If necessary, you can dynamically add disks to the volume
920       group.</para>
921       <para>The snapshots of the target MDT and OSTs should be taken at the
922       same point in time. Make sure that the cronjob updating the backup file
923       system is not running, since that is the only thing writing to the disks.
924       Here is an example:</para>
925       <screen>cfs21:~# modprobe dm-snapshot
926 cfs21:~# lvcreate -L50M -s -n MDT0.b1 /dev/vgmain/MDT0
927    Rounding up size to full physical extent 52.00 MB
928    Logical volume "MDT0.b1" created
929 cfs21:~# lvcreate -L50M -s -n OST0.b1 /dev/vgmain/OST0
930    Rounding up size to full physical extent 52.00 MB
931    Logical volume "OST0.b1" created
932 </screen>
933       <para>After the snapshots are taken, you can continue to back up
934       new/changed files to "main". The snapshots will not contain the new
935       files.</para>
936       <screen>cfs21:~# cp /etc/termcap /mnt/main
937 cfs21:~# ls /mnt/main
938 fstab  passwd  termcap
939 </screen>
940     </section>
941     <section remap="h3">
942       <title>
943       <indexterm>
944         <primary>backup</primary>
945         <secondary>using LVM</secondary>
946         <tertiary>restoring</tertiary>
947       </indexterm>Restoring the File System From a Snapshot</title>
948       <para>Use this procedure to restore the file system from an LVM
949       snapshot.</para>
950       <orderedlist>
951         <listitem>
952           <para>Rename the LVM snapshot.</para>
953           <para>Rename the file system snapshot from "main" to "back" so you
954           can mount it without unmounting "main". This is recommended, but not
955           required. Use the 
956           <literal>--reformat</literal> flag to 
957           <literal>tunefs.lustre</literal> to force the name change. For
958           example:</para>
959           <screen>cfs21:~# tunefs.lustre --reformat --fsname=back --writeconf /dev/vgmain/MDT0.b1
960  checking for existing Lustre data
961  found Lustre data
962  Reading CONFIGS/mountdata
963 Read previous values:
964  Target:     main-MDT0000
965  Index:      0
966  Lustre FS:  main
967  Mount type: ldiskfs
968  Flags:      0x5
969               (MDT MGS )
970  Persistent mount opts: errors=remount-ro,iopen_nopriv,user_xattr
971  Parameters:
972 Permanent disk data:
973  Target:     back-MDT0000
974  Index:      0
975  Lustre FS:  back
976  Mount type: ldiskfs
977  Flags:      0x105
978               (MDT MGS writeconf )
979  Persistent mount opts: errors=remount-ro,iopen_nopriv,user_xattr
980  Parameters:
981 Writing CONFIGS/mountdata
982 cfs21:~# tunefs.lustre --reformat --fsname=back --writeconf /dev/vgmain/OST0.b1
983  checking for existing Lustre data
984  found Lustre data
985  Reading CONFIGS/mountdata
986 Read previous values:
987  Target:     main-OST0000
988  Index:      0
989  Lustre FS:  main
990  Mount type: ldiskfs
991  Flags:      0x2
992               (OST )
993  Persistent mount opts: errors=remount-ro,extents,mballoc
994  Parameters: mgsnode=192.168.0.21@tcp
995 Permanent disk data:
996  Target:     back-OST0000
997  Index:      0
998  Lustre FS:  back
999  Mount type: ldiskfs
1000  Flags:      0x102
1001               (OST writeconf )
1002  Persistent mount opts: errors=remount-ro,extents,mballoc
1003  Parameters: mgsnode=192.168.0.21@tcp
1004 Writing CONFIGS/mountdata
1005 </screen>
1006           <para>When renaming a file system, we must also erase the last_rcvd
1007           file from the snapshots</para>
1008           <screen>cfs21:~# mount -t ldiskfs /dev/vgmain/MDT0.b1 /mnt/mdtback
1009 cfs21:~# rm /mnt/mdtback/last_rcvd
1010 cfs21:~# umount /mnt/mdtback
1011 cfs21:~# mount -t ldiskfs /dev/vgmain/OST0.b1 /mnt/ostback
1012 cfs21:~# rm /mnt/ostback/last_rcvd
1013 cfs21:~# umount /mnt/ostback</screen>
1014         </listitem>
1015         <listitem>
1016           <para>Mount the file system from the LVM snapshot. For
1017           example:</para>
1018           <screen>cfs21:~# mount -t lustre /dev/vgmain/MDT0.b1 /mnt/mdtback
1019 cfs21:~# mount -t lustre /dev/vgmain/OST0.b1 /mnt/ostback
1020 cfs21:~# mount -t lustre cfs21:/back /mnt/back</screen>
1021         </listitem>
1022         <listitem>
1023           <para>Note the old directory contents, as of the snapshot time. For
1024           example:</para>
1025           <screen>cfs21:~/cfs/b1_5/lustre/utils# ls /mnt/back
1026 fstab  passwds
1027 </screen>
1028         </listitem>
1029       </orderedlist>
1030     </section>
1031     <section remap="h3">
1032       <title>
1033       <indexterm>
1034         <primary>backup</primary>
1035         <secondary>using LVM</secondary>
1036         <tertiary>deleting</tertiary>
1037       </indexterm>Deleting Old Snapshots</title>
1038       <para>To reclaim disk space, you can erase old snapshots as your backup
1039       policy dictates. Run:</para>
1040       <screen>lvremove /dev/vgmain/MDT0.b1</screen>
1041     </section>
1042     <section remap="h3">
1043       <title>
1044       <indexterm>
1045         <primary>backup</primary>
1046         <secondary>using LVM</secondary>
1047         <tertiary>resizing</tertiary>
1048       </indexterm>Changing Snapshot Volume Size</title>
1049       <para>You can also extend or shrink snapshot volumes if you find your
1050       daily deltas are smaller or larger than expected. Run:</para>
1051       <screen>lvextend -L10G /dev/vgmain/MDT0.b1</screen>
1052       <note>
1053         <para>Extending snapshots seems to be broken in older LVM. It is
1054         working in LVM v2.02.01.</para>
1055       </note>
1056     </section>
1057   </section>
1058   <section xml:id="migrate_backends" condition="l2B">
1059       <title>
1060           <indexterm>
1061               <primary>backup</primary>
1062               <secondary>ZFS ZPL</secondary>
1063           </indexterm>Migration Between ZFS and ldiskfs Target Filesystems
1064       </title>
1065       <para>Beginning with Lustre 2.11.0, it is possible to migrate between
1066         ZFS and ldiskfs backends.  For migrating OSTs, it is best to use
1067         <literal>lfs find</literal>/<literal>lfs_migrate</literal> to empty out
1068         an OST while the filesystem is in use and then reformat it with the new
1069         fstype. For instructions on removing the OST, please see
1070         <xref linkend="lustremaint.remove_ost"/>.</para>
1071       <section remap="h3" xml:id="migrate_backends.zfs2ldiskfs">
1072         <title>
1073           <indexterm>
1074             <primary>backup</primary>
1075             <secondary>ZFS to ldiskfs</secondary>
1076           </indexterm>Migrate from a ZFS to an ldiskfs based filesystem</title>
1077         <para>The first step of the process is to make a ZFS backend backup
1078           using <literal>tar</literal> as described in
1079           <xref linkend="backup_fs_level"/>.</para>
1080         <para>Next, restore the backup to an ldiskfs-based system as described
1081           in <xref linkend="backup_fs_level.restore"/>.</para>
1082       </section>
1083       <section remap="h3" xml:id="migrate_backends.ldiskfs2zfs">
1084         <title>
1085           <indexterm>
1086             <primary>backup</primary>
1087             <secondary>ZFS to ldiskfs</secondary>
1088           </indexterm>Migrate from an ldiskfs to a ZFS based filesystem</title>
1089         <para>The first step of the process is to make an ldiskfs backend backup
1090           using <literal>tar</literal> as described in
1091           <xref linkend="backup_fs_level"/>.</para>
1092         <para><emphasis role="strong">Caution:</emphasis>For a migration from
1093           ldiskfs to zfs, it is required to enable index_backup before the
1094           unmount of the target.  This is an additional step for a regular
1095           ldiskfs-based backup/restore and easy to be missed.</para>
1096         <para>Next, restore the backup to an ldiskfs-based system as described
1097           in <xref linkend="backup_fs_level.restore"/>.</para>
1098       </section>
1099   </section>
1100 </chapter>