본문 바로가기

전체 글12

# CodeDeploy, System Manager (SSM), OpsWorks #CodeDeploy -Also way for deploying application automatically. -Work with EC2 Instances -Work with On-premises servers version 1 -> version 2 (automatically) #System Manger (SSM) -Helps you manage your EC2 and On-Premises system at scale -Another Hybrid AWS service Most important features are -Patching automation for enhanced compliance -Run commands across an entire fleet of servers -Store para.. 2020. 12. 21.
# CloudFormation , Beanstalk #CloudFormation -Declarative way of outlining your AWS Infrastructure(as a code) AWS 에서 사용할 클라우드 서비스를 코드로 정의 하여 템플릿을 만들수 있다. ex --- Resources: MyInstance: Type: AWS::EC2::Instance Properties: AvailabilityZone: us-east-1a ImageId: ami-a4c7edb2 InstanceType: t2.micro 그 템플렛을 사용하면 바로 클라우드 서비스를 적절한 order 로 만들수 있다 또한 언제 EC2 인스턴스를 삭제 할건지도 정할수 있다. View in Designer 를 통해 만들어질 클라우드 구조를 다이어그램으로 확인할수 있다. 전부 .. 2020. 12. 21.
# LightSail LightSail -클라우드에 익숙치 않은 사람들 위한 서비스 -Use cases: Simple web application, websites, Dev / Test enviroment -Has high availability but no auto-scaling, limited AWS integration 2020. 12. 19.
# AWS Batch #AWS Batch -Fully managed batch processing at any scale -Batch 란 continuous의 반대말, 일괄처리 -Batch will dynamically launch EC2 instances or Spot Instances -Batch jobs are defined as Docker images and run on ECS EX) Amazon S3 -(Trigger)-> AWS Batch ( has EC2 Instance, Spot instance) -(Insert)-> Amazon S3 람다랑 Batch의 차이가 머냐? 람다는 Time limit Limited runtime Limited temporary disk space Serverless 배치는 no t.. 2020. 12. 19.