When to use serverless [판단 기준]
·
CLOUD/AWS Cloud
When to use serverless How do you decide whether a serverless deployment model is right for your application? As the following diagram shows, the decision begins with determining whether your applications need full access to the underlying operating system on the EC2 instance onto which they are deployed. If they do need to access the operating system for application administration, management, ..
Fargate
·
CLOUD/AWS Cloud
Fargate is a serverless compute engine for containers that works with both Amazon ECS or Amazon EKS. When using Fargate, you do not need to provision or manage the underlying EC2 instances on which the Docker platform is running. Instead, Fargate manages this Amazon EC2 infrastructure for you. By using Fargate, you can focus more on innovating and developing your applications, not managing appli..
SNS와 SQS의 차이?
·
CLOUD/AWS Cloud
SNS와 SQS 모두 느슨하게 결합된 마이크로 서비스 애플리케이션을 위해 사용하면 좋다. 근데 두 서비스가 좀 차이가 있다. SNS는 여러 토픽을 만들고, 그 토픽을 구독한 subscriber에게 message를 전달하는 역할을 한다. 내가 topic에 하나의 메시지를 보내면, 그 topic을 구독한 모든 subscribers에게 메시지가 전달된다. Similarly, Amazon SNS facilitates loosely coupled microservices application architectures by separating the publishing of the message from the receipt or acknowledgement of the message by another servi..
[의문] Auto-Scaling (+Scaling 더 빠르게 하는 법)
·
CLOUD/AWS Cloud
Scaling 더 빠르게 하기 : 1) dynamic scaling 2) predictive scaling 같이 사용한다. 나는 아직 Minimum size와 Desired capacity의 차이를 모르겠어. Suppose that you are preparing to launch an application on EC2 instances. When you create an Auto Scaling group, you can set the minimum number of EC2 instances for the application. The minimum capacity is the number of EC2 instances that launch immediately after you have created ..
Capstone Topic?
·
CLOUD/AWS Cloud
미리 생각해보는게 좋다.
IAM policy와 IAM role은 무슨 차이가 있을까?
·
CLOUD/AWS Cloud
IAM policy는 AWS 서비스 및 리소스에 대한 권한을 부여하거나 거부하는 문서입니다. (json) IAM 정책은 사용자가 리소스에 액세스할 수 있는 수준을 사용자 지정할 수 있는 유연성을 제공합니다. 예를 들어 사용자가 AWS 계정 내의 모든 Amazon S3 버킷에 액세스하거나 특정 버킷에만 액세스하도록 허용할 수 있습니다. 임시로 권한에 액세스하기 위해 수임할 수 있는 자격 증명은 IAM 역할입니다. https://explore.skillbuilder.aws/learn/course/1928/play/6248/aws-cloud-practitioner-essentials-korean Self-paced digital training on AWS - AWS Skill Builder Loading y..