목록Infra/High Availability (2)
나의 잡다한 노트 및 메모
High Availability: (HA) includes the mechanisms that allow computer systems to continue operating following the failure of individual components.Disaster Recovery: (DR) includes the tools and procedures to enable computer systems to resume operation following a major catastrophe that affects many or all parts of a site.DR (Disaster Recovery):재해나 장애 발생 시 IT 시스템, 데이터, 인프라를 복구하기 위한 프로세스와 계획 RTO (Re..
전통적인 RDBMS(예: MySQL, PostgreSQL, Oracle, SQL Server 등)에서도 **HA(High Availability)**를 위해 다양한 기술과 아키텍처가 있습니다. 일반적으로는 아래와 같은 패턴이 널리 쓰입니다.1. 단일 리전 내 HA1) Shared Disk Clustering (예: Oracle RAC)여러 DB 인스턴스가 동시에 하나의 스토리지(공유 디스크)를 사용.노드 중 하나가 죽어도 다른 노드들이 계속 같은 물리 디스크/스토리지를 바라보며 DB 서비스를 이어감.대표적으로 Oracle RAC(Real Application Clusters), MSSQL Server FCI(Failover Cluster Instance) 등이 있음.스토리지가 단일 지점(Single Po..