amazon web services - Cost Calulating with AWS ECS Container -


i have question regarding cost structure on aws ecs. how can know service on container "spending" most? don't see option tag containers. ideas welcome, didn't find solution off aws websites. in advance.

ecs services allocated instances based on memory limits , cpu units specify tasks compose service. can estimate costing dividing cost ec2 instances in cluster total amount of resources divided amount of required resources.

cpu units minimum value, is, task won't placed on instance unless there minimum of cpu units available. tasks can exceed number of cpu units require, , value can set 0.

memory limits maximum amount of memory task allowed use. must allocate enough memory ecs task, or killed ecs when exceeds it.

therefore, memory better resource use when estimating costing.

for example:

lets have service runs 2 instances of task requires total of 800 mb of memory. if using t2.medium instances in cluster, service require 1/2 of t2.medium run, , cost service on ecs 1/2 of of cost of 2.medium ec2 instance.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -