From 20364e56a928147e97f07ce73659c5d09bd790d6 Mon Sep 17 00:00:00 2001 From: Sergey Dudoladov Date: Wed, 17 Apr 2019 17:51:11 +0200 Subject: [PATCH] update doc --- docs/administrator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/administrator.md b/docs/administrator.md index 4e919ed54..54cd87854 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -344,7 +344,7 @@ The operator logs reasons for a rolling update with the `info` level and a diff ## Logical backups -The operator can manage k8s cron jobs to run logical backups of Postgres clusters. The cron job periodically spawns a batch job that runs a single pod. The backup script within this pod's container can connect to a DB for a logical backup. The operator updates cron jobs during Sync if the job schedule changes. Notes: +The operator can manage k8s cron jobs to run logical backups of Postgres clusters. The cron job periodically spawns a batch job that runs a single pod. The backup script within this pod's container can connect to a DB for a logical backup. The operator updates cron jobs during Sync if the job schedule changes; the job name acts as the job identifier. Notes: 1. The provided `registry.opensource.zalan.do/acid/logical-backup` image implements the backup via `pg_dumpall` and upload of (compressed) results to an S3 bucket; `pg_dumpall` requires a `superuser` access to a DB and runs on the replica when possible.