web-dev-qa-db-ja.com

bareos両方のテープドライブを使用(多重化ではない)

2台のドライブを備えたNeoseriesT24(Flexstor II)オートローダーを使用しています。 「フル」というラベルの付いたプールにテープ(11本)があります。

両方とも「フル」プールに対して2つのジョブを実行すると、それらは順番に待機するため、ドライブ0で実行されているジョブとドライブ1で実行されているジョブの代わりに同じドライブ(0)を使用できます。

これは、ラベル付けプロセス中にドライブ0を選択したためですか?

フルプールのテープをオートローダーで使用可能なドライブにして、2つのジョブを同時に実行できるようにすることは可能ですか?

2つのSDデーモンを実行する必要がありますか?

** 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"
}

**少ない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
}
2
BurningKrome

から BareOSドキュメント

デフォルトでは、Bareosジョブはすでにマウントされているボリュームへの書き込みを優先します。複数ドライブのオートチェンジャーがあり、Bareosが同じプール内の複数のボリュームに同時に書き込むようにする場合は、Prefer Mounted Volumes Dir Job = no。これにより、ストレージデーモンがドライブを最大限に活用できるようになります。

1
wazoox