web-dev-qa-db-ja.com

Bacula&Multiple TapeDevicesなど

Baculaは2つのテープデバイスを同時に使用しません。 (検索#-#-# TL; DR)

少し背景、おそらく。

$dayjobで適切に機能するバックアップソリューション(20TBを超えるバックアップは安価または簡単ではない)を取得しようとする過程で、私たちはそれを機能させるためにたくさんのものを購入しました。

まず、Spectra Logic T50eオートチェンジャ、LTO5の40スロットがあり、そのロボットには、IBM HH5 Ultrium LTO5ドライブのペアがあり、FibreChannelアービトレーテッドループを介してバックアップサーバーに接続されています。

バックアップサーバーがあります。2x16コアAMD62xxCPUと32GBのRAMを搭載したDellR715。おいしい。そのサーバーには2つのEmulex FCe-12000EカードとIntel X520-SRデュアルポート10GE NICがあります。

Commvault Backup(非NDMP)も販売されました。

ここが本当に複雑になるところです。

Spectra LogicとCommvaultはどちらも、ライブラリとソフトウェアをセットアップするそれぞれのエンジニアを派遣しました。コントローラが正常に動作している限り、Commvaultは正常に動作していました。 DellサーバーにはUbuntu12.04サーバーがあり、MediaAgent for CommVaultを実行し、BlueArc NASをNFSとして/homeなどのいくつかのマウントポイント、および/mnt内のいくつかのものにマウントします。

NFSマウントポイントからバックアップすると、〜= 290GB/hrスループットが表示されました。これはCRAPです。20時間のオッドTBを取得するには48時間未満のバックアップウィンドウです。BlueArcの定格最大値は700MB/s2460GB/hr)、定格最大書き込み速度テープデバイスでは、ドライブあたり140MB /秒であるため、492GB/hr(または合計スループットの場合は2倍)になります。

したがって、次のステップはIOzoneを使用してNFSパフォーマンスをベンチマークすることでした。これにより、(20スレッドを超える)壮大な書き込みパフォーマンスが得られ、1.5〜2.5TB/hrの書き込みに似ていますが、読み取りパフォーマンスは絶望的です。最大343GB/hrを超えることはできませんでした。したがって、343GB/hrがNASでの読み取りパフォーマンスの理論上の最大値であると仮定すると、理論的にはa) CommVault、およびb)からそのパフォーマンスを得ることができるはずです。 =その他のバックアップエージェント。

そうではありません。 Commvaultは200-250GB/hrのスループットしか得られないようで、実験から、Baculaをインストールして、プレイの状態を確認しました。たとえば、BaculaがCommvaultよりも一貫して優れたパフォーマンスと速度を提供した場合、"**$.$ Refunds Plz $.$**"と言うことができます。

#-#-#

悲しいかな、私はBaculaに別の問題を見つけました。 Commvaultは、1つのスレッドでマウントポイントの一部から読み取り、それをテープデバイスにストリーミングし、他のスレッドで他のディレクトリから読み取り、オートチェンジャの2番目のドライブに書き込むことは、非常にうれしいようです。

私の人生では、Baculaをマウントして2つのテープドライブに書き込むことはできません同時に

私が試したこと:

  • Director、ファイル、およびストレージデーモンでのMaximum Concurrent Jobs = 20の設定
  • ジョブ定義でのPrefer Mounted Volumes = noの設定
  • Autochangerリソースに複数のデバイスを設定します。

ドキュメンテーションは非常に単一のドライブ中心であるようで、これを使ってロケットをハムスターに固定したように少し感じます。 Bacula構成の例の大部分は、DDS4ドライブ、手動テープスワッピング、およびFreeBSDまたはIRIXシステム用です。

これが不可能である場合、私はあまり気にしないことを付け加えるべきでしょうが、私は驚かれることでしょう。私は基本的に、Baculaを高額なソフトウェアベンダーに固執させる証拠として使用したいと考えています。

@KyleBrandtが最新のテープソリューションと同様のことをしたことをどこかで読みました。

設定ファイル:bacula-dir.conf

#
# Default Bacula Director Configuration file

Director {                            # define myself
  Name = backuphost-1-dir
  DIRport = 9101                # where we listen for UA connections
  QueryFile = "/etc/bacula/scripts/query.sql"
  WorkingDirectory = "/var/lib/bacula"
  PidDirectory = "/var/run/bacula"
  Maximum Concurrent Jobs = 20
  Password = "yourekiddingright"         # Console password
  Messages = Daemon
  DirAddress = 0.0.0.0
  #DirAddress = 127.0.0.1
}

JobDefs {
  Name = "DefaultFileJob"
  Type = Backup
  Level = Incremental
  Client = backuphost-1-fd 
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = File
  Messages = Standard
  Pool = File
  Priority = 10
  Write Bootstrap = "/var/lib/bacula/%c.bsr"
}

JobDefs {
  Name = "DefaultTapeJob"
  Type = Backup
  Level = Incremental
  Client = backuphost-1-fd
  FileSet = "Full Set"
  Schedule = "WeeklyCycle"
  Storage = "SpectraLogic"
  Messages = Standard
  Pool = AllTapes
  Priority = 10
  Write Bootstrap = "/var/lib/bacula/%c.bsr"
  Prefer Mounted Volumes = no

}

#
# Define the main nightly save backup job
#   By default, this job will back up to disk in /nonexistant/path/to/file/archive/dir
Job {
  Name = "BackupClient1"
  JobDefs = "DefaultFileJob"
}

Job {
  Name = "BackupThisVolume"
  JobDefs = "DefaultTapeJob"
  FileSet = "SpecialVolume"
}
#Job {
#  Name = "BackupClient2"
#  Client = backuphost-12-fd
#  JobDefs = "DefaultJob"
#}

# Backup the catalog database (after the nightly save)
Job {
  Name = "BackupCatalog"
  JobDefs = "DefaultFileJob"
  Level = Full
  FileSet="Catalog"
  Schedule = "WeeklyCycleAfterBackup"
  # This creates an ASCII copy of the catalog
  # Arguments to make_catalog_backup.pl are:
  #  make_catalog_backup.pl <catalog-name>
  RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
  # This deletes the copy of the catalog
  RunAfterJob  = "/etc/bacula/scripts/delete_catalog_backup"
  Write Bootstrap = "/var/lib/bacula/%n.bsr"
  Priority = 11                   # run after main backup
}

#
# Standard Restore template, to be changed by Console program
#  Only one such job is needed for all Jobs/Clients/Storage ...
#
Job {
  Name = "RestoreFiles"
  Type = Restore
  Client=backuphost-1-fd                 
  FileSet="Full Set"                  
  Storage = File                      
  Pool = Default
  Messages = Standard
  Where = /srv/bacula/restore
}

FileSet {
  Name = "SpecialVolume"
  Include {
    Options {
      signature = MD5
    }
  File = /mnt/SpecialVolume
  }
  Exclude {
    File = /var/lib/bacula
    File = /nonexistant/path/to/file/archive/dir
    File = /proc
    File = /tmp
    File = /.journal
    File = /.fsck
  }
}


# List of files to be backed up
FileSet {
  Name = "Full Set"
  Include {
    Options {
      signature = MD5
    }
    File = /usr/sbin
  }

  Exclude {
    File = /var/lib/bacula
    File = /nonexistant/path/to/file/archive/dir
    File = /proc
    File = /tmp
    File = /.journal
    File = /.fsck
  }
}

Schedule {
  Name = "WeeklyCycle"
  Run = Full 1st Sun at 23:05
  Run = Differential 2nd-5th Sun at 23:05
  Run = Incremental mon-sat at 23:05
}

# This schedule does the catalog. It starts after the WeeklyCycle
Schedule {
  Name = "WeeklyCycleAfterBackup"
  Run = Full Sun-sat at 23:10
}

# This is the backup of the catalog
FileSet {
  Name = "Catalog"
  Include {
    Options {
      signature = MD5
    }
    File = "/var/lib/bacula/bacula.sql"
  }
}

# Client (File Services) to backup
Client {
  Name = backuphost-1-fd
  Address = localhost
  FDPort = 9102
  Catalog = MyCatalog
  Password = "surelyyourejoking"          # password for FileDaemon
  File Retention = 30 days            # 30 days
  Job Retention = 6 months            # six months
  AutoPrune = yes                     # Prune expired Jobs/Files
}

#
# Second Client (File Services) to backup
#  You should change Name, Address, and Password before using
#
#Client {
#  Name = backuphost-12-fd                
#  Address = localhost2
#  FDPort = 9102
#  Catalog = MyCatalog
#  Password = "i'mnotjokinganddontcallmeshirley"         # password for FileDaemon 2
#  File Retention = 30 days            # 30 days
#  Job Retention = 6 months            # six months
#  AutoPrune = yes                     # Prune expired Jobs/Files
#}


# Definition of file storage device
Storage {
  Name = File
# Do not use "localhost" here    
  Address = localhost                # N.B. Use a fully qualified name here
  SDPort = 9103
  Password = "lalalalala"
  Device = FileStorage
  Media Type = File
}

Storage {
  Name = "SpectraLogic"
  Address = localhost
  SDPort = 9103
  Password = "linkedinmakethebestpasswords"
  Device = Drive-1
  Device = Drive-2
  Media Type = LTO5
  Autochanger = yes
}



# Generic catalog service
Catalog {
  Name = MyCatalog
# Uncomment the following line if you want the dbi driver
# dbdriver = "dbi:sqlite3"; dbaddress = 127.0.0.1; dbport =  
  dbname = "bacula"; DB Address = ""; dbuser = "bacula"; dbpassword = ""
}

# Reasonable message delivery -- send most everything to email address
#  and to the console
Messages {
  Name = Standard

  mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: %t %e of %c %l\" %r"
  operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula: Intervention needed for %j\" %r"
  mail = root@localhost = all, !skipped            
  operator = root@localhost = mount
  console = all, !skipped, !saved
#
# WARNING! the following will create a file that you must cycle from
#          time to time as it will grow indefinitely. However, it will
#          also keep all your messages if they scroll off the console.
#
  append = "/var/lib/bacula/log" = all, !skipped
  catalog = all
}


#
# Message delivery for daemon messages (no job).
Messages {
  Name = Daemon
  mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) \<%r\>\" -s \"Bacula daemon message\" %r"
  mail = root@localhost = all, !skipped            
  console = all, !skipped, !saved
  append = "/var/lib/bacula/log" = all, !skipped
}

# Default pool definition
Pool {
  Name = Default
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
}

# File Pool definition
Pool {
  Name = File
  Pool Type = Backup
  Recycle = yes                       # Bacula can automatically recycle Volumes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 365 days         # one year
  Maximum Volume Bytes = 50G          # Limit Volume size to something reasonable
  Maximum Volumes = 100               # Limit number of Volumes in Pool
}

Pool {
  Name = AllTapes
  Pool Type = Backup
  Recycle = yes
  AutoPrune = yes                     # Prune expired volumes
  Volume Retention = 31 days         # one Moth
}

# Scratch pool definition
Pool {
  Name = Scratch
  Pool Type = Backup
}

#
# Restricted console used by tray-monitor to get the status of the director
#
Console {
  Name = backuphost-1-mon
  Password = "LastFMalsostorePasswordsLikeThis"
  CommandACL = status, .status
}

bacula-sd.conf

#
# Default Bacula Storage Daemon Configuration file
#

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

#
# List Directors who are permitted to contact Storage daemon
#
Director {
  Name = backuphost-1-dir
  Password = "passwordslinplaintext"
}

#
# Restricted Director, used by tray-monitor to get the
#   status of the storage daemon
#
Director {
  Name = backuphost-1-mon
  Password = "totalinsecurityabound"
  Monitor = yes
}


Device {
  Name = FileStorage
  Media Type = File
  Archive Device = /srv/bacula/archive
  LabelMedia = yes;                   # lets Bacula label unlabeled media
  Random Access = Yes;
  AutomaticMount = yes;               # when device opened, read it
  RemovableMedia = no;
  AlwaysOpen = no;
}


Autochanger {
   Name = SpectraLogic
   Device = Drive-1
   Device = Drive-2
   Changer Command = "/etc/bacula/scripts/mtx-changer %c %o %S %a %d"
   Changer Device = /dev/sg4
}

Device {
   Name = Drive-1
   Drive Index = 0
   Archive Device = /dev/nst0
   Changer Device = /dev/sg4
   Media Type = LTO5
   AutoChanger = yes
   RemovableMedia = yes;
   AutomaticMount = yes;
   AlwaysOpen = yes;
   RandomAccess = no;
   LabelMedia = yes

}

Device {
   Name = Drive-2
   Drive Index = 1
   Archive Device = /dev/nst1
   Changer Device = /dev/sg4
   Media Type = LTO5
   AutoChanger = yes
   RemovableMedia = yes;
   AutomaticMount = yes;
   AlwaysOpen = yes;
   RandomAccess = no;
   LabelMedia = yes
}

# 
# Send all messages to the Director, 
# mount messages also are sent to the email address
#
Messages {
  Name = Standard
  director = backuphost-1-dir = all
}

bacula-fd.conf

#
# Default  Bacula File Daemon Configuration file
#

#
# List Directors who are permitted to contact this File daemon
#
Director {
  Name = backuphost-1-dir
  Password = "hahahahahaha"
}

#
# Restricted Director, used by tray-monitor to get the
#   status of the file daemon
#
Director {
  Name = backuphost-1-mon
  Password = "hohohohohho"
  Monitor = yes
}

#
# "Global" File daemon configuration specifications
#
FileDaemon {                          # this is me
  Name = backuphost-1-fd
  FDport = 9102                  # where we listen for the director
  WorkingDirectory = /var/lib/bacula
  Pid Directory = /var/run/bacula
  Maximum Concurrent Jobs = 20
  #FDAddress = 127.0.0.1
  FDAddress = 0.0.0.0
}

# Send all messages except skipped files back to Director
Messages {
  Name = Standard
  director = backuphost-1-dir = all, !skipped, !restored
}
7
Tom O'Connor

Baculaでファイルセットをセットアップすると、文字通りpathspecが1行ずつ読み取られ、このようにバックアップされます。

エージェント内の異なるファイルパスを読み取るために2つのスレッドを作成することはありません。

@SpacemanSpiffが言ったように、これを実行したい場合は、バックアップするファイル仕様ごとに1つずつ、異なるジョブをセットアップする方法が先に進みます。

1
Matthew Ife

私はあなたのために3つのヒントを持っています:

  • 複数のストレージデーモンを使用します。同じマシンの異なるポートで複数のストレージデーモンを実行できます。
  • 重複排除には基本ジョブを使用します。時間とスペースを節約できます。
  • 圧縮を使用する-テープドライブが適切に圧縮されている場合は、それを比較検討し、bacula-fd圧縮を試す必要があるかもしれません。これはクライアントで発生し、その結果、CPU時間のわずかな犠牲で帯域幅も節約します。
0
nearora