ProxySQL is a high performance, high availability, protocol aware proxy for MySQL and forks (like Percona Server and MariaDB).
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 configurationpost
statements saves configuration to disk ifpre
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']
.
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
}
)
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
- Systemd
- MySQL client (for loading configuration from disk to proxysql)
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
default['proxysql']['version'] = '1.4.16'
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'] = {}
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
MIT License
Copyright (c) 2018 Vinted
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.