Difference between revisions of "AWS ECS Task definition parameters"

From wikieduonline
Jump to navigation Jump to search
 
(7 intermediate revisions by 3 users not shown)
Line 2: Line 2:
  
  
* [[aws ecs register-task-definition]]
+
* <code>[[aws ecs register-task-definition]]</code>
  
  
{{aws ecs tasks}}
+
"ulimits": [
 +
      {
 +
        "name": "core"|"cpu"|"data"|"fsize"|"locks"|"memlock"|"msgqueue"|"nice"|"nofile"|"nproc"|"rss"|"rtprio"|"rttime"|"sigpending"|"stack",
 +
        "softLimit": integer,
 +
        "hardLimit": integer
 +
      }
 +
      ...
 +
    ]
 +
 
 +
 
 +
 
 +
"ulimits": [
 +
      {
 +
        "name": "nofile",
 +
        "softLimit": 500000,
 +
        "hardLimit": 500000
 +
      }
 +
    ]
 +
 
 +
 
 +
[[ulimits]]
 +
[[AWS ECS task definitions]]
 +
[[docker run --memory]]
 +
[[memoryReservation]]
 +
[[healthCheck]]
 +
[[Amazon ECS Task Definition Deletion]]
 +
 
 +
 
 +
== See also ==
 +
* {{aws ecs tasks}}
 +
 
 +
[[Category:AWS]]

Latest revision as of 19:14, 10 July 2023

https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html



"ulimits": [
     {
       "name": "core"|"cpu"|"data"|"fsize"|"locks"|"memlock"|"msgqueue"|"nice"|"nofile"|"nproc"|"rss"|"rtprio"|"rttime"|"sigpending"|"stack",
       "softLimit": integer,
       "hardLimit": integer
     }
     ...
   ]


"ulimits": [

     {
       "name": "nofile",
       "softLimit": 500000,
       "hardLimit": 500000
     }
   ]


ulimits
AWS ECS task definitions
docker run --memory
memoryReservation
healthCheck
Amazon ECS Task Definition Deletion


See also[edit]

Advertising: