Hi, I'm running bacula 7.4.7 and have a job to occasionally copy recent
full jobs from my full pool to my tapes (Full-Poll -> Tape-Pool).

The gist of the copy job is here:

    Name = CopyFull2Tape
    Type = Copy
    Level = Full
    Pool = Full-Pool
    Selection Type = SQL Query
    Selection Pattern = "
select max(j.jobid) from job j, pool p where
    p.name='Full-Pool' and j.poolid=p.poolid and
    j.jobstatus='T' and j.type='B' and j.level='F' and j.jobbytes>0 and
    starttime>now()-'3 weeks'::interval
    group by j.name;"

So I'm explicitly only copying completed full jobs. And yet, the director
gives me this:

27888  Copy Full          0         0  CopyFull2Tape     is waiting on max
Storage jobs
27902  Copy Full          0         0  CopyFull2Tape     is running
27903  Back Incr          0         0  ca2-regular       is running
27904  Copy Full          0         0  CopyFull2Tape     is waiting on max
Storage jobs
27905  Back Incr          0         0  db5-regular       is waiting
execution
27906  Copy Full          0         0  CopyFull2Tape     is waiting on max
Storage jobs
27907  Back Incr          0         0  dbc1n1-cfg        is waiting
execution
27908  Copy Full          0         0  CopyFull2Tape     is waiting on max
Storage jobs

What are those 'Back Incr' jobs? It's confusing.
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to