ONLINE JFS BACKUP (Split Mirroring) In AIX 4.3.3
This is triple split mirroring backup. It takes a system that is 3 way mirrored,
makes a split off of one of the mirrors, and then backs it up, then reintegrates
a mirrored copy. It is creating a snapshot of the logical volume that contains
the file system. Logical volume and its JFS log logical volume MUST be
mirrored. File system activity should be minimal (quiescing) while the split is
taking place.
It is my understanding that this can be done with only two copies, but the
user is less protected in case of disk failure. Making an online backup of a
mounted JFS file system has several rules. One is that the data that was
written immediately before the snapshot is taken will not contain those
changes. Modifications that start after the snapshot begins may not be
present in the backup copy as well.
You will use the splitcopy command to make this happen.
#chfs -a splitcopy=/backup -a copy=3 /testfs
to reintegrate a mirrored copy simply remove the backup file system by using
the rmfs command
# unmount /backup
# rmfs /backup
=========================
As stated you can do the splitlvcopy command as well.
To split one copy of each logical partition belonging to logical volume named oldlv
which currenttly has 3 copies of each logical partition, and create the logical volume
newlv, enter:
splitlvcopy -y newlv oldlv 2
Each logical partition in the logical volume oldlv now has two physical partitions. Each
logical partition in the logical volume newlv now has one physical partition
.
The newer levels of Sysback, it is my understanding also breaks the mirror, backs it up and puts it back....Sysback is a separate product that IBM sells.
One last word of caution. the redo logs....Are you bringing the system down and stopping the logs before backing them up? If not, a restore could be interesting since the timestamps may be off. Some have done an export of the tables to a filesystem and backed that up during the night....others use sysback, but the problem is the same if the data is not stagnant.
Good Luck
#-)