-
AWS Elastic Beanstalk 배포 방법 정리aws 2021. 3. 25. 14:16
Elastic Beanstalk Deploymemt Modes
All at once(deploy all in one go)
- fastest, but instances aren't available to serve traffic for a bit(downtime)
- Great for quick iterations in development environment
- 가장 빠르다. 잠깐 서버 다운타임이 생긴다.
Rolling
- update a few instances at a time(bucket), and then move onto the next bucket once the first bucket is healthy
- Application is running below capacity
- can set the bucket size
- Application is running both versions simultaneously
- no additional cost
- long deployment
Rolling with additional batches
- like rolling, but spins up new instances to move the batch(so that the old application is still available)
Immutable
- spins up new instances in a new ASG, deploys version to these instances, and then swaps all the instances when everyting is healty
Blue / Green
각 배포 방법들의 차이 from AWS Doc
자료 출처:
'aws' 카테고리의 다른 글
AWS solutions Architect Associate 시험 오답노트 5 (0) 2021.03.30 AWS solutions Architect Associate 시험 오답노트 4 (0) 2021.03.16 AWS solutions Architect Associate 시험 오답노트 3 (0) 2021.02.27 AWS solutions Architect Associate 시험 오답노트 2 (0) 2021.02.21 AWS EC2( Amazon Linux 2)에 git, miniconda 설치하기 (0) 2021.02.15