Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

pgbouncer-service (1) Versions 0.2.0

Installs pgBouncer from either sources or packages, configures the connections, and sets up a service.

Policyfile
Berkshelf
Knife
cookbook 'pgbouncer-service', '~> 0.2.0', :supermarket
cookbook 'pgbouncer-service', '~> 0.2.0'
knife supermarket install pgbouncer-service
knife supermarket download pgbouncer-service
README
Dependencies
Quality 17%

Description

This cookbook installs and configures pgbouncer on a ubuntu/debian system.

Requirements

Cookbooks:

This cookbook doesn't have direct dependencies on other cookbooks. Depending on your OS configuration and security policy, you may need additional recipes or cookbooks for this cookbook's recipes to converge on the node. In particular, the following Operating System nuances may affect the behavior:

  • apt cache outdated

On Ubuntu/Debian, use Opscode's apt cookbook to ensure the package cache is updated so Chef can install packages, or consider putting apt-get in your bootstrap process or knife bootstrap template.

Platforms:

Tested on Ubuntu 10.04. Uses the pgbouncer init script.

  • Debian
  • Ubuntu
  • (Joyent) SmartOS

Attributes

This cookbook uses many attributes, broken up into a few different kinds.

  • node['pgbouncer']['databases'] - dictionary consisting of database names with connection info, default {}
  • node['pgbouncer']['userlist'] - dictionary consisting of usernames with passwords, used in the userlist.txt file, default {}

Administrative settings

  • node['pgbouncer']['logfile'] - location of pgbouncer logfile, default "/var/log/postgresql/pgbouncer.log"
  • node['pgbouncer']['pidfile'] - location of pgbouncer pidfile, default "/var/run/postgresql/pgbouncer.pid"

Where to wait for clients

  • node['pgbouncer']['listen_addr'] - ip address or * which means all ip-s, default "127.0.0.1"
  • node['pgbouncer']['listen_port'] - accept connections on the specified port, default "6432"
  • node['pgbouncer']['unix_socket_dir'] - dir for the unix socket that will be used to listen for incoming connections, default "/var/run/postgresql"

Authentication settings

  • node['pgbouncer']['auth_type'] - authentication type, default => "trust"
  • node['pgbouncer']['auth_file'] - location of pgbouncer userlist.txt file, default "/etc/pgbouncer/userlist.txt"

Users allowed into database 'pgbouncer'

  • node['pgbouncer']['admin_users'] - comma-separated list of users, who are allowed to change settings, default ""
  • node['pgbouncer']['stats_users'] - comma-separated list of users who are just allowed to use SHOW command, default ""

Pooler personality questions

  • node['pgbouncer']['pool_mode'] - when server connection is released back to pool, default "session"
  • node['pgbouncer']['server_reset_query'] - query for cleaning connection immediately after releasing from client, default ""
  • node['pgbouncer']['server_check_query'] - when taking idle server into use, this query is ran first, default "select 1"
  • node['pgbouncer']['server_check_delay'] - if server was used more recently that this many seconds ago, skip the check query. Value 0 may or may not run in immediately, default "10"

Connection limits

  • node['pgbouncer']['max_client_conn'] - total number of clients that can connect, default "100"
  • node['pgbouncer']['default_pool_size'] - default pool size, default "20"
  • node['pgbouncer']['log_connections'] - log connections, default "1"
  • node['pgbouncer']['log_disconnections'] - log disconnections, default "1"
  • node['pgbouncer']['log_pooler_errors'] - log error messages pooler sends to clients, default "1"

Usage

Using this cookbook is pretty straightforward. Add the desired recipes to the
run list of a node, or create a role. Adjust any attributes as desired.
For example, to create a basic connection pooler role for PostgreSQL databases:

% cat roles/connection_pooler.rb
name "connection pooler"
description "Lightweight connection pooler for PostgreSQL."
run_list("recipe[pgbouncer]")
override_attributes(
  "pgbouncer" => {
    "databases" => {
      "pgbouncer_db_name1" => "host=127.0.0.1 port=5432 dbname=postgres_db_name1",
      "pgbouncer_db_name2" => "host=127.0.0.1 port=5432 dbname=postgres_db_name2"
    },
    "userlist" => {
      "username1" => "secret_password1",
      "username2" => "secret_password2"
    }
  }
)

Maintainer

Konstantin Gredeskoul is the current maintainer of this cookbook.

Find me on Twitter as @kig and my blog.

Acknowledgements

Dependent cookbooks

resource-control >= 0.0.0
smf >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Collaborator Number Metric
            

0.2.0 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.2.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

0.2.0 failed this metric

FC043: Prefer new notification syntax: pgbouncer-service/recipes/configure.rb:50
FC043: Prefer new notification syntax: pgbouncer-service/recipes/configure.rb:60
FC043: Prefer new notification syntax: pgbouncer-service/recipes/configure.rb:69
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

0.2.0 passed this metric

Testing File Metric
            

0.2.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

0.2.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number