Skip to content

Commit

Permalink
mysql v1.0.7
Browse files Browse the repository at this point in the history
* [COOK-614] expose all mysql tunable settings in config
* [COOK-617] bind to private IP if available
  • Loading branch information
schisamo committed Jul 1, 2011
1 parent 5e36691 commit d054e97
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Installs and configures MySQL client or server.
Changes
=======

### v1.0.7:

* [COOK-614] expose all mysql tunable settings in config
* [COOK-617] bind to private IP if available

### v1.0.6:

* [COOK-605] install mysql-client package on ubuntu/debian
Expand Down Expand Up @@ -79,6 +84,8 @@ Performance tuning attributes, each corresponds to the same-named parameter in m
* `mysql['tunable']['back_log']` = "128"
* `mysql['tunable']['table_cache']` = "128"
* `mysql['tunable']['max_heap_table_size']` = "32M"
* `mysql['tunable']['expire_logs_days']` = "10"
* `mysql['tunable']['max_binlog_size']` = "100M"

Usage
=====
Expand Down
10 changes: 9 additions & 1 deletion mysql/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
license "Apache 2.0"
description "Installs and configures mysql for client or server"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.0.6"
version "1.0.7"
recipe "mysql", "Includes the client recipe to configure a client"
recipe "mysql::client", "Installs packages required for mysql clients using run_action magic"
recipe "mysql::server", "Installs packages required for mysql servers w/o manual intervention"
Expand Down Expand Up @@ -80,3 +80,11 @@
attribute "mysql/tunable/max_heap_table_size",
:display_name => "MySQL Tunable Max Heap Table Size",
:default => "32M"

attribute "mysql/tunable/expire_logs_days",
:display_name => "MySQL Exipre Log Days",
:default => "10"

attribute "mysql/tunable/max_binlog_size",
:display_name => "MySQL Max Binlog Size",
:default => "100M"

0 comments on commit d054e97

Please sign in to comment.