일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- OTP
- Xcode
- appres
- 앨범북
- otpkey
- SSH
- FIDO2
- apple
- 인증
- 2FA
- MSYS2
- css
- kmip
- 앱리소스
- SWIFT
- SwiftUI
- git
- Nodejs
- 앱스토어
- MFA
- 애플
- SSL
- WebAuthn
- fido
- 안드로이드
- openssl
- Android
- albumbook
- OSX
- MYSQL
- Today
- Total
목록개발 플랫폼 및 언어/DB 기술 (22)
인디노트
http://eradman.com/posts/multi-master.htmlIntroducing Multi-MasterThanks to work excellent work of 2ndQuadrant, the components needed to support unidirectional and bidirectional replication are [mostly] integrated into PostgreSQL. Logical replication allows a range of options including the replication of part of a cluster and multi-master configurations.Build/Installon LinuxAt the time of this w..
Assuming you've used home-brew to install and upgrade Postgres, you can perform the following steps.Stop current Postgres server:launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plistInitialize a new 10.1 database:initdb /usr/local/var/postgres10.1 -E utf8run pg_upgrade (note: change bin version if you're upgrading from something other than below):pg_upgrade -v \ -d /usr/local/va..
http://bdr-project.org/docs/stable/installation-source.html Postgres-BDR의 개발은 2011 년 말에 시작되어 2012 년 5 월 PgCon에서 시제품이 발표되었습니다. 거기에서 2nd Quadrant는 BDR v1을 전 세계에서 사용되는 강력한 강도의 생산 소프트웨어로 개발하기 시작했습니다. BDR v1은 2014 년 9 월 1 일부터 생산되었습니다. BDR v1은 PostgreSQL 9.4 포크입니다. BDR v2는 2017 년부터 사용되었습니다. BDR v2는 PostgreSQL 9.6의 확장으로 실행됩니다 BDR v3은 PostgreSQL 10의 향상된 기능을 활용하여 2018 년에 새로 출시되었습니다. BDR v3은 향후 개발을위한 주요 코..
Dynamic SQL-level configuration for BDR 0.9.0Dynamic SQL-level configuration for BDR 0.9.0SHAREMarch 20, 2015 by craig.ringerThe BDR team has recently introduced support for dynamically adding new nodes to a BDR group from SQL into the current development builds. Now no configuration file changes are required to add nodes and there’s no need to restart the existing or newly joining nodes.This ch..
시작 전PgPool을 처음 접하는 거라면 이글은 필요없고 여기부터 시작해서 차근차근 정독하는게 하는게 좋다.진심이다.. 이 글 보다 저 글을 읽자..그럼 이 글은 왜 썼냐고? 누가.. 쓰.. 라.. 읍.. 읍… 읍…상황Kibana도 AWS Athena도 사용중이긴 하지만, 대부분 OLAP을 위한 DB로 PostgreSQL을 사용중이다.28억건쯤 들어있고, 하루에 1천만건 가량 row가 쌓이고 3.5TB쯤 되는 용량이다. 크고 느리고 무겁고 그지같다.Citus로 마이그레이션하면 좋겠지만, 일단 Scale-up해야 하는 상황이다. 야호~ 신난다.만약을 위한 HA구성도 따로 해야한다. 하지만 HA구성은 아직 해보지 않은 상황!뭘 골라야 하나?어떤 방식을 사용할지 개념잡기엔 공식사이트에 복제 관련 솔루션들 비교..
1.4. BDR: Weakly coupled multi-master replication1.4. BDR : 약한 결합의 멀티 마스터 복제 When considering multi-master clustering or replication (with BDR or another technology) it is important to understand what's involved, and that not all multi-master systems are equal.다중 마스터 클러스터링 또는 복제 (BDR 또는 다른 기술로)를 고려 할 때, 관련된 내용을 이해하는 것이 중요하며 모든 다중 마스터 시스템이 동일 하지는 않습니다.Note: You don't have to use BDR for multi-mas..
1.3. Differences between BDR and trigger-based replicationThere are a number of trigger-based logical replication solutions for PostgreSQL, including Londiste, Slony-I and Bucardo. They're mature, fairly widely used and powerful, and like BDR they have the advantages (and disadvantages) of logical replication. Londiste, Slony-I 및 Bucardo 를 포함하여 PostgreSQL을 위한 많은 트리거 기반 논리적 복제 솔루션이 있습니다. 그들은 성숙하고..
1.2. Differences between logical (row level) and physical (block level) replication 1.2. 논리적 (행 수준) 복제와 물리적 (블록 수준) 복제 간의 차이점 BDR uses PostgreSQL's logical decoding feature to implement a low overhead logical replication solution. It has significant advantages - and some disadvantages - when compared to PostgreSQL's older physical (block-based) streaming or archive-based replication with warm or..
1.1. Concepts 1.1. 개념 BDR provides asynchronous multi-master logical replication. This means that you can write to any server and the changes will, after they have been committed, be sent row-by-row to all the other servers that are part of the same BDR group[1].BDR 은 비동기 다중 마스터 논리적 복제를 제공합니다. 즉, 임의의 서버에 쓸 수 있고 커밋 된 후 변경 사항은 동일한 BDR 그룹 [1] 의 일부인 다른 모든 서버로 행 단위로 전송됩니다. More specifically: 구체적인 내용 ..
This book is the official documentation of BDR 1.0.7 for use with PostgreSQL 9.4 (the BDR-patched version of it). It has been written by the PostgreSQL and BDR developers and other volunteers in parallel to the development of the BDR software. It describes all the functionality that the current version of BDR officially supports.이 책은 PostgreSQL 9.4 (BDR 패치 버전) 와 함께 사용하기 위한 BDR 1.0.7 의 공식 문서입니다. ..