I have been tasked with templating MySQL's my.cnf in an attempt standardize the configuration amongst the slave databases using Puppet. Right now, I'm targeting the innodb settings. Are there configuration options that can safely be calculated against hardware specifications such as memory, disk and procs?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need facter.
` and in puppet.pp i use facts $disks
see "Adding Custom Facts to Facter" on puppet labs. |
||||
|
|
|
I'd be tempted to move the calculations into the erb file, for example the key_buffer_size is recommended to be set to 1/4 of the Systems RAM:
there is no reason why you couldn't work on other variables available from Facter (number of processors etc) and come up with your own calculations to set other variables as above. Remember ERB effectively provides a subset of Ruby so almost anything you can do in Ruby can be done in ERB. |
|||
|
|
puppet have the erb template, erb template can use the facter value ,like hostname or memor. and you can write you self facter shell script. |
|||
|
|