[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-04-30 22:42:02 +09:00
parent 0bd4f19e38
commit c36c0644a1
4888 changed files with 18470 additions and 18602 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
---
id: P-REINFORCE-AUTO-DESP-001
id: [[P-Reinforce]]-AUTO-DESP-001
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.97
tags: [auto-reinforced, deployment-strategy, devops, ci-cd, blue-green, canary, reliability]
tags: [auto-reinforced, deployment-[[Strategy]], devops, ci-cd, blue-green, canary, [[Reliability]]]
last_reinforced: 2026-04-20
---
@@ -18,9 +18,9 @@ last_reinforced: 2026-04-20
* **Blue-Green Deployment**: 구버전(Blue)과 신버전(Green) 환경을 동시에 띄워두고 트래픽을 한 번에 전환. 문제 발생 시 즉각 롤백 용이.
* **Canary Deployment**: 극소수의 사용자에게만 먼저 배포하여 검증한 뒤 점진적으로 확대. (탄광의 카나리아에서 유래)
* **Rolling Update**: 서버를 하나씩 순차적으로 업데이트하여 무중단 배포 구현.
* **A/B Testing**: 서로 다른 기능을 배포하여 사용자 반응을 데이터로 비교.
* **A/B [[Testing]]**: 서로 다른 기능을 배포하여 사용자 반응을 데이터로 비교.
2. **왜 중요한가?**:
* 사용자의 불편 없이 24시간 서비스를 유지하면서도, 개발팀은 하루에도 수십 번씩 새로운 기능을 안전하게 출시할 수 있게 함. (CI_CD와 연결)
* 사용자의 불편 없이 24시간 서비스를 유지하면서도, 개발팀은 하루에도 수십 번씩 새로운 기능을 안전하게 출시할 수 있게 함. ([[CI_CD]]와 연결)
## ⚠️ 모순 및 업데이트 (Contradictions & RL Update)
- **과거 데이터와의 충돌**: 과거에는 새벽에 서버를 끄고 작업하는 '점검 공지 정책'이 일상적이었으나, 현대 정책은 사용자 모르게 배경에서 업데이트를 완료하는 '무중단 자동화 정책'이 표준임(RL Update).
@@ -28,5 +28,5 @@ last_reinforced: 2026-04-20
## 🔗 지식 연결 (Graph)
- [[CI_CD]], [[Scalability]], [[Technical-Architecture]], [[Quality Gates]], Monitoring
- **Modern Tech/Tools**: Kubernetes, ArgoCD, AWS CodeDeploy, GitHub Actions.
- **Modern Tech/Tools**: Kubernetes, ArgoCD, AWS CodeDeploy, [[GitHub Actions]].
---