cloud postgresql automation management with...

38
Cloud PostgreSQL Automation Management with Ansible Kenny Gorman Chief Technologist; Data Rackspace @rackspace @kennygorman

Upload: others

Post on 07-Jul-2020

8 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Cloud PostgreSQL Automation Management with Ansible

Kenny GormanChief Technologist; Data

Rackspace

@rackspace @kennygorman

Page 2: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

My Background

● Database Engineer, Developer, DBA, Architect, Founder, Chief

Technologist

● Oracle, MySQL, PostgreSQL, MongoDB, Apache Spark

● Ran a very large PG implementation at Hi5

● Contributed to early pg_reorg tooling

● Co-Founded ObjectRocket; MongoDB as a Service

Page 3: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

You have more data than yesterday

Page 4: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little
Page 5: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Simple systems automation/orchestration framework

Easy to learn and use

Little overhead and footprint

Parallel execution

Ansible is

Page 6: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Written in python

● Agentless/Daemon-less

● OpenSSH

● Idempotent

Ansible attributes

Page 7: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Human readable● Machine readable

Ansible is

Page 8: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● pip/yum/apt-get or repo

● SSH keys

● yaml files

Setup

Page 9: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Config: /etc/ansible/ansible.cfg

● Inventory: /etc/ansible/hosts

● Command line interface

● Modules

● Playbooks

Components

Page 10: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● /etc/ansible/hosts

Inventory

Page 11: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Easy command line interface

Command Line

Page 12: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Core vs User● Ansible Galaxy

Modules

Page 13: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● TemplatePlaybooks

Page 14: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Ansible + PostgreSQL

Page 15: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Do I need Ansible?

● Database Provisioning

● Database Management

● DBA Sanity

Page 16: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Idempotent

Page 17: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Provisioning PG

Page 18: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Page 19: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Core: ● postgresql_db● postgresql_user● postgresql_privs● ...

User:● Ansible Galaxy● ansible_roles_pipelinedb

PostgreSQL Modules

Page 20: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Ops: Too many servers? Too little time? Too many mistakes?

Page 21: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Ansible Management Host (or two)

● virtualenv/python/ansible

● git/github + your management code

● Inventory

● ssh key on every DB host

Page 22: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Ansible Management Host

US-EastPrivate DC

LON

Page 23: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Database Management

Page 24: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● start/stop

● pg_hba.conf hax

● upgrades

● user management

● schema uniformity

Page 25: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

DB Management one liners

Page 26: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Are my DB machines up?

Page 27: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Is PG responding?

Page 28: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Make sure production indexes exist

Page 29: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Rolling new code/push to site

Page 30: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Are my DB getting smoked?

Page 31: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Triage

Page 32: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Whats is the slow query?

Page 33: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

kill it

Page 34: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

Gettin’ jiggy with Ansible

Page 35: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● pg_shard

● backups, cloning

● replica creation

● performance tuning

Page 36: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

DBA Sanity

Page 37: Cloud PostgreSQL Automation Management with Ansibleinfo.citusdata.com/rs/235-CNE-301/images/Cloud... · Simple systems automation/orchestration framework Easy to learn and use Little

● Use modules wherever you can, if there are none, make one. Standardize.

● Git and Github are powerful when combined with Ansible.

● Use the cloud. Setup Dynamic Inventory.

● Use ad-hoc and playbooks in unison selecting the right time to use each.