Giter VIP home page Giter VIP logo

puppet-pgpool's Introduction

pgpool

Build Status

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with pgpool
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module.

Overview

This module can be used to manage the installation and configuration of pgpool.

Module Description

The module leverages augeas to manage the configuration file for pgpool. Additionally it allows you to manage the pool hba configuration file via the augeas pg_hba provider. You can also manage the pool_password file with the pool password resource provided by the module. The module does not manage the installation of the pgdg repository for installation of the latest version of pgpool. You can provide the package name to the pgpool module if you have built your own or would like to leverage a version that is shipped with your OS.

Setup

Setup Requirements

As part of using this module, you will need to have the following modules installed.

  • camptocamp/augeas
  • puppetlabs/stdlib
  • herculesteam/augeasproviders_core
  • herculesteam/augeasproviders_postgresql

Additionally there is a submode that references an external Augeas lense. If you want to check out this module, make sure to recursively fetch the module to get the augeas-pgpool submodule.

git clone --recursive https://github.com/mwhahaha/puppet-pgpool.git

Usage

Here is a sample configuration for a streaming replica master/slave setup and pgpool on the same node as the application.

# install the package and the service
class { 'pgpool': }

# setup our pgpool.conf
class { 'pgpool::config::connection': }
class { 'pgpool::config::healthcheck':
  health_check_period      => 5,
  health_check_timeout     => 10,
  health_check_user        => 'pgpool',
  health_check_password    => 'mypassword',
  health_check_max_retries => 1,
}
class { 'pgpool::config::loadbalance':
  load_balance_mode => 'on',
}
class { 'pgpool::config::logs':
  log_connections  => 'on',
  log_statement    => 'on',
  log_min_messages => 'info',
}
class { 'pgpool::config::masterslave':
  master_slave_mode     => 'on',
  master_slave_sub_mode => 'stream',
  sr_check_period       => 5,
  sr_check_user         => 'pgpool',
  sr_check_password     => 'mypassword',
  delay_threshold       => 1024000,
}
class { 'pgpool::config::pools':
  enable_pool_hba => 'on',
}
class { 'pgpool::config::replication':
  replication_mode => 'off',
}
class { 'pgpool::config::service':
  pid_file_name => '/var/run/pgpool-II-93/pgpool-II-93.pid',
  logdir        => '/tmp',
}
class { 'pgpool::config::ssl': }
class { 'pgpool::config::watchdog': }

# configure our backend systems
pgpool::config::backend { 'db-n01':
  id             => '0',
  hostname       => '10.0.0.4',
  port           => 5432,
  data_directory => '/var/lib/pgsql/9.3/data',
}
pgpool::config::backend { 'db-n02':
  id             => '1',
  hostname       => '10.0.0.5',
  port           => 5432,
  data_directory => '/var/lib/pgsql/9.3/data',
}

# configure our application user password access
pgpool::pool_passwd { 'my_app_user':
  password_hash => 'md5d6d70ecf643d4sec9ca6623fee1233ea',
}

# configure the pgpool hba configuration
pgpool::hba { 'my_app_user':
  type        => 'host',
  database    => 'my_db_name',
  user        => 'my_app_user',
  address     => '127.0.0.1/32',
  auth_method => 'md5',
}

Reference

Here is a list of all the available classes and resources for this module.

Classes:

  • pgpool
  • pgpool::config
  • pgpool::service
  • pgpool::package
  • pgpool::monitor
  • pgpool::config::watchdog
  • pgpool::config::pools
  • pgpool::config::loadbalance
  • pgpool::config::healthcheck
  • pgpool::config::other
  • pgpool::config::memorycache
  • pgpool::config::ssl
  • pgpool::config::logs
  • pgpool::config::replication
  • pgpool::config::masterslave
  • pgpool::config::connection
  • pgpool::config::heartbeat
  • pgpool::config::service
  • pgpool::config::failover

Resources:

  • pgpool::pool_passwd
  • pgpool::pcp
  • pgpool::hba
  • pgpool::config::backend
  • pgpool::config::val
  • pgpool::config::wdother

Limitations

This has only been tested on RedHat/CentOS 6. It might work on Debian/Ubuntu.

Development

Pull requests welcome.

Other resources

To use pgpool::monitor, the code for the pgpool-monitor package is available from pgpool-monitor.

puppet-pgpool's People

Contributors

mwhahaha avatar oscarsix avatar antaflos avatar brummett avatar ctlajoie avatar

Watchers

Joris Dedieu avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.