summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 1a3509acb75eb436f2c9bd90372455c92ea8d504 (plain)
1
2
3
4
5
6
7
8
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
class database {
  class { 'mysql::server': }

  package { 'mysqltuner':
    ensure => installed,
  }

  # See http://www.smilecouple.org/2011/03/01/fix-out-of-resource-problem-with-mysql
  file { '/etc/security/limits.d/mysql.conf':
    ensure  => absent,
    owner   => root,
    group   => root,
    mode    => 0644,
    content => "mysql soft nofile 24000\nmysql hard nofile 32000\n",
  }

  backupninja::mysql { "all_databases":
    backupdir      => '/var/backups/mysql',
    compress       => true,
    sqldump        => true,
    sqldumpoptions => '--lock-tables --complete-insert --add-drop-table --quick --quote-names --single-transaction',
  }

  #
  # Tuning
  #

  # Avoid Errcode: 24
  database::config { 'open-files-limit':
    value => hiera('database::open-files-limit', '500000'),
  }

  database::config {
    'query_cache_size':        value => hiera('database::query_cache_size',        '64M');
    'query_cache_limit':       value => hiera('database::query_cache_limit',       '2M');
    'join_buffer_size':        value => hiera('database::join_buffer_size',        '256K');
    'key_buffer_size':         value => hiera('database::key_buffer_size',         '32M');
    'tmp_table_size':          value => hiera('database::tmp_table_size',          '64M');
    'max_heap_table_size':     value => hiera('database::max_heap_table_size',     '64M');
    'innodb_buffer_pool_size': value => hiera('database::innodb_buffer_pool_size', '256M');
    'table_open_cache':        value => hiera('database::table_cache',             '800');
  }

  # Renamed to table_open_cache
  database::config { 'table_cache':
    value  => hiera('database::table_cache', '800'),
    ensure => absent.
  }
}