i’m deploying timescale db single on a 3 node kubernetes cluster(self hosted) using your helm chart:
i was able to configure backup on AWS S3 bucket according to the Admin Guide:
i was abale to recover from master failure using the following steps:
- take down the cluster bu uninstalling the chart (helm uninstall)
- clear the data and wal directories(on local volumes)
- change values.yaml:
3.1 add boostrap from backup configuration
bootstrapFromBackup:
enabled: true
repo1-path: /backup
3.2 disable backup
backup:
enabled: false - redepoly the cluster again
everything works as expected!!
the question is how can i perform a Point In Time Restore from S3 Backup
i didn’t find any configuration i can use in the values.yaml
this is an option in case we have data corruption that started at some point in time, and for sure this data correption will be recovered in the normal bootstrapFromBackup, as i assume tha latest backup is used
what is the procedure to perform point in time recovery, as part of the helm deployment
or to perform restore from a specific full backup located on the S3 bucket
thanks