Skip to content

Commit

Permalink
add postgres doc
Browse files Browse the repository at this point in the history
Signed-off-by: souravbiswassanto <sourav.cse4.bu@gmail.com>
  • Loading branch information
souravbiswassanto committed Dec 19, 2024
1 parent b75eb0d commit b3011d9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions content/post/kubedb-v2024.12.19/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,27 @@ spec:
```
Here you can mention the mode of group replication single or Multi primary, requireSSL and issuerRef for TLS secure connection on group replication mode.

## Postgres

### Point-in-Time Recovery (PITR) Enhancements:
Our PITR algorithm has been significantly improved. We now support the latest point-in-time recovery for PostgreSQL.
In order to find latest point in time a user can recover, they need to follow the below the approach.
- Run `kubectl get snapshots.storage.kubestash.com -n <ns> <db-name>-incremental-snapshot`
```yaml
status:
components:
wal:
logStats:
end: "2024-12-19T15:36:50.432136Z"
lsn: 0/1C000468
```
- Use the time mentioned in `components.wal.logStats.end` as your recoveryTimeStamp.
### Bug Fixes and Improvements:
#### PostgreSQL Failover:
- Improved failover algorithms ensure almost instant failover to a healthy standby pod.
- Fixed several bugs that prevented failover when the old primary was not available in the cluster.
#### PostgreSQL Version Upgrade:
- Resolved timing issues in the PostgreSQL version upgrade operations request.



Expand Down

0 comments on commit b3011d9

Please sign in to comment.