Kubernetes exposed LoadBalancer service is very slow
I have prepared two Kubernetes installations on AWS, one with Heptio Kubernetes Quick start and the second one with Rancher on RancherOS.
In both installations I run my hello-world app and configured the loadbalancing. After that accessing the app via loadbalancer is extremely slow - it takes around 10 seconds. If I access it via the browser, then just the first request is slow, subsequent requests are a lot faster.
Here is what I do to configure my app:
kubectl run tporeba-docker-webapp --image=tporeba/tporeba-docker-webapp:latest --port=8080
kubectl scale deployment tporeba-docker-webapp --replicas=5
kubectl expose deployment/tporeba-docker-webapp --type="LoadBalancer" --port=80 --target-port=8080
Last command also creates the AWS loadbalancer, which dns name I can get by running:
kubectl describe service tporeba-docker-webapp | grep "LoadBalancer Ingress" | awk -P '{print $3'}
The used kubernetes versions are: 1.9.2 for heptio installation
Server Version: version.Info{Major:"1", Minor:"9",
GitVersion:"v1.9.2",
GitCommit:"5fa2db2bd46ac79e5e00a4e6ed24191080aa463b
", GitTreeState:"clean", BuildDate:"2018-01-18T09:42:01Z",
GoVersion:"go1.9.2", Compiler:"gc", Platform:"linux/amd64"}
and 1.8.5-rancher1 for Rancher installation relspectively:
Server Version: version.Info{Major:"1", Minor:"8+",
GitVersion:"v1.8.5-rancher1",
GitCommit:"6cb179822b9f77893eac5612c91a0ed7c0941b45",
GitTreeState:"clean", BuildDate:"2017-12-11T17:40:37Z",
GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}
Am I doing something wrong with the configuration? Why the loadbalancer is causing such delays? When I configure the loadbalancing in Rancher (instead of K8s) then the response arrives in 0.5s.
Any ideas?
amazon-web-services kubernetes load-balancing rancher
add a comment |
I have prepared two Kubernetes installations on AWS, one with Heptio Kubernetes Quick start and the second one with Rancher on RancherOS.
In both installations I run my hello-world app and configured the loadbalancing. After that accessing the app via loadbalancer is extremely slow - it takes around 10 seconds. If I access it via the browser, then just the first request is slow, subsequent requests are a lot faster.
Here is what I do to configure my app:
kubectl run tporeba-docker-webapp --image=tporeba/tporeba-docker-webapp:latest --port=8080
kubectl scale deployment tporeba-docker-webapp --replicas=5
kubectl expose deployment/tporeba-docker-webapp --type="LoadBalancer" --port=80 --target-port=8080
Last command also creates the AWS loadbalancer, which dns name I can get by running:
kubectl describe service tporeba-docker-webapp | grep "LoadBalancer Ingress" | awk -P '{print $3'}
The used kubernetes versions are: 1.9.2 for heptio installation
Server Version: version.Info{Major:"1", Minor:"9",
GitVersion:"v1.9.2",
GitCommit:"5fa2db2bd46ac79e5e00a4e6ed24191080aa463b
", GitTreeState:"clean", BuildDate:"2018-01-18T09:42:01Z",
GoVersion:"go1.9.2", Compiler:"gc", Platform:"linux/amd64"}
and 1.8.5-rancher1 for Rancher installation relspectively:
Server Version: version.Info{Major:"1", Minor:"8+",
GitVersion:"v1.8.5-rancher1",
GitCommit:"6cb179822b9f77893eac5612c91a0ed7c0941b45",
GitTreeState:"clean", BuildDate:"2017-12-11T17:40:37Z",
GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}
Am I doing something wrong with the configuration? Why the loadbalancer is causing such delays? When I configure the loadbalancing in Rancher (instead of K8s) then the response arrives in 0.5s.
Any ideas?
amazon-web-services kubernetes load-balancing rancher
add a comment |
I have prepared two Kubernetes installations on AWS, one with Heptio Kubernetes Quick start and the second one with Rancher on RancherOS.
In both installations I run my hello-world app and configured the loadbalancing. After that accessing the app via loadbalancer is extremely slow - it takes around 10 seconds. If I access it via the browser, then just the first request is slow, subsequent requests are a lot faster.
Here is what I do to configure my app:
kubectl run tporeba-docker-webapp --image=tporeba/tporeba-docker-webapp:latest --port=8080
kubectl scale deployment tporeba-docker-webapp --replicas=5
kubectl expose deployment/tporeba-docker-webapp --type="LoadBalancer" --port=80 --target-port=8080
Last command also creates the AWS loadbalancer, which dns name I can get by running:
kubectl describe service tporeba-docker-webapp | grep "LoadBalancer Ingress" | awk -P '{print $3'}
The used kubernetes versions are: 1.9.2 for heptio installation
Server Version: version.Info{Major:"1", Minor:"9",
GitVersion:"v1.9.2",
GitCommit:"5fa2db2bd46ac79e5e00a4e6ed24191080aa463b
", GitTreeState:"clean", BuildDate:"2018-01-18T09:42:01Z",
GoVersion:"go1.9.2", Compiler:"gc", Platform:"linux/amd64"}
and 1.8.5-rancher1 for Rancher installation relspectively:
Server Version: version.Info{Major:"1", Minor:"8+",
GitVersion:"v1.8.5-rancher1",
GitCommit:"6cb179822b9f77893eac5612c91a0ed7c0941b45",
GitTreeState:"clean", BuildDate:"2017-12-11T17:40:37Z",
GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}
Am I doing something wrong with the configuration? Why the loadbalancer is causing such delays? When I configure the loadbalancing in Rancher (instead of K8s) then the response arrives in 0.5s.
Any ideas?
amazon-web-services kubernetes load-balancing rancher
I have prepared two Kubernetes installations on AWS, one with Heptio Kubernetes Quick start and the second one with Rancher on RancherOS.
In both installations I run my hello-world app and configured the loadbalancing. After that accessing the app via loadbalancer is extremely slow - it takes around 10 seconds. If I access it via the browser, then just the first request is slow, subsequent requests are a lot faster.
Here is what I do to configure my app:
kubectl run tporeba-docker-webapp --image=tporeba/tporeba-docker-webapp:latest --port=8080
kubectl scale deployment tporeba-docker-webapp --replicas=5
kubectl expose deployment/tporeba-docker-webapp --type="LoadBalancer" --port=80 --target-port=8080
Last command also creates the AWS loadbalancer, which dns name I can get by running:
kubectl describe service tporeba-docker-webapp | grep "LoadBalancer Ingress" | awk -P '{print $3'}
The used kubernetes versions are: 1.9.2 for heptio installation
Server Version: version.Info{Major:"1", Minor:"9",
GitVersion:"v1.9.2",
GitCommit:"5fa2db2bd46ac79e5e00a4e6ed24191080aa463b
", GitTreeState:"clean", BuildDate:"2018-01-18T09:42:01Z",
GoVersion:"go1.9.2", Compiler:"gc", Platform:"linux/amd64"}
and 1.8.5-rancher1 for Rancher installation relspectively:
Server Version: version.Info{Major:"1", Minor:"8+",
GitVersion:"v1.8.5-rancher1",
GitCommit:"6cb179822b9f77893eac5612c91a0ed7c0941b45",
GitTreeState:"clean", BuildDate:"2017-12-11T17:40:37Z",
GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}
Am I doing something wrong with the configuration? Why the loadbalancer is causing such delays? When I configure the loadbalancing in Rancher (instead of K8s) then the response arrives in 0.5s.
Any ideas?
amazon-web-services kubernetes load-balancing rancher
amazon-web-services kubernetes load-balancing rancher
asked Mar 9 '18 at 15:27
tporebatporeba
157113
157113
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49197015%2fkubernetes-exposed-loadbalancer-service-is-very-slow%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49197015%2fkubernetes-exposed-loadbalancer-service-is-very-slow%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
