-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
K8s deployment - getting "CrashLoopBackOff" for business logic pods #130
Comments
I haven't ran this in a while. Are there any logs for the |
Hmmm... what about |
It returns the following:
It seems that introducing lazy initialization might help. I'm not very familiar with Spring beans yet, so I'm not sure where to fix it though. |
It's probably best to assume that the service code works at the application level. The probably is mostly likely with where it's running (i.e. K8s) and how it has been configured to run (e.g. k8s yaml).. That log is useful. In particular it doesn't show any errors, which is interesting. A couple of thoughts:
|
I've just tried running this on another machine - MacBook Pro with 16GB RAM (previously used MacBook Air/8 GB and Ubuntu machine with 16 GB as well). Here are my Docker resources settings: After applying this change, I tried starting only the What's your recommended memory/resources configuration? |
After a couple more attempts, and starting minikube with the following specification: I can see that the problem might lay in the service being unable to reach Kafka topic.
Please find the full log attached here: accounting-service-logs.txt I believe that the kafka service doesn't work properly. I'm attaching its logs as well: |
Finally an error message! The Kafka log indicates that the DNS name |
PS. I am surprised that you need to run |
It's up and running. Plese find the full pod's log here:
I'm just used to using Thank you very much for your assistance, I'm still learning :) |
Presumably, that's why increasing the Docker VM size did not have an effect.
This indicates that there is a pod. It tell you whether there is a Service defined - ftgo-application/deployment/kubernetes/stateful-services/ftgo-zookeeper-deployment.yml Line 1 in a835e23
|
BTW I am bit confused about that's happening. I read more of the Kafka log. It seems to evaluating connect to Kafka. But then it (sometimes) has problems connecting to itself via its advertised name
|
Okay - I think I know what is the reason of this problem. After you've drawn my attention to the DNS name issue, I found some discussion on StackOverflow which indicated that Minikube doesn't usually work well with names, preferring IPs. I decided to use the K8s built-in into Docker, and it worked! Even on low resources settings. Example screenshot after I deployed 2 of the services: I will switch to Docker built-in K8s or GKS then. @cer thank you very much for your patience and help in debugging! 😄 |
I'm currently trying to run this application in Kubernetes, but with no luck. I fixed a couple of problems with the deployments in my forked version: https://github.com/pulnara/ftgo-application
I'm using a Minikube Kubernetes cluster and the
kubernetes-deploy-all.sh
script. After executing it, pods responsible for Kafka, MySQL etc. are successfully running, but the ones for business logic (like accounting service, consumer service etc.) not. After a while (and multiple restarts) they're eventually going into theCrashLoopBackOff
status, since all the time they don't meet the liveness probe - getting "connection refused" for the Spring Boot's/actuator/health
endpoint.This is my result of the
kubectl get pods
command:This are events from the ftgo-accounting-service pod's description:
Events:
Did anyone happen to have a similar problem? I tried multiple times and on 2 different OS (Ubuntu, Mac OS), and getting the same error on both. I have no idea how to fix it.
The text was updated successfully, but these errors were encountered: