Posts by Year

2024

How to collect JVM heap dump in Kubernetes

3 minute read

Having trouble collecting JVM heap dump from Kubernetes? You need to use PV(Persistent Volume) to keep data since volumes are ephemeral in Kubernetes. If yo...

How to make docker build time faster

2 minute read

Having trouble with long build time of your docker image? Waiting for a long build time is quite difficult to tolerate. When you are building a docker image...

Back to top ↑

2023

Static serving SPA with CloudFront

less than 1 minute read

Connecting domain to cloudfront with route53 It is possible that your cloudfront is not shown on the list when you trying to connect your domain using AWS...

Prometheus JVM Spring metric

3 minute read

How to get centralize JVM & Spring metric using Prometheus Amazon managed prometheus and grafana might be a good option for monitoring when you are AWS E...

Cannot access SunJCE error in JDK11 above

less than 1 minute read

SunJCE error when using it in JDK 11 or above. How to solve it when using Jib I faced error below when I migrated from dockerfile to jib. java.lang.IllegalAc...

Minikube nginx ingress local setup

1 minute read

Minikube nginx ingress on local mac I was using minikube on mac trying to local test. I faced problem accessing local ingress after I set up. My configuratio...

An error when installing jenkins on Amazon Linux

less than 1 minute read

An error when installing jenkins on Amazon Linux based EC2 I faced following error when I tried “sudo yum install jenkins” ... You can remove cached packages...

ElastiCache with keyspace event

less than 1 minute read

Problems when using ElastiCache with keyspace event faced this error when I tried to use notify-keyspace-events option in spring data redis. Caused by: org.s...

Back to top ↑

2022

DB Isolation Level

2 minute read

What is isolation level? Isolation describes how changes applied by concurrent transactions are visible to each other. There are four types of isolation...

Back to top ↑