>>>>> On Wed, 13 Jun 2018 17:14:23 +0200, Mariusz Mazur said:
> 
> 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.

I've noticed that too, but I think it might just be a bug in the output of
status dir (it shows the default level for that job name from the config file
instead of the actual level).  If you check the catalog with "list jobs" when
you will probably find that they are full jobs.

__Martin

------------------------------------------------------------------------------
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