An open API service indexing awesome lists of open source software.

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

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)