Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- OOM
- 주식데이터수집
- Out of Memory
- 말로코딩
- charcter set
- 주가정보발송
- delivery혁신팀
- dbms 변경
- log insert shell
- 디비아엔씨
- batch job
- message sender
- jar 패키징
- publish subscribe style
- JMeter
- mariadb
- apk 컴파일
- Rag
- app$innerclass.class
- 내부 jar 파일 참조
- Tableau
- jar manifest
- db inc.
- 외부 jar 파일 참조
- GA4
- Python
- 실손24
- memory analyzer tool
- 실손보험 청구 전산화
- java oom
Archives
- Today
- Total
목록java oom (1)
IT 트랜드 공유
[OOM] Out Of Memory 분석 방법(with MAT)
heap dump 생성 및 분석 1. 샘플 파일 생성(OutOfMemoryExample.java)import java.util.ArrayList;import java.util.List; public class OutOfMemoryExample { public static void main(String[] args) { List memoryLeak = new ArrayList(); while (true) { memoryLeak.add(new Object()); // Continuously adding objects to the list } }} 2. 컴파일(OutOfMemoryExample.class 생성)javac OutOfMemoryE..
JAVA
2024. 9. 20. 11:06