SlideShare a Scribd company logo
Building PostgreSQL as a Service
with Kubernetes
PGConf.Asia 2019
2019/9/9
@tzkb
3
My Actitvities
PGConf.Asia 2018 @Tokyo
A guide of PostgreSQL on Kuberntes
- In terms of Storage -
CloudNativeDays Tokyo 2019
The Future of Database on Kubernetes
- What run with Cloud Native Storage -
 + =∞
4
Agenda
1. Recap: What is Kubernetes?
2. The Issues for Database on Kubernetes
3. How to run your PostgreSQL on K8s
4. Kubernetes becomes The Platform
6
1. Recap: What is Kubernetes?
7
What is Kubernetes?
Pod Pod
Pod
Pod Pod
• Kubernetes(K8s) is the orchestrator tool for containers.
It has 3 features below.
• Declarative config
• Auto-healing
• Immutable
Database is
not Immutable.
8
Better to handle the database system by Kubernetes?
Node Node Node
Master Slave
Replicate
• The database usually has a state that is not easy to maintain
by Kubernetes.
<Disadvantage for DB>
• Necessary to startup in
turn.
• Must never lose their
data.
• Handle the database as
pets.
9
Example of Database on Kubernetes: Vitess
VTtablet
VTtablet
VTtablet
VTgate
app
app
app
SQL
SQL
SQL
• Vitess that used on YouTube is the CNCF incubating project.
• Vitess provides MySQL
sharding in K8s.
• VTgate and VTtablet
can scale by K8s.
• When terminating a
component abnormally,
Kubernetes repair it
automatically.
10
The choice: How to manage your database
Compute
Storage
Managed
Amazon Aurora
Amazon Redshift
Amazon RDS
on Cloud on Kubernetes
• You can choose to manage the database by yourself or else.
17
2. The Issues for Database on Kubernetes
18
Kubernetes is the Distributed Systems
• Developed as following a distributed architecture.
• When doesn’t a node reply
– Network partition?
– Process failure?
– Node failure?
• If the disk resource attached,
harder to determine.
FailOver?
20
Database Architects are familiar with Clustering
 “If you don’t know the status, it’s okay.
We act on the premise of failsafe.”
 “No need to share resources. Right?”
 “Both have long been known for database
clustering.”
21
Basic: Database Clustering
HA
(Active/Standby)
1
Sharding
Replication
(Active/Active)
2or
more
Instances Redundancy
2 or
more
Shared
Disk
Log
Shipping
---
×
Scaleout?
Read
Read/
Write
Failover
(Fencing)
Availability
Promotion
(Election)
---
• There are differences to build a DB cluster with some nodes.
22
Clustering #1: HA
• With Linux-HA
• Use high-available shared
storage
<Worst Case>
• Multiple writes to storage
<Solution>
• Fencing
VIP
Linux-HA
Controller Controller
• It's been used since before Linux but helpful.
23
Note: Fencing
VIP
Linux-HA
Controller Controller
< When Detecting Node Failure >
1. Forced node power off
i. Definite processes stop
ii. Unmount storage
iii. Detach virtual IP
2. PostgreSQL starts to run on
the standby node.
• Failed node is isolated from resources = Fencing
24
Clustering #2: Replication
WAL
• The master can Read/Write,
Slaves are Read-Only.
• Data synchronization by WAL
transmission
<Worst Case>
• 2 or more Masters
<Solution>
• Leader Election
• Redundancy built into PostgreSQL = Streaming Replication
Master
SlaveSlave
25
Note: Leader Election
WAL
Be promoted as
a master,
The other is still
a slave.
• Always one master
• The former master joins as a
slave.
<Master in unknown state>
1. The remaining one slave is
elected as the leader
2. The leader is promoted as a
master.
• Algorithms such as Paxos and Raft are used.
MasterSlave
26
Clustering #3 Sharding
• Divide data between nodes
and operates as one DB.
• Dispatches queries to relevant
nodes.
• Basically no availability.
• Problems with the transaction.
• For rather scalability than availability.
Coordinator
27
3. How to Run your on Kubernetes
28
Implemetation Overview : on Kubernetes
# Category OSS used Description
ⅰ
HA
• Use Rook/Ceph as Shared
Storage.
ⅱ
• Use LINSTOR/DRBD as
Shared Storage.
ⅲ Replication
• Use Streaming Replication,
without Shared Storage.
ⅳ Operator
• Building and Operating
Replication automatically.
• We can see following four patterns.
29
• K8s manages
everything(DB,storage)
• Shared-Storage: Ceph
• Fenced by kube-fencing
< Disadvantage >
• Complicated
• Insufficient IO
HA (i):
Replicas:1
• is deployed as StatefulSet using Rook/Ceph.
kube-fencing
30
Note: Without Fencing
Replicas:1
• When a node goes down, never failover.
• To avoid network
partition.
• It is by design.
31
Note: What is
• Rook is Kubernetes Operator managing Ceph or others.
operator
agent/discover agent/discover agent/discover
osd osd osd
mon mon mon
CSI
csi-provisioner
csi-rbdplugin csi-rbdplugin csi-rbdplugin
Rook
• Rook makes easy to
build Ceph cluster.
• Also easy to deploy
CSI modules.
• CSI: Containar
Storage Interface
32
HA (ii):
Replicas:1
kube-fencing
• LINSTOR is Software-Defined Storage based on DRBD.
• K8s manages
everything(DB,storage)
• Redundancy: DRBD
• Simple, Read IO
without Network
< Disadvantage >
• Limited to Scale
33
Benchmark Results
Single(with EBS) Rook/Ceph DRBD
1nodes 5nodes 2nodes
100
37.8
77.1
• Measured by pgbench for 3 patterns.
TPS
34
Replication :
proxy proxy proxy
keeper keeper keeper
sentinel sentinel sentinel
• Builds Streaming Replication on top of Kubernetes.
• 3 types of processes
have different roles
• Without Shared-
Resources
< Disadvantage >
• Not builtin Read Off-
loading
36
Operator :
• KubeDB operates not only but also others.
kubedb-operator
-0 -1 -2
postgres snapshotdormantdabases
• Database Operator for
– PostgreSQL
– MySQL
– Redis
• Kubedb-operator
builds SR.
• Able to get/restore
snapshot easily.
37
Example : PostgreSQL Configration by KubeDB
apiVersion: kubedb.com/v1alpha1
kind: Postgres
metadata:
name: ha-postgres
namespace: demo
spec:
version: “10.6-v2"
replicas: 3
storageType: Durable
storage:
storageClassName: "standard"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Gi
 spec.version
– Choose PostgreSQL version.
 spec.replicas
– The number of Instances.
 spec.storage
– Define storage type/size, etc.
• Allows to define Streaming Replication with a simple YAML.
38
Example : Snapshot by KubeDB
apiVersion: kubedb.com/v1alpha1
kind: Snapshot
metadata:
name: snapshot-to-s3
labels:
kubedb.com/kind: Postgres
spec:
databaseName: ha-postgres
storageSecretName: s3-secret
s3:
endpoint: 's3.amazonaws.com'
bucket: kubedb-qa
prefix: demo
• Write declarative Snapshot settings by YAML.
• Simple backup that applies only
this YAML.
• You can select storage,
– S3
– Swift
– Kubernetes Persistent Volume
39
Note : Backup with PostgreSQL + Ceph
$ kubectl exec -it -n rook-ceph rook-ceph-tools-seq -- rbd -p replicapool ls
pvc-bdbc6e53-f6e9-11e8-b0d9-02f062df6b48
$ kubectl exec -it pg-rook-sf-0 -- psql -h localhost -U postgres -c "SELECT pg_start_backup(now()::text);"
pg_start_backup
-----------------
0/C000028
(1 row)
$ kubectl exec -it -n rook-ceph rook-ceph-tools-seq -- rbd snap create replicapool/img@snap
$ kubectl exec -it pg-rook-sf-0 -- psql -h localhost -U postgres -c "SELECT pg_stop_backup();"
NOTICE: pg_stop_backup complete, all required WAL segments have been archived
pg_stop_backup
----------------
0/D000050
(1 row)
• Need to know PostgreSQL & Ceph Commands.
41
4. Kubernetes becomes The Platform
42
To Recap
 The components of database clustering with
Kubernetes Native are already available.
 You can see some operators for DBA task
automation.
 However, it is not over yet.
Cloud Native Storage + + = ???
43
The Signs
I. Pluggable Storage
 Optimized Storage system for DB on K8s?
II. Forked and Cloud-Oriented PostgreSQL
 AWS Aurora, Azure Hyperscale
44
THE LOG IS THE DATABASE.
SQL
Transactions
Caching
Storage
Logging
Storage
Logging
Storage
Logging
CPU
Memory
Cache(SSD)
Page
Cache(SSD) Log
AWS Aurora(PostgreSQL) Azure Hyperscale
• Both divide RDBMS functions and are extended by each cloud.
45
As the platform for PostgreSQL as a Service
DBaaS by Kubernetes
STaaS by Kubernetes
What we got for DBaaS
• HA
• Streaming Replication
• DB Operator
Also for STaaS
• Simple Redundancy
• Distributed Storage
• Interoperable IF(CSI)
• Kubernetes will be "The Platform for Platforms."
46
Questions?
@tzkb
@tzkoba
47
Appendix

More Related Content

PDF
PGConf.ASIA 2019 Bali - Tune Your LInux Box, Not Just PostgreSQL - Ibrar Ahmed
PDF
PGConf.ASIA 2019 - High Availability, 10 Seconds Failover - Lucky Haryadi
PDF
PGConf.ASIA 2019 Bali - PostgreSQL on K8S at Zalando - Alexander Kukushkin
PDF
PGConf.ASIA 2019 Bali - AppOS: PostgreSQL Extension for Scalable File I/O - K...
PDF
A guide of PostgreSQL on Kubernetes
PDF
PGConf.ASIA 2019 Bali - Mission Critical Production High Availability Postgre...
PDF
PGConf.ASIA 2019 Bali - Setup a High-Availability and Load Balancing PostgreS...
PDF
Deploying postgre sql on amazon ec2
PGConf.ASIA 2019 Bali - Tune Your LInux Box, Not Just PostgreSQL - Ibrar Ahmed
PGConf.ASIA 2019 - High Availability, 10 Seconds Failover - Lucky Haryadi
PGConf.ASIA 2019 Bali - PostgreSQL on K8S at Zalando - Alexander Kukushkin
PGConf.ASIA 2019 Bali - AppOS: PostgreSQL Extension for Scalable File I/O - K...
A guide of PostgreSQL on Kubernetes
PGConf.ASIA 2019 Bali - Mission Critical Production High Availability Postgre...
PGConf.ASIA 2019 Bali - Setup a High-Availability and Load Balancing PostgreS...
Deploying postgre sql on amazon ec2

What's hot (20)

PDF
Postgres in Amazon RDS
PDF
Ceph: Open Source Storage Software Optimizations on Intel® Architecture for C...
PPTX
Ceph - High Performance Without High Costs
PDF
PostgreSQL WAL for DBAs
PDF
GPGPU Accelerates PostgreSQL (English)
PDF
Patroni - HA PostgreSQL made easy
ODP
PostgreSQL Replication in 10 Minutes - SCALE
PDF
Online Upgrade Using Logical Replication.
 
PDF
Data warehouse on Kubernetes - gentle intro to Clickhouse Operator, by Robert...
PDF
Meet Spilo, Zalando’s HIGH-AVAILABLE POSTGRESQL CLUSTER - Feike Steenbergen
PDF
Ceph Day Beijing - Our journey to high performance large scale Ceph cluster a...
PDF
Out of the box replication in postgres 9.4
PDF
Out of the box replication in postgres 9.4(pg confus)
PDF
PostgreSQL HA
PPTX
MySQL Head-to-Head
PDF
Operating PostgreSQL at Scale with Kubernetes
ODP
Logical replication with pglogical
PDF
PostgreSQL Replication High Availability Methods
PDF
Spark / Mesos Cluster Optimization
PDF
PostgreSQL High Availability in a Containerized World
Postgres in Amazon RDS
Ceph: Open Source Storage Software Optimizations on Intel® Architecture for C...
Ceph - High Performance Without High Costs
PostgreSQL WAL for DBAs
GPGPU Accelerates PostgreSQL (English)
Patroni - HA PostgreSQL made easy
PostgreSQL Replication in 10 Minutes - SCALE
Online Upgrade Using Logical Replication.
 
Data warehouse on Kubernetes - gentle intro to Clickhouse Operator, by Robert...
Meet Spilo, Zalando’s HIGH-AVAILABLE POSTGRESQL CLUSTER - Feike Steenbergen
Ceph Day Beijing - Our journey to high performance large scale Ceph cluster a...
Out of the box replication in postgres 9.4
Out of the box replication in postgres 9.4(pg confus)
PostgreSQL HA
MySQL Head-to-Head
Operating PostgreSQL at Scale with Kubernetes
Logical replication with pglogical
PostgreSQL Replication High Availability Methods
Spark / Mesos Cluster Optimization
PostgreSQL High Availability in a Containerized World
Ad

Similar to PGConf.ASIA 2019 Bali - Building PostgreSQL as a Service with Kubernetes - Takahiro Kobayashi (20)

PPTX
Rook - cloud-native storage
PDF
Ceph in the GRNET cloud stack
PPTX
Kubernetes Stateful Workloads on Legacy Storage
PDF
Run Cloud Native MySQL NDB Cluster in Kubernetes
PPTX
Scylla on Kubernetes: Introducing the Scylla Operator
PDF
Ippevent : openshift Introduction
PDF
Kubernetes Walk Through from Technical View
PDF
Como creamos QuestDB Cloud, un SaaS basado en Kubernetes alrededor de QuestDB...
PPTX
Data weekender deploying prod grade sql 2019 big data clusters
PDF
Cloud Native ClickHouse at Scale--Using the Altinity Kubernetes Operator-2022...
PDF
Running a database on local NVMes on Kubernetes
PDF
Running a database on local NVMes on Kubernetes
PDF
Sanger OpenStack presentation March 2017
PPTX
Why Kubernetes as a container orchestrator is a right choice for running spar...
PPTX
Container orchestration and microservices world
PPTX
Kubernetes Internals
PPTX
CKA_1st.pptx
PDF
Apache Cassandra Lunch #41: Cassandra on Kubernetes - Docker/Kubernetes/Helm ...
PDF
Under The Hood Of A Shard-Per-Core Database Architecture
PPTX
Kubernetes presentation
Rook - cloud-native storage
Ceph in the GRNET cloud stack
Kubernetes Stateful Workloads on Legacy Storage
Run Cloud Native MySQL NDB Cluster in Kubernetes
Scylla on Kubernetes: Introducing the Scylla Operator
Ippevent : openshift Introduction
Kubernetes Walk Through from Technical View
Como creamos QuestDB Cloud, un SaaS basado en Kubernetes alrededor de QuestDB...
Data weekender deploying prod grade sql 2019 big data clusters
Cloud Native ClickHouse at Scale--Using the Altinity Kubernetes Operator-2022...
Running a database on local NVMes on Kubernetes
Running a database on local NVMes on Kubernetes
Sanger OpenStack presentation March 2017
Why Kubernetes as a container orchestrator is a right choice for running spar...
Container orchestration and microservices world
Kubernetes Internals
CKA_1st.pptx
Apache Cassandra Lunch #41: Cassandra on Kubernetes - Docker/Kubernetes/Helm ...
Under The Hood Of A Shard-Per-Core Database Architecture
Kubernetes presentation
Ad

More from Equnix Business Solutions (20)

PDF
Yang perlu kita ketahui Untuk memahami aspek utama IT dalam bisnis_.pdf
PDF
Kebocoran Data_ Tindakan Hacker atau Kriminal_ Bagaimana kita mengantisipasi...
PDF
Kuliah Tamu - Dari Proses Bisnis Menuju Struktur Data.pdf
PDF
EWTT22_ Apakah Open Source Cocok digunakan dalam Korporasi_.pdf
PDF
Oracle to PostgreSQL, Challenges to Opportunity.pdf
PDF
[EWTT2022] Strategi Implementasi Database dalam Microservice Architecture.pdf
PDF
PostgreSQL as Enterprise Solution v1.1.pdf
PDF
Webinar2021 - Does HA Can Help You Balance Your Load-.pdf
PDF
Webinar2021 - In-Memory Database, is it really faster-.pdf
PDF
EQUNIX - PPT 11DB-Postgres™.pdf
PPTX
equpos - General Presentation v20230420.pptx
PDF
Equnix Appliance- Jawaban terbaik untuk kebutuhan komputasi yang mumpuni.pdf
PDF
OSPX - Professional PostgreSQL Certification Scheme v20201111.pdf
PDF
Equnix Company Profile v20230329.pdf
PDF
PGConf.ASIA 2019 - The Future of TDEforPG - Taiki Kondo
PDF
PGConf.ASIA 2019 - PGSpider High Performance Cluster Engine - Shigeo Hirose
PDF
PGConf.ASIA 2019 Bali - Keynote Speech 3 - Kohei KaiGai
PDF
PGConf.ASIA 2019 Bali - Keynote Speech 2 - Ivan Pachenko
PDF
PGConf.ASIA 2019 Bali - Keynote Speech 1 - Bruce Momjian
PDF
PGConf.ASIA 2019 Bali - Modern PostgreSQL Monitoring & Diagnostics - Mahadeva...
Yang perlu kita ketahui Untuk memahami aspek utama IT dalam bisnis_.pdf
Kebocoran Data_ Tindakan Hacker atau Kriminal_ Bagaimana kita mengantisipasi...
Kuliah Tamu - Dari Proses Bisnis Menuju Struktur Data.pdf
EWTT22_ Apakah Open Source Cocok digunakan dalam Korporasi_.pdf
Oracle to PostgreSQL, Challenges to Opportunity.pdf
[EWTT2022] Strategi Implementasi Database dalam Microservice Architecture.pdf
PostgreSQL as Enterprise Solution v1.1.pdf
Webinar2021 - Does HA Can Help You Balance Your Load-.pdf
Webinar2021 - In-Memory Database, is it really faster-.pdf
EQUNIX - PPT 11DB-Postgres™.pdf
equpos - General Presentation v20230420.pptx
Equnix Appliance- Jawaban terbaik untuk kebutuhan komputasi yang mumpuni.pdf
OSPX - Professional PostgreSQL Certification Scheme v20201111.pdf
Equnix Company Profile v20230329.pdf
PGConf.ASIA 2019 - The Future of TDEforPG - Taiki Kondo
PGConf.ASIA 2019 - PGSpider High Performance Cluster Engine - Shigeo Hirose
PGConf.ASIA 2019 Bali - Keynote Speech 3 - Kohei KaiGai
PGConf.ASIA 2019 Bali - Keynote Speech 2 - Ivan Pachenko
PGConf.ASIA 2019 Bali - Keynote Speech 1 - Bruce Momjian
PGConf.ASIA 2019 Bali - Modern PostgreSQL Monitoring & Diagnostics - Mahadeva...

Recently uploaded (20)

PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Advanced IT Governance
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Empathic Computing: Creating Shared Understanding
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
KodekX | Application Modernization Development
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
PPTX
Cloud computing and distributed systems.
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
NewMind AI Monthly Chronicles - July 2025
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Review of recent advances in non-invasive hemoglobin estimation
Advanced IT Governance
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Empathic Computing: Creating Shared Understanding
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
KodekX | Application Modernization Development
Understanding_Digital_Forensics_Presentation.pptx
GamePlan Trading System Review: Professional Trader's Honest Take
Unlocking AI with Model Context Protocol (MCP)
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
Cloud computing and distributed systems.
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
NewMind AI Monthly Chronicles - July 2025
The AUB Centre for AI in Media Proposal.docx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Spectral efficient network and resource selection model in 5G networks
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
NewMind AI Weekly Chronicles - August'25 Week I
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf

PGConf.ASIA 2019 Bali - Building PostgreSQL as a Service with Kubernetes - Takahiro Kobayashi

  • 1. Building PostgreSQL as a Service with Kubernetes PGConf.Asia 2019 2019/9/9 @tzkb
  • 2. 3 My Actitvities PGConf.Asia 2018 @Tokyo A guide of PostgreSQL on Kuberntes - In terms of Storage - CloudNativeDays Tokyo 2019 The Future of Database on Kubernetes - What run with Cloud Native Storage -  + =∞
  • 3. 4 Agenda 1. Recap: What is Kubernetes? 2. The Issues for Database on Kubernetes 3. How to run your PostgreSQL on K8s 4. Kubernetes becomes The Platform
  • 4. 6 1. Recap: What is Kubernetes?
  • 5. 7 What is Kubernetes? Pod Pod Pod Pod Pod • Kubernetes(K8s) is the orchestrator tool for containers. It has 3 features below. • Declarative config • Auto-healing • Immutable Database is not Immutable.
  • 6. 8 Better to handle the database system by Kubernetes? Node Node Node Master Slave Replicate • The database usually has a state that is not easy to maintain by Kubernetes. <Disadvantage for DB> • Necessary to startup in turn. • Must never lose their data. • Handle the database as pets.
  • 7. 9 Example of Database on Kubernetes: Vitess VTtablet VTtablet VTtablet VTgate app app app SQL SQL SQL • Vitess that used on YouTube is the CNCF incubating project. • Vitess provides MySQL sharding in K8s. • VTgate and VTtablet can scale by K8s. • When terminating a component abnormally, Kubernetes repair it automatically.
  • 8. 10 The choice: How to manage your database Compute Storage Managed Amazon Aurora Amazon Redshift Amazon RDS on Cloud on Kubernetes • You can choose to manage the database by yourself or else.
  • 9. 17 2. The Issues for Database on Kubernetes
  • 10. 18 Kubernetes is the Distributed Systems • Developed as following a distributed architecture. • When doesn’t a node reply – Network partition? – Process failure? – Node failure? • If the disk resource attached, harder to determine. FailOver?
  • 11. 20 Database Architects are familiar with Clustering  “If you don’t know the status, it’s okay. We act on the premise of failsafe.”  “No need to share resources. Right?”  “Both have long been known for database clustering.”
  • 12. 21 Basic: Database Clustering HA (Active/Standby) 1 Sharding Replication (Active/Active) 2or more Instances Redundancy 2 or more Shared Disk Log Shipping --- × Scaleout? Read Read/ Write Failover (Fencing) Availability Promotion (Election) --- • There are differences to build a DB cluster with some nodes.
  • 13. 22 Clustering #1: HA • With Linux-HA • Use high-available shared storage <Worst Case> • Multiple writes to storage <Solution> • Fencing VIP Linux-HA Controller Controller • It's been used since before Linux but helpful.
  • 14. 23 Note: Fencing VIP Linux-HA Controller Controller < When Detecting Node Failure > 1. Forced node power off i. Definite processes stop ii. Unmount storage iii. Detach virtual IP 2. PostgreSQL starts to run on the standby node. • Failed node is isolated from resources = Fencing
  • 15. 24 Clustering #2: Replication WAL • The master can Read/Write, Slaves are Read-Only. • Data synchronization by WAL transmission <Worst Case> • 2 or more Masters <Solution> • Leader Election • Redundancy built into PostgreSQL = Streaming Replication Master SlaveSlave
  • 16. 25 Note: Leader Election WAL Be promoted as a master, The other is still a slave. • Always one master • The former master joins as a slave. <Master in unknown state> 1. The remaining one slave is elected as the leader 2. The leader is promoted as a master. • Algorithms such as Paxos and Raft are used. MasterSlave
  • 17. 26 Clustering #3 Sharding • Divide data between nodes and operates as one DB. • Dispatches queries to relevant nodes. • Basically no availability. • Problems with the transaction. • For rather scalability than availability. Coordinator
  • 18. 27 3. How to Run your on Kubernetes
  • 19. 28 Implemetation Overview : on Kubernetes # Category OSS used Description ⅰ HA • Use Rook/Ceph as Shared Storage. ⅱ • Use LINSTOR/DRBD as Shared Storage. ⅲ Replication • Use Streaming Replication, without Shared Storage. ⅳ Operator • Building and Operating Replication automatically. • We can see following four patterns.
  • 20. 29 • K8s manages everything(DB,storage) • Shared-Storage: Ceph • Fenced by kube-fencing < Disadvantage > • Complicated • Insufficient IO HA (i): Replicas:1 • is deployed as StatefulSet using Rook/Ceph. kube-fencing
  • 21. 30 Note: Without Fencing Replicas:1 • When a node goes down, never failover. • To avoid network partition. • It is by design.
  • 22. 31 Note: What is • Rook is Kubernetes Operator managing Ceph or others. operator agent/discover agent/discover agent/discover osd osd osd mon mon mon CSI csi-provisioner csi-rbdplugin csi-rbdplugin csi-rbdplugin Rook • Rook makes easy to build Ceph cluster. • Also easy to deploy CSI modules. • CSI: Containar Storage Interface
  • 23. 32 HA (ii): Replicas:1 kube-fencing • LINSTOR is Software-Defined Storage based on DRBD. • K8s manages everything(DB,storage) • Redundancy: DRBD • Simple, Read IO without Network < Disadvantage > • Limited to Scale
  • 24. 33 Benchmark Results Single(with EBS) Rook/Ceph DRBD 1nodes 5nodes 2nodes 100 37.8 77.1 • Measured by pgbench for 3 patterns. TPS
  • 25. 34 Replication : proxy proxy proxy keeper keeper keeper sentinel sentinel sentinel • Builds Streaming Replication on top of Kubernetes. • 3 types of processes have different roles • Without Shared- Resources < Disadvantage > • Not builtin Read Off- loading
  • 26. 36 Operator : • KubeDB operates not only but also others. kubedb-operator -0 -1 -2 postgres snapshotdormantdabases • Database Operator for – PostgreSQL – MySQL – Redis • Kubedb-operator builds SR. • Able to get/restore snapshot easily.
  • 27. 37 Example : PostgreSQL Configration by KubeDB apiVersion: kubedb.com/v1alpha1 kind: Postgres metadata: name: ha-postgres namespace: demo spec: version: “10.6-v2" replicas: 3 storageType: Durable storage: storageClassName: "standard" accessModes: - ReadWriteOnce resources: requests: storage: 100Gi  spec.version – Choose PostgreSQL version.  spec.replicas – The number of Instances.  spec.storage – Define storage type/size, etc. • Allows to define Streaming Replication with a simple YAML.
  • 28. 38 Example : Snapshot by KubeDB apiVersion: kubedb.com/v1alpha1 kind: Snapshot metadata: name: snapshot-to-s3 labels: kubedb.com/kind: Postgres spec: databaseName: ha-postgres storageSecretName: s3-secret s3: endpoint: 's3.amazonaws.com' bucket: kubedb-qa prefix: demo • Write declarative Snapshot settings by YAML. • Simple backup that applies only this YAML. • You can select storage, – S3 – Swift – Kubernetes Persistent Volume
  • 29. 39 Note : Backup with PostgreSQL + Ceph $ kubectl exec -it -n rook-ceph rook-ceph-tools-seq -- rbd -p replicapool ls pvc-bdbc6e53-f6e9-11e8-b0d9-02f062df6b48 $ kubectl exec -it pg-rook-sf-0 -- psql -h localhost -U postgres -c "SELECT pg_start_backup(now()::text);" pg_start_backup ----------------- 0/C000028 (1 row) $ kubectl exec -it -n rook-ceph rook-ceph-tools-seq -- rbd snap create replicapool/img@snap $ kubectl exec -it pg-rook-sf-0 -- psql -h localhost -U postgres -c "SELECT pg_stop_backup();" NOTICE: pg_stop_backup complete, all required WAL segments have been archived pg_stop_backup ---------------- 0/D000050 (1 row) • Need to know PostgreSQL & Ceph Commands.
  • 30. 41 4. Kubernetes becomes The Platform
  • 31. 42 To Recap  The components of database clustering with Kubernetes Native are already available.  You can see some operators for DBA task automation.  However, it is not over yet. Cloud Native Storage + + = ???
  • 32. 43 The Signs I. Pluggable Storage  Optimized Storage system for DB on K8s? II. Forked and Cloud-Oriented PostgreSQL  AWS Aurora, Azure Hyperscale
  • 33. 44 THE LOG IS THE DATABASE. SQL Transactions Caching Storage Logging Storage Logging Storage Logging CPU Memory Cache(SSD) Page Cache(SSD) Log AWS Aurora(PostgreSQL) Azure Hyperscale • Both divide RDBMS functions and are extended by each cloud.
  • 34. 45 As the platform for PostgreSQL as a Service DBaaS by Kubernetes STaaS by Kubernetes What we got for DBaaS • HA • Streaming Replication • DB Operator Also for STaaS • Simple Redundancy • Distributed Storage • Interoperable IF(CSI) • Kubernetes will be "The Platform for Platforms."