summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: f05f2fe792dc379b5399cafe1b7778e374088be2 (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
50
51
52
53
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",
  }

  # TODO: remove in the future
  file { '/etc/mysql/conf.d/mysqld_open_files_limit.cnf':
    ensure  => absent,
    owner   => root,
    group   => root,
    mode    => 0644,
    content => "[mysqld]\nopen-files-limit = 500000\n",
    notify  => Service['mysql'],
  }

  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 => '500000',
  }

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