목록streaming (2)
DB & AWS Knowledge
PostgreSQL 은 다양한 방법으로 replication 을 구성하는 방법들을 제시한다. 아래의 내용은 공식 Doc 및 기타 사이트에서 발췌한 Replication 구성 방법 종류다.(출처 : https://www.postgresql.org/docs/9.6/different-replication-solutions.html)(출처 : https://hevodata.com/learn/postgres-replication-types/)Streaming Replication : 스트리밍 리플리케이션 (PostgreSQL 9.0 이상 버전 필요)Master Server 에서 WAL File 에 기재되는 내용들을 실시간으로 Slave 서버에 전송하는 방식이다. 이를 위해서 WAL Sender, WAL Recei..
개요PostgreSQL / PPAS 간의 상이 버전에 대한 Replication 설정 가능 확인 파악 사항상이 버전간의 Replication 은 불가하다. 참조서류 : https://help.cloud66.com/rails/how-to-guides/databases/shells/pg-replication-version.html아래의 내용과 같이 상이 버전간은 Replication 설정 시 FATAL 발생 이를 해결하기 위해 manifest 파일을 사용하여 원하는 버전으로 업그레이드 PostgreSQL / PPAS 버전은 아래의 링크를 참조(다른 참조 링크 : https://stackoverflow.com/questions/43663207/postgresql-replication-between-differ..