On Nov 25, 2012, at 5:31 AM, Marco van Wieringen <m...@planets.elm.net> wrote:

> Olivier L. <olivier <at> luckol.net> writes:
>> 
>> 
>>    Hi all,when I
>>        use the directive PoolUncopiedJobs, bacula copy only 99
>>      jobs. Is there a limitation on the
>>      number of jobs
>>      that can be copied
>>      by this directive.When I use the
>>        following SQL query directly on PostgresSQL, result list
>>      it's over 1000 jobs.SELECT DISTINCTJob.JobId,
>>      Job.Name,
>>      Job.level,
>>      Job.jobstatus,
>>      Job.StartTime,
>>      Job.EndTime,
>>      Job.jobfiles,
>>      Job.jobbytesFROM Job, PoolWHERE Pool.Name =
>>      '% 1'   AND Pool.PoolId = Job.PoolId   AND Job.Type =
>>          'B'   Job.JobStatus AND IN
>>          ('T', 'W')   AND Job.jobBytes> 0   Job.JobId AND NOT
>>          IN (SELECT FROM Job
>>      WHERE type PriorJobId
>>      IN('B', 'C')
>>          AND Job.JobStatus
>>      IN ('T',
>>          'W')   AND PriorJobId! = 0)ORDER by Job.StartTime;
>>    Any idea why it's only 99 jobs on my tape ?
> See dird migrate.c line 673. Per run of PoolUncopiedJobs it will only
> run 100 jobs at a time to make sure it doesn't blow upo the dird. So if
> you have a lot of jobs to copy you just need to run the copy job a couple
> of times. It will run 100 jobs each time so for 1000 jobs that is at least
> 10 runs. I guess this is your first copy run or do you run more then 1000 
> jobs a
> night ?
> 
> You can increase the limit in the code and recompile the director but the
> limit is there for a reason e.g. not to blow up the director and as the
> work around is kind of obvious e.g. run the copy multiple times as it will
> only copy a job once.

NOTE: wait for one set of 100 to complete before running the next.  Otherwise, 
I suspect you will see duplicates. 
------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to