-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: [AWS] AWS ElastiCache란?? #41
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redis만 알고있었는데 새로운 정보 감사합니다!! 수고하셨습니당!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다 👍
가장 큰 차이점은 스레드 모델, 자료구조 차이다. | ||
- Redis는 싱글 스레드 기반이다. | ||
- Memcached 는 멀티 스레드를 지원한다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redis가 싱글 스레드로 동작하기에 가지는 장점과 단점이 무엇이라고 생각하시나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 역시 데이터 무결성 유지가 젤 장점이죠 경합 발생 안하니 안전하다!
- 아쉬운건 병렬 처리가 안되다보니까 좀 느리다..?
근데 멀티플랙싱이란 기술도 있고 실제로는 백그라운드에서 disk i/o 같은건 멀티 쓰레드로 하는걸로 알고 있어요
Redis의 명령어처리만 싱글스레드
### 노드, 샤드, 클러스터 | ||
|
||
![](https://i.imgur.com/97JIQvA.png) | ||
|
||
![](https://i.imgur.com/9qegCdV.png) | ||
|
||
ElastiCache에서 알아야할 구성 요소들이다. | ||
|
||
우선 Node는 ElastiCache를 사용할때 최소 구성 요소이다. | ||
- 예) Redis 노드 1대 | ||
|
||
샤드는 노드의 그룹이다. | ||
Master 노드 와 0개 이상의 Read Replica로 구성되고 | ||
|
||
클러스터는 샤드의 그룹이다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ElastiCache를 클러스터 모드로 해놓고 코드 레벨에서 클러스터링에 대한 설정을 추가하지 않아, 간헐적으로 개발 서버가 잘 동작했다가 동작하지 않는 현상이 발생했던 경험이 있어요 ㅎㅎ AWS가 알아서 해주는 줄 알았던... 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
핫. 저도...
개요
체크리스트