
JVM Garbage Collection Tuning
·
Kotlin & Java
JVM Garbage Collection TuningSpring boot + Kotlin GC 튜닝 Spring Boot + Kotlin을 기반으로 GC 튜닝을 실습하고 모니터링을 통해서 아웃풋이 어떻게 변화되는지 모니터링 해보자.우선 스프링부트 사용시 가장 일반적으로 많이 사용될 스택과 코드 구성을 구성했다.Backend: Spring Boot + KotlinDatabase: MySQL, RedisMonitoring: Micrometer + Prometheus + GrafanaContainerization: DockerService일반적으로 많이 사용되고 간단하게 구성을 했다.@Serviceclass OrderService( private val productRepository: ProductR..