cookbook 'proxysql', '= 3.3.0'
proxysql
(26) Versions
3.3.0
-
Follow0
Installs/Configures ProxySQL
cookbook 'proxysql', '= 3.3.0', :supermarket
knife supermarket install proxysql
knife supermarket download proxysql
ProxySQL Chef cookbook
ProxySQL is a high performance, high availability, protocol aware proxy
for MySQL and forks (like Percona Server and MariaDB).
Note: due to rapid ProxySQL development, locked ProxySQL version may not be available, therefore one might need to bump version
node['proxysql']['version']
.
Cookbook configures any number of ProxySQL instances, each instance has
isolated configuration. ProxySQL instance is installed through Chef
resource protocol_service
.
Instances are configured through node['proxysql'] attributes and/or
proxysql_*
block arguments. See the examples below.
Each ProxySQL is automatically managed by Chef, on disk configuration
changes are propagated to instance admin and are loaded to runtime.
Cookbook propagates these SQL statements to load configuration.
There are two types of statements propagated pre and post.
- pre
statements load everything from configuration
- post
statements saves configuration to disk if pre
statements
propagation was successful
PRE
LOAD MYSQL USERS FROM CONFIG LOAD MYSQL USERS TO RUNTIME LOAD MYSQL SERVERS FROM CONFIG LOAD MYSQL SERVERS TO RUNTIME LOAD MYSQL QUERY RULES FROM CONFIG LOAD MYSQL QUERY RULES TO RUNTIME LOAD MYSQL VARIABLES FROM CONFIG LOAD MYSQL VARIABLES TO RUNTIME LOAD ADMIN VARIABLES FROM DISK LOAD ADMIN VARIABLES TO RUNTIME
One can change statements in this attribute node['proxysql']['pre_statements']
.
POST
SAVE MYSQL USERS TO DISK SAVE MYSQL SERVERS TO DISK SAVE MYSQL VARIABLES TO DISK SAVE ADMIN VARIABLES TO DISK
One can change statements in this attribute node['proxysql']['post_statements']
.
Design
There are 5 special proxysql_service
resource attributes.
# mysql_servers Hash
# mysql_users Hash
# mysql_query_rules Hash
# schedulers Hash
# mysql_replication_hostgroups Hash
# proxysql_servers Hash
Each attribute must be of type Hash (validated) and
associated key value must be Array (validated).
This structure allows merging node,role,data_bag overrides into
single one.
For example given.:
{ "name": "datacenter1", "override_attributes": { "proxysql": { "config": { "mysql_servers": { "dc1": [ { "address": "/var/lib/mysql/mysql.sock", "hostgroup": 1 } ] } } } } }
{ "name": "datacenter2", "override_attributes": { "proxysql": { "config": { "mysql_servers": { "dc2": [ { "address": "127.0.0.1", "port": 21892 , "hostgroup": 1 } ] } } } } }
These two roles datacenter1
and datacenter2
attributes will be merged
so the final CNF
configuration will be.
mysql_servers=( { address="/var/lib/mysql/mysql.sock" hostgroup=1 }, { address="127.0.0.1" port=21892 hostgroup=1 } )
Installation
Cookbook assumes monitor
user is created on each database server.
Include this line in metadata.rb
depends 'proxysql'
There are 2 ways to use this cookbook resources.
- Include default recipe and manipulate node['proxysql'] attributes.
include_recipe 'proxysql::default'
- Use resource in any recipe.
proxysql_service 'default' do # ... end
Requirements
- Systemd
- MySQL client (for loading configuration from disk to proxysql)
Resources
proxysql_service 'any name' do # user String # group String # data_dir String # config_dir String # version String # package_release String # lock_version TrueClass, FalseClass # pre_statements Array # post_statements Array # bin String # admin_socket [String, NilClass] # flags Hash # admin_variables Hash # mysql_variables Hash # mysql_servers Hash # mysql_users Hash # mysql_query_rules Hash # schedulers Hash # mysql_replication_hostgroups Hash # proxysql_servers Hash # service_name String # service_unit_after Array # service_limit_core Integer # service_limit_nofile Integer # service_timeout_sec Integer # service_restart String end
proxysql_admin_config 'eu1' do # user String # group String # data_dir String # config_dir String # admin_username String # admin_password String # admin_hostname String # admin_port Integer # cluster_username String # cluster_password String # cluster_hostname String # cluster_port Integer # monitor_username String # monitor_password String # application_username String # application_password String # read_hostgroup_id String # write_hostgroup_id String # read_write_mode String end
Attributes
default['proxysql']['version'] = '1.4.13' default['proxysql']['user'] = 'proxysql' default['proxysql']['group'] = 'proxysql' default['proxysql']['config_dir'] = '/etc/proxysql' default['proxysql']['data_dir'] = '/var/lib/proxysql' default['proxysql']['service']['flags'] = { 'exit-on-error' => false, 'no-monitor' => false, 'no-start' => false, 'reuseport' => true, 'idle-threads' => true, 'initial' => false, 'reload' => false, 'sqlite3-server' => false } default['proxysql']['config']['admin_variables'] = {} default['proxysql']['config']['mysql_variables'] = {} # Special node attributes must be in a form of: # { # "string": [objects] # } # Hash key "string" must be of type String it is necessary for support # of multiple attributes, hash values then are merged into 1 and # gets casted to CNF. default['proxysql']['config']['mysql_servers'] = {} default['proxysql']['config']['mysql_users'] = {} default['proxysql']['config']['mysql_query_rules'] = {} default['proxysql']['config']['schedulers'] = {} default['proxysql']['config']['mysql_replication_hostgroups'] = {} default['proxysql']['config']['proxysql_servers'] = {}
Examples
pass = 'suchsecret' first_port = 3300 second_port = 3301 servers = { '2mysql' => [ { address: '127.0.0.1', 'port' => first_port, hostgroup: 1, 'max_connections' => 200 }, { 'address' => '127.0.0.1', 'port' => second_port, 'hostgroup' => 1 } ] } users = { '2mysql' => [ { username: 'root', password: pass, default_hostgroup: 2, 'active' => 1 } ] } admin_variables = { admin_credentials: 'admin:admin', 'mysql_ifaces' => '127.0.0.1:6032' } variables = { 'monitor_username' => 'monitor', 'monitor_password' => 'monitor' } proxysql_service '2balance' do service_name 'proxysql-2balance' admin_variables admin_variables mysql_servers servers mysql_users users mysql_variables variables end
License
MIT License
Copyright (c) 2017 Ernestas Poskus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Author Information
- Blog: http://out13.com/
- Twitter: @ernestas_poskus
Dependent cookbooks
poise ~> 2.8.1 |
systemd ~> 3.2.3 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
Collaborator Number Metric
3.3.0 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
3.3.0 passed this metric
Foodcritic Metric
3.3.0 passed this metric
No Binaries Metric
3.3.0 passed this metric
Testing File Metric
3.3.0 passed this metric
Version Tag Metric
3.3.0 passed this metric
3.3.0 failed this metric
3.3.0 passed this metric
Foodcritic Metric
3.3.0 passed this metric
No Binaries Metric
3.3.0 passed this metric
Testing File Metric
3.3.0 passed this metric
Version Tag Metric
3.3.0 passed this metric
3.3.0 passed this metric
3.3.0 passed this metric
Testing File Metric
3.3.0 passed this metric
Version Tag Metric
3.3.0 passed this metric
3.3.0 passed this metric
3.3.0 passed this metric