Redis - Master Node - Cluster 상태정보 확인
Redis - Master Node - Cluster 상태정보 확인
이번 포스팅에서는 Redis Master Node Cluster 상태정보 확인하는 방법을 알아보겠습니다.
Redis 이전글 |
https://server-talk.tistory.com/471 - Redis - In-Memory - 알아보기
https://server-talk.tistory.com/472 - Redis - 서버 설치 및 기본설정 알아보기
https://server-talk.tistory.com/473 - Redis - Redis-cli 기본 사용법
https://server-talk.tistory.com/474 - Redis - Redis Desktop Manager Tool
https://server-talk.tistory.com/475 - phpredis 설치 알아보기
https://server-talk.tistory.com/502 - Cluster 알아보기
https://server-talk.tistory.com/503 - Redis - Cluster Master Node 구성하기
https://server-talk.tistory.com/504 - Redis - Cluster Master Node 관련 설정 알아보기
https://server-talk.tistory.com/504 - Redis - Cluster Master Node 관련 설정 알아보기
Redis - Master Node Cluster 상태정보 확인 |
명령어 : 127.0.0.1:7000>cluster info
cluster_state:ok
cluster_slots_assigned:16384
cluster_slots_ok:16384
cluster_slots_pfail:0
cluster_slots_fail:0
cluster_known_nodes:3
cluster_size:3
cluster_current_epoch:3
cluster_my_epoch:1
cluster_stats_messages_ping_sent:2150
cluster_stats_messages_pong_sent:2145
cluster_stats_messages_sent:4295
cluster_stats_messages_ping_received:2143
cluster_stats_messages_pong_received:2150
cluster_stats_messages_meet_received:2
cluster_stats_messages_received:4295
1. Redis - Cluster 상태 표시
cluster_state:[ok or fail]
2. Redis - 서버의 할당된 슬롯의 개수
cluster_slots_assigned:[Count]
3. Redis - 현재 구동된 Cluster 할당된 슬롯의 개수
cluster_slots_ok:[Count]
4. Redis - 일시적으로 접속할 수 없는 노드의 할당된 슬롯 수
cluster_slots_pfail:[Count]
5. Redis - 다운된 서버의 할당된 슬롯 수(인식하지 못하는 슬롯)
cluster_slots_fail:[Count]
6. Redis - Slave 를 포함하여 클러스터에 연결된 모든 노드의 수
cluster_known_nodes:[Count]
7. Redis - 슬롯이 할당된 Master 서버 수
cluster_size:[Count]