반응형
Watching Kubernetes custom resources with dynamic informers & golang
k8s Operator를 만들 때, CRD의 reconcile 로직을 적용하기 위해 Get / List Loop를 쓰는 경우가 있다.
- ineffective / slow way to find changes.
- 예컨대 리소스가 backoff 상태라면 Get / List 요청을 보내는 주기가 갈수록 느려진다.
- 리소스가 많을 경우 pagination 등... 고려할 것들이 늘어남
- client go에서 제공하는 (shared) cache를 사용해서 보완하기도 함
- 위의 방식들보다 더 나은, InformerFactory를 사용해서 Watcher를 만드는 방법
- Watcher: Event Stream that is dynamically connected; like a pipe from API server to your Implementation.
- send back & forth events over GRPC.
- get Real-time updates. Restful Request를 매번 주고받는 게 아니라 single Event Stream을 받는다.
- Watcher: Event Stream that is dynamically connected; like a pipe from API server to your Implementation.
- client go에서 informer 관련 구현체는 문서화가 덜 되어 있는 편임.
https://aly.arriqaaq.com/kubernetes-informers/
구현할 것: Dynamic Shared Informer Factory.
- Dynamic? -> Not using Concrete Type defined in the client.
- k8s go client의 패키지 형태로 제공 https://pkg.go.dev/k8s.io/client-go/dynamic
- 원본 코드: https://github.com/cloud-native-skunkworks/dynamic-informer
더 자세한 내용은 https://blog.dsb.dev/posts/creating-dynamic-informers/ 서 확인할 수 있다.
반응형
'학습일지 > kubernetes' 카테고리의 다른 글
Naver Engineering Day 2024 - Kubernetes에서 DNS 다루는 방법 (0) | 2024.06.26 |
---|---|
KubeCon 2020 - Kubernetes Leader Election for Fun and Profit (0) | 2023.08.05 |
if kakao 2022 - Kubernetes Controller를 위한 테스트코드 작성 (0) | 2023.02.24 |
ContainerDays 2021 - Into the Core of Kubernetes: the internals of etcd 정리 (0) | 2022.12.30 |
if kakao 2021 - k8s Cluster 확장, 어디까지 알아보고 오셨어요? (0) | 2022.06.02 |