bareos Usando as duas unidades de fita (não multiplexando)

2

Estou usando um autocarregador Neoseries T24 (Flexstor II) com duas unidades. Eu tenho fitas (11 delas) em uma piscina chamada 'Full'.

Quando executo dois jobs, ambos para o pool 'Full', eles aguardarão em sequência para que possam usar a mesma unidade (0) em vez de um executado na unidade 0 e outro na unidade 1.

É porque selecionei a unidade 0 durante o processo de etiquetagem?

É possível ter uma fita do pool completo como uma unidade disponível no autoloader para que duas tarefas possam ser executadas simultaneamente?

Dois daemons SD precisam estar em execução?

** bareos-sd.d / server-sd.conf **

storage {
  Name = server-sd
  Maximum Concurrent Jobs = 20
  # Plugin Directory = /usr/lib/bareos/plugins
  # Plugin Names = ""
}

** bareos-sd.d / autochanger / autochanger-0.conf **

Autochanger {
  Name = "FlexStor_II"
  Changer Device = /dev/tape/by-id/scsi-1BDT_FlexStor_II_xxxxxxxxxxx_LL0 
  Device = ULTRIUM-HH7-0
  Device = ULTRIUM-HH7-1
  Changer Command = "/usr/lib/bareos/scripts/mtx-changer %c %o %S %a %d"
}

** menos bareos-sd.d / device / ULTRIUM-HH7-0.conf **

Device {
    Name = "ULTRIUM-HH7-0"
    DeviceType = tape
    DriveIndex = 0
    ArchiveDevice = /dev/tape/by-id/scsi-xxxxxxxxxxxxxx001-nst
    MediaType = LTO-7
    AutoChanger = yes                       # default: no
    AutomaticMount = yes                    # default: no
    MaximumFileSize = 500GB                  # default: 1000000000 (1GB)
    AlwaysOpen = yes
    Autoselect = yes
    RemovableMedia = yes
}

** bareos-sd.d / device / ULTRIUM-HH7-1.conf **

Device {
    Name = "ULTRIUM-HH7-1"
    DeviceType = tape
    DriveIndex = 1
    ArchiveDevice = /dev/tape/by-id/scsi-xxxxxxxxxxxxxx004-nst
    MediaType = LTO-7
    AutoChanger = yes                       # default: no
    AutomaticMount = yes                    # default: no
    MaximumFileSize = 500GB                  # default: 1000000000 (1GB)
    AlwaysOpen = yes
    Autoselect = yes
    RemovableMedia = yes
}

** bareos-dir.d / storage / Tape.conf **

Storage {
  Name = Tape
  Address = server                # N.B. Use a fully qualified name here (do not use "localhost" here).
  Password = "e9cxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxg"
  Device = FlexStor_II 
  Media Type = LTO-7
  Autochanger = yes
}
    
por BurningKrome 25.09.2017 / 15:19

1 resposta

0

De a documentação do BareOS :

As a default, Bareos jobs will prefer to write to a Volume that is already mounted. If you have a multiple drive autochanger and you want Bareos to write to more than one Volume in the same Pool at the same time, you will need to set Prefer Mounted Volumes Dir Job = no. This will cause the Storage daemon to maximize the use of drives.

    
por 05.02.2018 / 17:17