This feature is available with the VTL Extended Edition and the Tape Testing Framework Edition File-backed Storage Pools are essentially storage pools which allow for creation of virtual cartridges backed by files rather than disks. The biggest advantages of file-backed pools is that virtual cartridges can be transfered from one VTL machine to another using simple utilities such as rsync for disaster recovery.
Creating a File-backed Storage Pool
Edit /quadstorvtl/etc/quadstor.conf and add the following line
EnableFilePools=85
In the "Storage Pools" page, click on the "Add Pool" button. The form displayed is as seen in the figure below
In the form shown
- Pool Name is the name of the storage pool
- WORM if checked, indicates that the virtual cartridges created from the pool with have the WORM property set
- File if checked indicates the storage pool is a file-backed storage pool
- Pool Directory is the directory where the virtual cartridges will be stored. This is only relevant if "File" is checked. The directory path specified must exist before creating the pool
ls -l /opt/filepool1/ total 4 drwx------ 2 root root 4096 Nov 12 17:21 VCART1 ls -l /opt/filepool1/VCART1/ total 272 -rw------- 1 root root 0 Nov 12 17:21 p0.data -rw------- 1 root root 0 Nov 12 17:21 p0.meta -rw------- 1 root root 4268032 Nov 12 17:21 tapemetaAs seen in the contents for directory for VCART1 there are atleast three files created. tapemeta contains the virtual tape metadata p0.meta contains the metadata of partition 0 p0.data contains the data for partition 0 Similarly if additional partitions are created on the tape, they would be name p1.meta, p1.data and so on
When creating a virtual tape, if any of the above named files exist the will be overwritten