AWS கொள்ளளவை இயக்க பல வழிகளை வழங்குகிறது — ECS (Elastic Container Service, AWS இன் சொந்த ஒருங்கிணைப்பான்), EKS (நிர்வகிக்கப்படும் Kubernetes), மற்றும் Fargate (சேவையற்ற கொள்ளளவை, நிர்வகிக்க சேவையகங்கள் இல்லை). விருப்பங்களைப் புரிந்துகொள்வது சரியான கொள்ளளவை தளத்தைத் தேர்வு செய்ய உதவுகிறது.
ECS — AWS இன் கொள்ளளவை ஒருங்கிணைப்பான்
ECS runs and orchestrates Docker containers on AWS:
→ simpler than Kubernetes; deeply integrated with AWS (IAM, ALB, CloudWatch, VPC)
→ TASK (a running container set), TASK DEFINITION (the spec), SERVICE (keeps N tasks
running, integrates with load balancers, auto-scales)
→ good for teams wanting container orchestration without Kubernetes complexity
