Hi all,

my director (2.0.3) does not run two "independent" jobs
simultaneously.

I have set "Maximum Concurrent Jobs = 10" in the Director{}
ressource, but this seems to have no effect.

The strange thing is that I only try to run two different jobs which
write to two different storages at the same time, which should be no
problem at all.

My setup is like that:

+----------+  +----------+
| Client-1 |  | Client-2 |
+----------+  +----------+
         |      |
       Job1    Job2
         |      |
         v      v
      +----------+
      | Director |
      +----------+
         |      |
       Job1    Job2
         |      |
         v      v
+-----------+  +-------------+
| TapeDrive |  | DiskStorage |
+-----------+  +-------------+

The two jobs use the same Schedule{}

At 3:05 Job1 starts but Job2 only starts as soon as Job1 has
finished. So if Job1 is waiting for a new Tape all night long, Job2
is still waiting for execution in the morning...

What could be wrong with my setup?

Here is the relevant parts of the bacula-dir.conf file:

Schedule {
  Name = "WeeklyCycle"
  Run = Level=Full         SpoolData=no  1st sun at 03:05
  Run = Level=Differential SpoolData=yes 2nd-5th sun at 03:05
  Run = Level=Incremental  SpoolData=yes mon-sat at 03:05
}

Director {                            # define myself
  [...]
  Maximum Concurrent Jobs = 10
  [...]
}

JobDefs {
  Name = "DefaultBackupJob"
  Type = Backup
  Level = Incremental
  # Tape Storage:
  Storage = lisa-sd
  # Client1:
  Client = lisa-fd
  Messages = Standard
  Pool = Default
  Priority = 500
  Spool Attributes = yes
  # SpoolData = yes
  # (will be set on Schedule basis)
  Maximum Concurrent Jobs = 10
}

Job {
  # Job1
  Name = "lisa-ImportantData"
  JobDefs = "DefaultBackupJob"
  Schedule = "WeeklyCycle"
  FileSet = "lisa ImportantData FileSet"
  Write Bootstrap = "/var/lib/bacula/Client_lisa.bsr"
}

Job {
  # Job2
  Name = "vesta-ImportantData"
  JobDefs = "DefaultBackupJob"
  Schedule = "WeeklyCycleNoSpooling"
  Type = Backup
  # Client2:
  Client = vesta-fd
  Level = Incremental
  # DiskStorage:
  Storage = vesta-sd
  Messages = Standard
  Pool = VestaFtp
  Priority = 500

  FileSet = "vesta ImportantData FileSet"
  Write Bootstrap = "/var/lib/bacula/Client_vesta.bsr"
  Spool Data = no
  Spool Attributes = no

  RunScript {
    Runs When = Before
    Command = /usr/local/sbin/bacula-run_before_job.sh
  }

  RunScript {
    Runs When = After
    Command = /usr/local/sbin/bacula-run_after_job.sh
  }
}

Greetings
-Marc
-- 
+------------------------------------------------------------------+
|              --> http://www.links2linux.de <--                   |
|                                                                  |
+---Registered-Linux-User-#136487------------http://counter.li.org +

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to