Spool Directory and Scheduled Backups

The Spool Directory contains all files from the watched folders that were created and/or changed. It keeps a copy of every version of the files.

An example of this directory can be seen below:

Result

You must schedule backup jobs with a proper Files in order to backup those files with Bacula. Following this example, the job configuration would be:

FileSet {
    Name = cdp
    Include {
        Options {
            compression = LZO
        }
        Plugin = "cdp: userHome=/home/user1"
    }
}
Job {
    Name = CDP
    Client = myclient-fd
    Type = Backup
    Pool = Default
    Schedule = Hourly
    Messages = Standard
    FileSet = cdp
}

The Job reads the journal file to select which files from the Spool Directory should be backed up. After that, the files will be available to be restored at any time:

Job Files

Go back to the CDP Plugin Configuration chapter.

Go back to the main Bacula Enterprise Continuous Data Protection page.

Go back to the main Advanced Features Usage page.