You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For every new pod, Fargate provider create a new branch new Task Definition and then start a new Task from it.
For most of the services, most of the pods look very close. Task definition is more like a Deployment to define common pod specs. In this case, we actually don't need to create that many Task templates. Instead, find the same owner from ownerReference and reuse the same template. The blocking issue is VK doesn't have cache to deployment. If VK has lister, that will be extremely easy to reuse
Help reduce API call and save time to "schedule a pod".
Save task definition quota and less likely to hit maximum allowed.
The text was updated successfully, but these errors were encountered:
Jeffwan
changed the title
Optimize to reduce requests to create new task definition
Optimize to reduce requests of creating new task definition
Jan 25, 2021
For every new pod, Fargate provider create a new branch new
Task Definition
and then start a newTask
from it.For most of the services, most of the pods look very close.
Task definition
is more like aDeployment
to define common pod specs. In this case, we actually don't need to create that many Task templates. Instead, find the same owner from ownerReference and reuse the same template. The blocking issue is VK doesn't have cache to deployment. If VK has lister, that will be extremely easy to reuseThe text was updated successfully, but these errors were encountered: