|
From: Martin S. <ma...@li...> - 2010-12-06 13:24:16
|
>>>>> On Sun, 5 Dec 2010 14:00:52 +0100, pbdlists said:
>
> Example 1:
> turtle-010 is doing a full backup with 37'465 files
> and 370 MB (manually run with the run command) and the next incremental a
> couple of hours later counts 1'399 files with 866 MB. There's nothing
> going on on that machine that would install additional files or
> anything. The incremental is twice the size of the full!
Use list files jobid=nnn (for jobid nnn) to find which files are in the
incremental backup and then check their sizes on disk.
Beware that this will list deleted files too (a bug in how list files works
for accurate backups). You could also try the SQL command:
SELECT Path.Path, Filename.Name
FROM File,Filename,Path
WHERE File.FileIndex > 0 AND Filename.FilenameId=File.FilenameId
AND Path.PathId=File.PathId AND JobId=nnn;
> - The jobs do have Accurate = yes
Can you post the job and fileset definition?
> *llist jobid=37
> JobId: 37
> Job: BackupClient-turtle-121.2010-12-05_02.06.00_37
> Name: BackupClient-turtle-121
> PurgedFiles: 0
> Type: B
> Level: I
> ClientId: 18
> Name: bacula-fd-turtle-121
> JobStatus: T
> SchedTime: 2010-12-05 02:06:00
> StartTime: 2010-12-05 02:06:03
> EndTime: 2010-12-05 03:50:42
> RealEndTime: 2010-12-05 03:50:42
> JobTDate: 1,291,521,042
> VolSessionId: 2
> VolSessionTime: 1,291,501,310
> JobFiles: 269,108
> JobErrors: 1
> JobMissingFiles: 0
> PoolId: 6
> PooLname: Pool-File-pbdhetzner
> PriorJobId: 0
> FileSetId: 4
> FileSet: turtle-121Fileset
It says "JobErrors: 1" here. Can you post the log from this job?
__Martin
|