Hi all,

I am having trouble with concurrent jobs not spooling in parallel -- they
spool and despool, one at a time, in sequential order.  I only get one job
running at a time.  I want daily backups that write one volume to disk,
per job, with concurrent jobs that spool in parallel.  Can someone please
help me figure out what I'm doing wrong?  My setup follows.

Thank you,

Adam

         bacula
daemon   version   os
-----------------------------------
director 1.38.11_1 FreeBSD 6.1
storage  1.38.11_1 FreeBSD 6.1
file     1.36.2    debian linux

The director, storage and file daemons have max concurrent jobs set to 20.
Here are the relevant configuration snippets.

# dir.conf ###########################################

Director {
  Maximum Concurrent Jobs = 20
}

JobDefs {
  Pool = Default
  SpoolData = yes
  Spool Attributes = yes
  Maximum Concurrent Jobs = 20
}

Storage {
  Name = File
  Device = FileStorage
  Media Type = File
}

Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes
  Volume Retention = 2 weeks
  # one volume (file) per job
  Maximum Volume Jobs = 1
}
###

# sd.conf ############################################

Storage {
  Maximum Concurrent Jobs = 20
}

Device {
  Name = FileStorage
  Media Type = File
  Archive Device = /some/disk
  LabelMedia = yes;
  Random Access = Yes;
  AutomaticMount = yes;
  RemovableMedia = no;
  AlwaysOpen = no;
  Spool Directory = /some/spool
}
###

# fd.conf ############################################

FileDaemon {
  Maximum Concurrent Jobs = 20
}


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to