Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 PR 내용 요약
✅ 작업 내용 상세
feat: Loki 로깅 최적화 및 JVM 튜닝
이 커밋은 Loki 로깅과 관련된 S3 비용을 절감하고 JVM 성능 및 안정성을 향상시키기 위한 여러
최적화를 포함합니다.
주요 변경 사항은 다음과 같습니다.
application-prod.yml에서store.lastdance패키지의 로깅 레벨을INFO에서WARN으로낮춰 로그 볼륨을 줄였습니다.
monitoring/loki/config.yml의 Loki 구성을 조정했습니다.chunk_block_size를 256KB에서 512KB로 늘려 S3 PUT 요청 빈도를 줄였습니다.chunk_idle_period를 12시간으로 되돌려 9-to-6 서버 운영에 맞췄습니다.max_chunk_age를 336시간(14일)으로 설정하여 로그 보존 관리를 개선했습니다.NotificationScheduler.java의 장황한INFO레벨 로그를DEBUG레벨로 리팩토링하여 개발로그를 더 깔끔하게 만들었습니다.
docker-compose.yml의blue-app및green-app에 대한JAVA_TOOL_OPTIONS를업데이트했습니다.
SerialGC에서G1GC로 전환하여(-XX:+UseG1GC) 성능 향상 및 예측 가능한 일시 중지시간을 확보했습니다.
-Xms640m -Xmx640m) 예측 가능성을 높였습니다.MaxGCPauseMillis를 200ms로 구성하여(-XX:MaxGCPauseMillis=200) 애플리케이션 응답성을개선했습니다.
monitoring/prometheus/alert.rules에서HighCpuUsage알림 임계값을 80%에서 90%로변경했습니다.
📸 스크린샷 (UI 작업일 경우)
🔍 테스트 결과
📝 참고 사항