DataDog/ddredisio

Name: ddredisio

Owner: Datadog, Inc.

Description: A chef cookbook for installing and managing redis instances

Forked from: brianbianco/redisio

Created: 2017-11-10 15:42:54.0

Updated: 2017-11-15 15:46:11.0

Pushed: 2017-11-15 18:17:40.0

Homepage:

Size: 683

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Redisio Cookbook

Please read the changelog when upgrading from the 1.x series to the 2.x series

Gitter chat Build Status Cookbook Version

Description

Website:: https://github.com/brianbianco/redisio

Installs and configures Redis server instances

Requirements

This cookbook builds redis from source or install it from packages, so it should work on any architecture for the supported distributions. Init scripts are installed into /etc/init.d/

It depends on the ulimit cookbook: https://github.com/bmhatfield/chef-ulimit and the build-essentials cookbook: https://github.com/opscode-cookbooks/build-essential

Platforms
Testing

This cookbook is tested with rspec/chefspec and test-kitchen/serverspec. Run bundle install to install required gems.

Tested on:

Usage

The redisio cookbook contains LWRP for installing, configuring and managing redis and redis_sentinel.

The install recipe can build, compile and install redis from sources or install from packages. The configure recipe will configure redis and setup service resources. These resources will be named for the port of the redis server, unless a “name” attribute was specified. Example names would be: service[“redis6379”] or service[“redismaster”] if the name attribute was “master”. NOTE: currently installation from source is not supported for FreeBSD

The most common use case for the redisio cookbook is to use the default recipe, followed by the enable recipe.

Another common use case is to use the default, and then call the service resources created by it from another cookbook.

It is important to note that changing the configuration options of redis does not make them take effect on the next chef run. Due to how redis works, you cannot reload a configuration without restarting the redis service. Redis does not offer a reload option, in order to have new options be used redis must be stopped and started.

You should make sure to set the ulimit for the user you want to run redis as to be higher than the max connections you allow. NOTE: setting ulimit is not supported on FreeBSD since the ulimit cookbook doesn't support FreeBSD

The disable recipe just stops redis and removes it from run levels.

The cookbook also contains a recipe to allow for the installation of the redis ruby gem.

Redis-sentinel will write configuration and state data back into its configuration file. This creates obvious problems when that config is managed by chef. By default, this cookbook will create the config file once, and then leave a breadcrumb that will guard against the file from being updated again.

Recipes
Role File Examples
Install redis and setup an instance with default settings on default port, and start the service through a role file
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({})
Install redis with packages and setup an instance with default settings on default port, and start the service through a role file
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
package_install: true
version:


Install redis, give the instance a name, and use a unix socket
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'servers' => [
  {'name' => 'master', 'port' => '6379', 'unixsocket' => '/tmp/redis.sock', 'unixsocketperm' => '755'},
]


Install redis and pull the password from an encrypted data bag
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'servers' => [
  {'data_bag_name' => 'redis', 'data_bag_item' => 'auth', 'data_bag_key' => 'password'},
]


Data Bag

"id": "auth",
"password": "abcdefghijklmnopqrstuvwxyz"

Install redis and setup two instances on the same server, on different ports, with one slaved to the other through a role file
list *%w[
cipe[ddredisio]
cipe[ddredisio-redisio::enable]


ult_attributes({
edisio' => {
'servers' => [
  {'port' => '6379'},
  {'port' => '6380', 'slaveof' => { 'address' => '127.0.0.1', 'port' => '6379' }}
]


Install redis and setup two instances, on the same server, on different ports, with the default data directory changed to /mnt/redis, and the second instance named
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'default_settings' => {'datadir' => '/mnt/redis'},
'servers' => [{'port' => '6379'}, {'port' => '6380', 'name' => "MyInstance"}]


Install redis and setup three instances on the same server, changing the default data directory to /mnt/redis, each instance will use a different backup type, and one instance will use a different data dir
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'default_settings' => { 'datadir' => '/mnt/redis/'},
'servers' => [
  {'port' => '6379','backuptype' => 'aof'},
  {'port' => '6380','backuptype' => 'both'},
  {'port' => '6381','backuptype' => 'rdb', 'datadir' => '/mnt/redis6381'}
]


Install redis 2.4.11 (lower than the default version) and turn safe install off, for the event where redis is already installed. This will use the default settings. Keep in mind the redis version will not actually be updated until you restart the service (either through the LWRP or manually).
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'safe_install' => false,
'version'      => '2.4.11'


Install a single redis-sentinel to listen for a master on localhost and default port number
list *%w[
cipe[ddredisio::sentinel]
cipe[ddredisio::sentinel_enable]

Install redis and setup two instances, on the same server, on different ports, the second instance configuration file will be overwriten by chef
list *%w[
cipe[redisio]
cipe[ddredisio::enable]


ult_attributes({
edisio' => {
'servers' => [{'port' => '6379'}, {'port' => '6380', 'breadcrumb' => false}]


LWRP Examples

Instead of using my provided recipes, you can simply depend on the redisio cookbook in your metadata and use the LWRP's yourself. I will show a few examples of ways to use the LWRPS, detailed breakdown of options are below in the resources/providers section

Install Resource

It is important to note that this call has certain expectations for example, it expects the redis package to be in the format `redis-VERSION.tar.gz'.

sio_install "redis-installation" do
rsion '2.6.9'
wnload_url 'http://redis.googlecode.com/files/redis-2.6.9.tar.gz'
fe_install false
stall_dir '/usr/local/'

Configure Resource

The servers resource expects an array of hashes where each hash is required to contain at a key-value pair of 'port' => ''.

sio_configure "redis-servers" do
rsion '2.6.9'
fault_settings node['redisio']['default_settings']
rvers node['redisio']['servers']
se_piddir node['redisio']['base_piddir']

Sentinel Resource

The sentinel resource installs and configures all of your redis_sentinels defined in sentinel_instances

Using the sentinel resources:

sio_sentinel "redis-sentinels" do
rsion '2.6.9'
ntinel_defaults node['redisio']['sentinel_defaults']
ntinels sentinel_instances
se_piddir node['redisio']['base_piddir']

Attributes

Configuration options, each option corresponds to the same-named configuration option in the redis configuration file; default values listed

Default settings is a hash of default settings to be applied to to ALL instances. These can be overridden for each individual server in the servers attribute. If you are going to set logfile to a specific file, make sure to set syslog-enabled to no.

Available options and their defaults

r'                    => 'redis' - the user to own the redis datadir, redis will also run under this user
up'                   => 'redis' - the group to own the redis datadir
edir'                 => Home directory of the user. Varies on distribution, check attributes file
ll'                   => Users shell. Varies on distribution, check attributes file
temuser'              => true - Sets up the instances user as a system user
mit'                  => 0 - 0 is a special value causing the ulimit to be maxconnections +32.  Set to nil or false to disable setting ulimits
figdir'               => '/etc/redis' - configuration directory
e'                    => nil, Allows you to name the server with something other than port.  Useful if you want to use unix sockets
backlog'              => '511',
ress'                 => nil, Can accept a single string or an array. When using an array, the FIRST value will be used by the init script for connecting to redis
abases'               => '16',
kuptype'              => 'rdb',
adir'                 => '/var/lib/redis',
xsocket'              => nil - The location of the unix socket to use,
xsocketperm'          => nil - The permissions of the unix socket,
eout'                 => '0',
palive'               => '0',
level'                => 'notice',
file'                 => nil,
logenabled'           => 'yes',
logfacility'          => 'local0',
tdown_save'           => false,
e'                    => nil, # Defaults to ['900 1','300 10','60 10000'] inside of template.  Needed due to lack of hash subtraction
pwritesonbgsaveerror' => 'yes',
compression'          => 'yes',
checksum'             => 'yes',
ilename'              => nil,
veof'                 => nil,
terauth'              => nil,
veservestaledata'     => 'yes',
vereadonly'           => 'yes',
ldisklesssync'        => 'no', # Requires redis 2.8.18+
ldisklesssyncdelay'   => '5', # Requires redis 2.8.18+
lpingslaveperiod'     => '10',
ltimeout'             => '60',
ldisabletcpnodelay    => 'no',
vepriority'           => '100',
uirepass'             => nil,
ame_commands'         => nil, or a hash where each key is a redis command and the value is the command's new name.
clients'              => 10000,
memory'               => nil,
memorypolicy'         => nil,
memorysamples'        => nil,
endfilename'          => nil,
endfsync'             => 'everysec',
ppendfsynconrewrite'  => 'no',
rewritepercentage'    => '100',
rewriteminsize'       => '64mb',
timelimit'            => '5000',
wloglogslowerthan'    => '10000',
wlogmaxlen'           => '1024',
ifykeyspaceevents'    => '',
hmaxziplistentries'   => '512',
hmaxziplistvalue'     => '64',
tmaxziplistentries'   => '512',
tmaxziplistvalue'     => '64',
maxintsetentries'     => '512',
tmaxziplistentries'   => '128',
tmaxziplistvalue'     => '64',
sparsemaxbytes'       => '3000',
iverehasing'          => 'yes',
entoutputbufferlimit' => [
(normal 0 0 0),
(slave 256mb 64mb 60),
(pubsub 32mb 8mb 60)

                         => '10',
rewriteincrementalfsync' => 'yes',
sterenabled'             => 'no',
sterconfigfile'          => nil, # Defaults to redis instance name inside of template if cluster is enabled.
sternodetimeout'         => 5000,
ludes'                   => nil,
adcrumb'                 => true # Defaults to create breadcrumb lock-file.

The redis_gem recipe will also allow you to install the redis ruby gem, these are attributes related to that, and are in the redis_gem attributes file.

The sentinel recipe's use their own attribute file.

r'                    => 'redis',
figdir'               => '/etc/redis',
tinel_bind'           => nil,
tinel_port'           => 26379,
itor'                 => nil,
n-after-milliseconds' => 30000,
-failover'            => 'yes',
allel-syncs'          => 1,
lover-timeout'        => 900000,
level'                => 'notice',
file'                 => nil,
logenabled'           => 'yes',
logfacility'          => 'local0',
rum_count'            => 2

You may also pass an array of masters to monitor like so:


entinel_port' => '26379',
ame' => 'mycluster_sentinel',
asters' => [
{ 'master_name' => 'master6379', 'master_ip' => '127.0.0.1', 'master_port' => 6379 },
{ 'master_name' => 'master6380', 'master_ip' => '127.0.0.1', 'master_port' => 6380 }



Resources/Providers
install

Actions:

Attribute Parameters

This resource expects the following naming conventions:

package file should be in the format .

package file after extraction should be inside of the directory

all "redis" do
tion [:run,:nothing]

configure

Actions:

Attribute Parameters

igure "redis" do
tion [:run,:nothing]

License and Author

Author:: Brian Bianco Author_Website:: http://www.brianbianco.com Twitter:: @brianwbianco IRC:: geekbri on freenode

Copyright 2013, Brian Bianco

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.