https://github.com/k1low/postgresql-practice
PostgreSQL Practice
https://github.com/k1low/postgresql-practice
postgresql practice replication
Last synced: 11 months ago
JSON representation
PostgreSQL Practice
- Host: GitHub
- URL: https://github.com/k1low/postgresql-practice
- Owner: k1LoW
- Created: 2019-09-30T15:42:46.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-14T14:02:34.000Z (over 6 years ago)
- Last Synced: 2025-03-28T01:53:48.813Z (over 1 year ago)
- Topics: postgresql, practice, replication
- Language: Makefile
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PostgreSQL Practice
## Async Streaming Replication
### Replication
``` console
$ make async_replication
```
### Failover and Re-replication
``` console
$ make async_replication_failover
```
## Sync Streaming Replication
### Replication
``` console
$ make sync_replication
```
### Failover and Re-replication
``` console
$ make sync_replication_failover
```
## References
- [ストリーミング・レプリケーション | Let's Postgres](https://lets.postgresql.jp/documents/technical/replication/)
- [アーキテクチャから理解するPostgreSQLのレプリケーション](https://www.slideshare.net/masahikosawada98/postgresql-86891271)