Hi, I use bacula version 1.38.11 and I have configured concurrent Jobs using.
I use too a aoutochanger with two drives to keep my backups.
If I run two simultaneous Backups using diferent tapes (one for each Job),
bacula use the two drives and make this two backups concurrently.
But if I run one backup and one restore simultaneously or two restores
simultaneously only running one Job and the other is waiting storage:


Running Jobs:
 JobId Level   Name                       Status
======================================================================
   546         RestoreFiles-Linux.2006-10-16_11.50.19 is running
   547         RestoreFiles-Linux.2006-10-16_12.05.39 is waiting on max
Storage jobs



My concurrent Jobs configuration is the following:

bacula-dir.conf

Director {                            # define myself
  Name = bacula-dir
  Description = "Director de Bacula"
  DIRport = 9101                # where we listen for UA connections
  QueryFile = "/etc/bacula/query.sql"
  WorkingDirectory = "/var/bacula"
  PidDirectory = "/var/run"
  Maximum Concurrent Jobs = 20
  Password = "*****"        # Console password
  Messages = Standard
}

JobDefs {
  Name = "Default"
  Type = Backup
  Level = Full
  Schedule = "Setmanal"
  Storage = Autochanger
  Max Wait Time = 15 minutes
  Full Backup Pool = Full
  Pool = Full
  Priority = 10
  Maximum Concurrent Jobs = 20
}


                            ...........


                All my Jobs using "Default" JobDefs

                            ...........




Job {
  Name = "RestoreFiles-Linux"
  Type = Restore
  Client=bacula-fd                
  FileSet="Linux"
  Storage = Autochanger                                  
  Pool = Full
  Messages = Linux
  Where = /tmp/bacula-restores
  Maximum Concurrent Jobs = 20
}


Job {
  Name = "RestoreFiles-Windows"
  Type = Restore
  Client=davidov-fd                
  FileSet="Windows"
  Storage = Autochanger                                    
  Pool = Full
  Messages = Windows
  Where = "D:/bacula-restores"
  Maximum Concurrent Jobs = 20
}



                            ...........

All my clients are similar this:
                            ...........


Client {
  Name = bacula-fd
  #Address = localhost
  Address = bacula.upc.es
  #FDPort = 29102
  FDPort = 9102
  Catalog = MyCatalog
  Password = "bacula-fd"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 6 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
  Maximum Concurrent Jobs = 20


Storage {
  Name = Autochanger    
  Address = bacula.upc.es                
  SDPort = 9103
  Password = "storage-Autochanger"          # password for Storage daemon
  Device = Autochanger                      # must be same as Device in
Storage daemon
  Media Type = DLT-7000                  # must be same as MediaType in
Storage daemon
  Autochanger = yes                   # enable for autochanger device
  Maximum Concurrent Jobs = 20
}




bacula-fd:

FileDaemon {                          # this is me
  Name = bacula-fd
  FDport = 9102                  # where we listen for the director
  WorkingDirectory = /var/bacula
  Pid Directory = /var/run
  Maximum Concurrent Jobs = 20
}




bacula-sd:

Storage {                             # definition of myself
  Name = bacula-sd
  SDPort = 9103                  # Director's port      
  WorkingDirectory = "/var/bacula"
  Pid Directory = "/var/run"
  Maximum Concurrent Jobs = 20
}


Can anybody help me, please?

Tanks.

David.
-- 
View this message in context: 
http://www.nabble.com/Concurrent-restores-problem-tf2458801.html#a6853040
Sent from the Bacula - Users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to