Puppet Class: mariadb::backup::mysqldump

Inherits:
mariadb::params
Defined in:
manifests/backup/mysqldump.pp

Summary

Manage MariaDB Galera Cluster Backup

Overview

mariadb::backup::mysqldump

Manage MariaDB Galera Cluster Backup

Examples:

include mariadb::backup::mysqldump

Parameters:

  • backupuser (Any) (defaults to: '')
  • backuppassword (Any) (defaults to: '')
  • backupdir (Any) (defaults to: '')
  • maxallowedpacket (Any) (defaults to: '1M')
  • backupdirmode (Any) (defaults to: '0700')
  • backupdirowner (Any) (defaults to: $mariadb::params::user)
  • backupdirgroup (Any) (defaults to: $mariadb::params::group)
  • backupcompress (Any) (defaults to: true)
  • backuprotate (Any) (defaults to: 30)
  • initiator_node (Any) (defaults to: false)
  • ignore_events (Any) (defaults to: true)
  • delete_before_dump (Any) (defaults to: false)
  • backupdatabases (Any) (defaults to: [])
  • file_per_database (Any) (defaults to: false)
  • include_triggers (Any) (defaults to: false)
  • include_routines (Any) (defaults to: false)
  • ensure (Any) (defaults to: 'present')
  • time (Any) (defaults to: ['23', '5'])
  • prescript (Any) (defaults to: false)
  • postscript (Any) (defaults to: false)
  • execpath (Any) (defaults to: '/usr/bin:/usr/sbin:/bin:/sbin')
  • optional_args (Any) (defaults to: [])


9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'manifests/backup/mysqldump.pp', line 9

class mariadb::backup::mysqldump (
  $backupuser         = '', # lint:ignore:empty_string_assignment
  $backuppassword     = '', # lint:ignore:empty_string_assignment
  $backupdir          = '', # lint:ignore:empty_string_assignment
  $maxallowedpacket   = '1M',
  $backupdirmode      = '0700',
  $backupdirowner     = $mariadb::params::user,
  $backupdirgroup     = $mariadb::params::group,
  $backupcompress     = true,
  $backuprotate       = 30,
  $initiator_node     = false,
  $ignore_events      = true,
  $delete_before_dump = false,
  $backupdatabases    = [],
  $file_per_database  = false,
  $include_triggers   = false,
  $include_routines   = false,
  $ensure             = 'present',
  $time               = ['23', '5'],
  $prescript          = false,
  $postscript         = false,
  $execpath           = '/usr/bin:/usr/sbin:/bin:/sbin',
  $optional_args      = [],
) inherits mariadb::params {

  include 'mariadb::cluster'

  if $backupcompress {
    ensure_packages(['bzip2'])
    Package['bzip2'] -> File['wsrep_sst_backup']
  }

  $initiator_ensure = $initiator_node ? {
    true    => $ensure,
    default => 'absent',
  }

  $galera_options = $mariadb::cluster::galera_config::options['mysqld']

  mysql_user { "${backupuser}@localhost":
    ensure        => $ensure,
    password_hash => mysql::password($backuppassword),
    require       => Class['mysql::server::root_password'],
  }

  if $include_triggers  {
    $privs = [ 'SELECT', 'RELOAD', 'LOCK TABLES', 'SHOW VIEW', 'PROCESS', 'TRIGGER' ]
  } else {
    $privs = [ 'SELECT', 'RELOAD', 'LOCK TABLES', 'SHOW VIEW', 'PROCESS' ]
  }

  mysql_grant { "${backupuser}@localhost/*.*":
    ensure     => $ensure,
    user       => "${backupuser}@localhost",
    table      => '*.*',
    privileges => $privs,
    require    => Mysql_user["${backupuser}@localhost"],
  }

  $wsrep_provider_options = $galera_options['wsrep_provider_options'] ? {
    undef   => undef,
    default => ";${galera_options['wsrep_provider_options']}",
  }

  # lint:ignore:strict_indent
  $garbd_conf = @("END"/L)
    address = ${galera_options['wsrep_cluster_address']}
    group = ${mariadb::cluster::wsrep_cluster_name}
    options = gmcast.listen_addr=tcp://0.0.0.0:4444${wsrep_provider_options}
    sst = backup
    log = /var/log/garbd.log
    | END
  # lint:endignore

  file { 'garbd.conf':
    ensure  => $ensure,
    path    => '/etc/garbd.conf',
    mode    => '0700',
    owner   => 'root',
    group   => $::mysql::params::root_group,
    content => $garbd_conf.delete("'"),
  }

  cron { 'mysql-backup':
    ensure  => $initiator_ensure,
    command => 'garbd --cfg /etc/garbd.conf',
    user    => 'root',
    hour    => $time[0],
    minute  => $time[1],
    require => File['wsrep_sst_backup', 'garbd.conf'],
  }

  file { 'wsrep_sst_backup':
    ensure  => $ensure,
    path    => '/bin/wsrep_sst_backup',
    mode    => '0700',
    owner   => $backupdirowner,
    group   => $backupdirgroup,
    content => template('mysql/mysqlbackup.sh.erb'),
  }

  file { 'mysqlbackupdir':
    ensure => 'directory',
    path   => $backupdir,
    mode   => $backupdirmode,
    owner  => $backupdirowner,
    group  => $backupdirgroup,
  }
}