[Redis] Redis의 다양한 모드 : Cluster, Sentinel, Single

728x90
반응형
SMALL

Single Instance

  • HA 미지원

Sentinel

  • HA 무중단 서비스 지원
  • Master-Salve 구조에 Sentinel을 추가해서 각 서버를 감시하도록 하는 구조
  • Sentinel은 Master를 감시하다가 다운되면 Slave를 Master로 승격시킨다.
  • 다운되었던 Master가 재기동되면 Sentinel이 해당 Master를 Slave로 전환시킨다.

Cluster

  • HA, Sharding 지원
  • 데이터 서버 + Sentinel 역할
  • Master-Slave 구조로 최소 3대가 필요하다.

Clsuter 구성

Master 3대, Slave 3대 구성

 

 

Master 3대, Slave 6대 구성

728x90
반응형
LIST