AWS ECR image is taking too much time to run











up vote
0
down vote

favorite












I'm new to AWS ECS service. I have created a docker image of our node application and pushed it to AWS ECR registry. While using that image to run a container on ECS as well as in EC2 it is taking a long time start running. The response I'm getting after waiting for nearly 5 minutes is this:



npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

up to date in 277.487s


After that also, it took a lot of time to start.



When I try to run on a new EC2 t2.micro instance, it shows Segmentation Fault. But it ran without any issue on my local machine.



Is this an issue with small instane type (t2.micro) ?










share|improve this question






















  • how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
    – Adiii
    Nov 12 at 9:08










  • I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
    – Neron Joseph
    Nov 12 at 9:32










  • So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
    – Adiii
    Nov 12 at 9:44










  • And how much memory you have set in task definiation in case of t2 micro?
    – Adiii
    Nov 12 at 9:48






  • 2




    You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
    – David Maze
    Nov 12 at 13:38















up vote
0
down vote

favorite












I'm new to AWS ECS service. I have created a docker image of our node application and pushed it to AWS ECR registry. While using that image to run a container on ECS as well as in EC2 it is taking a long time start running. The response I'm getting after waiting for nearly 5 minutes is this:



npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

up to date in 277.487s


After that also, it took a lot of time to start.



When I try to run on a new EC2 t2.micro instance, it shows Segmentation Fault. But it ran without any issue on my local machine.



Is this an issue with small instane type (t2.micro) ?










share|improve this question






















  • how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
    – Adiii
    Nov 12 at 9:08










  • I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
    – Neron Joseph
    Nov 12 at 9:32










  • So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
    – Adiii
    Nov 12 at 9:44










  • And how much memory you have set in task definiation in case of t2 micro?
    – Adiii
    Nov 12 at 9:48






  • 2




    You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
    – David Maze
    Nov 12 at 13:38













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm new to AWS ECS service. I have created a docker image of our node application and pushed it to AWS ECR registry. While using that image to run a container on ECS as well as in EC2 it is taking a long time start running. The response I'm getting after waiting for nearly 5 minutes is this:



npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

up to date in 277.487s


After that also, it took a lot of time to start.



When I try to run on a new EC2 t2.micro instance, it shows Segmentation Fault. But it ran without any issue on my local machine.



Is this an issue with small instane type (t2.micro) ?










share|improve this question













I'm new to AWS ECS service. I have created a docker image of our node application and pushed it to AWS ECR registry. While using that image to run a container on ECS as well as in EC2 it is taking a long time start running. The response I'm getting after waiting for nearly 5 minutes is this:



npm WARN ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

up to date in 277.487s


After that also, it took a lot of time to start.



When I try to run on a new EC2 t2.micro instance, it shows Segmentation Fault. But it ran without any issue on my local machine.



Is this an issue with small instane type (t2.micro) ?







amazon-web-services docker amazon-ec2 amazon-ecs






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 12 at 6:50









Neron Joseph

869




869












  • how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
    – Adiii
    Nov 12 at 9:08










  • I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
    – Neron Joseph
    Nov 12 at 9:32










  • So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
    – Adiii
    Nov 12 at 9:44










  • And how much memory you have set in task definiation in case of t2 micro?
    – Adiii
    Nov 12 at 9:48






  • 2




    You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
    – David Maze
    Nov 12 at 13:38


















  • how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
    – Adiii
    Nov 12 at 9:08










  • I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
    – Neron Joseph
    Nov 12 at 9:32










  • So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
    – Adiii
    Nov 12 at 9:44










  • And how much memory you have set in task definiation in case of t2 micro?
    – Adiii
    Nov 12 at 9:48






  • 2




    You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
    – David Maze
    Nov 12 at 13:38
















how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
– Adiii
Nov 12 at 9:08




how much memory is required to ur container on the local machine? run without task definition or service and run in the interactive mood it seems like ur also installing npm on bootup so will you will have a better picture before any changes.
– Adiii
Nov 12 at 9:08












I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
– Neron Joseph
Nov 12 at 9:32




I ran it in a t2.medium instance and it takes less that 500MB memory. And it also ran faster than the other instance (t2.micro).
– Neron Joseph
Nov 12 at 9:32












So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
– Adiii
Nov 12 at 9:44




So in T2.micro, you have only 1GB memory. Memory might be the reason. aws.amazon.com/ec2/instance-types
– Adiii
Nov 12 at 9:44












And how much memory you have set in task definiation in case of t2 micro?
– Adiii
Nov 12 at 9:48




And how much memory you have set in task definiation in case of t2 micro?
– Adiii
Nov 12 at 9:48




2




2




You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
– David Maze
Nov 12 at 13:38




You aren’t running npm install as part of the container startup, are you? Can you add your Dockerfile to the question?
– David Maze
Nov 12 at 13:38

















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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257136%2faws-ecr-image-is-taking-too-much-time-to-run%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257136%2faws-ecr-image-is-taking-too-much-time-to-run%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python