blue elephant on demand postgresql kubernetes fosdem 2018
play

Blue elephant on-demand: PostgreSQL + Kubernetes FOSDEM 2018, - PowerPoint PPT Presentation

Please write title, subtitle Please write title, subtitle and speaker name in all and speaker name in all capital letters capital letters Blue elephant on-demand: PostgreSQL + Kubernetes FOSDEM 2018, Brussels Oleksii Kliukin, Jan


  1. Please write title, subtitle Please write title, subtitle and speaker name in all and speaker name in all capital letters capital letters Blue elephant on-demand: PostgreSQL + Kubernetes FOSDEM 2018, Brussels Oleksii Kliukin, Jan Mußler 03-02-2018

  2. Put images in the grey dotted box "unsupported placeholder" SELECT title Please write the title in all capital letters FROM agenda; DBaaS at Zalando UI and monitoring PostgreSQL on Kubernetes Kubernetes-native Patroni Postgres operator 2

  3. Please write the title in all capital letters About us Oleksii Kliukin oleksii.kliukin@zalando.de Database Engineer @ Zalando Twitter: @hintbits Jan Mussler jan.mussler@zalando.de Engineering Lead @ Zalando Twitter: @JanMussler 3

  4. Put images in the grey dotted box "unsupported placeholder" ZALANDO AT A GLANCE Please write the title in all capital letters >300 databases In data centers > 150 > 200 Postgres clusters on Postgres clusters on AWS EC2 Kubernetes 4 as at May 2017

  5. Put images in the grey dotted box "unsupported placeholder" Running PostgreSQL in two data centers Please write the title in all capital letters Use bullet points to Bare metal with LXC containers summarize information rather than writing long paragraphs in the text Single Git repository with all box configs Database discovery service Script to initialize new nodes Init from replicas to lower impact Time delayed replicas in one data center PostgreSQL versions: 9.3+ 5

  6. Put images in the grey dotted box "unsupported placeholder" Git-driven workflow in data centers Please write the title in all capital letters postgres configuration git pull git push repository config.yaml => Database postgresql.conf, discovery recovery.conf, service replica map git pull git pull get DB address connect to DB DB DB DBA client replica master 6

  7. Put images in the grey dotted box "unsupported placeholder" PostgreSQL on Amazon AWS Please write the title in all capital letters Use bullet points to Faster database provisioning summarize information rather than writing long paragraphs in the text Flexible hardware configuration box CPU, Memory, Storage, Price Docker is enforced at Zalando Expected more node failures Needs more automation 7

  8. Put images in the grey dotted box "unsupported placeholder" Patroni to the rescue Please write the title in all capital letters PostgreSQL management “daemon” Use bullet points to summarize information rather than writing long Adaptable to different platforms paragraphs in the text box Implemented in Python Master election (using etcd, …) Growing adoption and contributors Zalando’s first open-source repo surpassing 1000 ✰ 8

  9. Put images in the grey dotted box "unsupported placeholder" Why not AWS RDS or Aurora PostgreSQL Please write the title in all capital letters Not an easy answer :) Use bullet points to summarize information rather than writing long paragraphs in the text Full control box • Independent of cloud provider • Real super user available • Custom extensions, PAM • Streaming/WAL replication in and out • Local storage not supported on RDS (NVMe SSDs) Costs? Cost of development? ... 9

  10. Put images in the grey dotted box "unsupported placeholder" - behind the orange box and quote in capital letters PostgreSQL as a Service

  11. Put images in the grey dotted box "unsupported placeholder" Goals Please write the title in all capital letters Automation Use bullet points to - Self service for everyone summarize information rather than writing long paragraphs in the text - Quick and easy way to get new cluster box - Enable users to modify cluster setup - Restore and clone triggered by users Integration - Works with deployment pipeline - Employee and application user provisioning - Real time monitoring out of the box - ZMON integration, entity discovery - Zalando IAM integration 11

  12. Put images in the grey dotted box "unsupported placeholder" Please write the title in all capital letters 12

  13. Put images in the grey dotted box "unsupported placeholder" Waiting for operator to create K8S objects Please write the title in all capital letters 13

  14. Put images in the grey dotted box "unsupported placeholder" Waiting for master to become available Please write the title in all capital letters 14

  15. Put images in the grey dotted box "unsupported placeholder" Cluster create completed Please write the title in all capital letters 15

  16. Put images in the grey dotted box "unsupported placeholder" Automated role and database creation Please write the title in all capital letters “Hands free” deployment K8S secrets for credentials Encourage role split: One for application deployment / DDL One for application runtime / DML No objects owned by employee roles No “psql” required Infrastructure roles 16

  17. Put images in the grey dotted box "unsupported placeholder" Employees and IAM integration Please write the title in all capital letters Use postgres with PAM authentication Custom PAM authentication verifying our JWT token Token valid for 60 minutes MFA for free via Google No password sync, one less thing to remember for employees export PGPASSWORD =$( ztoken ) export PGSSLMODE = require psql -h cluster-name.team.domain -d postgres 17

  18. Put images in the grey dotted box "unsupported placeholder" - behind the orange box and quote in capital letters Monitoring

  19. Put images in the grey dotted box "unsupported placeholder" Monitoring setup Please write the title in all capital letters Pod Postgres PGView Web UI http bgmon ext Scalyr sidecar ZMON Agent ZMON Worker Postgres SQL and http bgmon ext Scalyr sidecar 19

  20. Put images in the grey dotted box "unsupported placeholder" Monitoring with pgview.web Please write the title in all capital letters 20

  21. Put images in the grey dotted box "unsupported placeholder" Integration with ZMON Please write the title in all capital letters 21

  22. Put images in the grey dotted box "unsupported placeholder" EC2 Instance Metrics via ZMON Please write the title in all capital letters 22

  23. Put images in the grey dotted box "unsupported placeholder" Cloud-native Postgres infrastructure 23

  24. Please write the title in all capital letters Kubernetes introduction Use bullet points to summarize information rather than writing long paragraphs in the text box • Container management • Cluster-wide application scheduling and autoscaling • Application deployments automation • Abstracts bare metal and most cloud providers (google, aws, azure, etc) • Declarative description of resources and deployments • Rich metadata (versions, labels, annotations) • Supported by open-source community 24

  25. Please write the title in all capital letters Labels ● Labels can be attached to almost any Kubernetes objects ● Each object can have multiple labels (name = value) ● Labels can be used to query groups of objects (all replicas belonging to a PostgreSQL cluster test): $ kubectl get pods -l cluster-name=test 25

  26. Please write the title in all capital letters Nodes and pods • Nodes are equivalents of physical servers node • Pods correspond to applications pod • One pod may have many containers • Pods are scheduled on nodes node pod • Scheduling is controlled by resource requests and limits. 26

  27. Please write the title in all capital letters Nodes and pods Example: • Amazon EC2 instance is a node node pod • On a node Postgres pod is running • Postgres pod consists of 2 node containers: Postgres container pod and a database log shipping container 27

  28. Please write the title in all capital letters Nodes and pods ● Pods are scheduled on nodes ● Scheduling is automatic and is controlled by resource requests and limits on pods resources: limits: cpu: "3" memory: 1Gi requests: cpu: 100m memory: 100Mi 28

  29. Please write the title in all capital letters Nodes and pods Example: Multiple staging PostgreSQL pods can be scheduled on one node, saving resources and keeping database users isolated at the same time. 29

  30. Please write the title in all capital letters System and worker nodes 30

  31. Please write the title in all capital letters Services and endpoints role: master role: replica ● Services connect clients to pods ● Endpoints contain actual pod addresses 192.168.1.1 192.168.1.2 ● Endpoints can be 192.168.1.1 managed by services or independently pg.svc.local selector ● Services may define role: master selectors to point to pod labels 31

  32. Please write the title in all capital letters StatefulSets ● Persistent Volume (PV): i.e. NAS, EBS ● Persistent Volume Claim (PVC): request to find a persistent volume with at last as much disk space as the claim ● StatefulSet ■ joins pods and persistent volume claims ■ when a pod terminates - it gets respawned and the same volume is reattached ■ ip address of the node is preserved between terminations 32

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend