-
Notifications
You must be signed in to change notification settings - Fork 214
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
Getting 503 when restarting application #214
Comments
Do you have health check configured in marathon app config? The healthchecks are used for HAProxy check. Details can be found in the reload templates.
|
Yes, I have configured it. This is my app in marathon: {
"id": "/hello-java",
"cmd": "java -jar hello-java-all* $HOST $PORT",
"cpus": 0.1,
"mem": 32,
"disk": 20,
"instances": 5,
"executor": "//cmd",
"healthChecks": [
{
"path": "/hello-java/health",
"protocol": "HTTP",
"portIndex": 0,
"gracePeriodSeconds": 50,
"intervalSeconds": 1,
"timeoutSeconds": 1,
"maxConsecutiveFailures": 0,
"ignoreHttp1xx": false
}
],
"portDefinitions": [
{
"port": 10000,
"protocol": "tcp",
"labels": {}
}
],
"uris": [
"https://github.com/gabfssilva/hello/blob/master/build/libs/hello-java-all.jar?raw=true"
],
"container": null,
"env": {}
} Is there any place else where I need to configure something? It seems that bamboo tries to update the haproxy config on any event, even if the app is not healthy. |
Was app marked healthy on HAProxy health check admin UI?
|
I just checked and sometimes on restart all the instances are "INI" and none L7OK/200. When I check marathon I always see at least one healthy instance. |
There is a long standing issue about Bamboo adding tasks too early to HAProxy: #143. The issue describes a few workarounds. We have come around enabling HAProxy's redispatch option to try a different backend on failure. This is also helpful when a container crashes unexpectedly. I'd suggest to close this issue in favor of the one I referenced. |
I'm getting the 503 status code when I'm trying to restart an application in Marathon. I have a question: the event from marathon to ZK is sent before or after the health check being healthy? It seems like the events are sent before the application is healthy. If it is a normal behaviour, I was wondering, is it possible to retry on 503 errors with haproxy?
Thanks in advance!
The text was updated successfully, but these errors were encountered: