ECS::TaskDefinition - What is the maximum value of 'Memory' property?

試著忘記壹切 提交于 2020-02-05 05:48:10

问题


here in this syntax of "ContainerDefinitions":[{Memory:500}] in AWS::ECS::TaskDefinition,

Memory property refers to virtual address space(hard limit) of docker container process in root CGROUP.


We are launching a jenkins container process on AWS EC2 using cloudformation resource type AWS::ECS::TaskDefinition. AWS EC2 is a 64 bit Linux OS.

On 32 bit Linux OS, virtual address space of a process, can go upto 3 GB.

On 64 bit Linux OS, virtual adress space of a process, can go upto Terabytes.


We are currently facing this stabilise-error due to, improper usage of Memory property.


On a 64 bit OS, what is the maximum value of Memory that can be given to jenkins container process? Because we are facing this stabilise-error

How to decide the value of Memory property? To resolve this error..

来源:https://stackoverflow.com/questions/60049993/ecstaskdefinition-what-is-the-maximum-value-of-memory-property

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!