Please enable JavaScript.
Coggle requires JavaScript to display documents.
Serverless, HA (Elastic Beanstalk, On Premise Strategies, Load Balancers,…
Serverless
Lambda
-
-
-
-
Lambda function are independent, 1 event = 1 function
-
-
-
-
Use lambda as a scheduled event and read log files from AWS CloudWatch or ClouldTrail and report any erros through SNS notification
-
-
When you update a lambda function, there will be a brief window of time
-
-
Lambda Limit
-
3,008 MB maximum memory allocation
-
-
AWS Elastic Beanstalk
upports Java, .NET, PHP, Node.js, Python, Ruby, Go, and Docker web applications
-
AWS Config
you can do the following
-
Get a snapshot of the current configurations of the supported resources that are associated with your AWS account.
-
-
Receive a notification whenever a resource is created, modified, or deleted.
View relationships between resources. For example, you might want to find all resources that use a particular security group.
HA
Elastic Beanstalk
quickly deploy and manage applications in the AWS Cloud without worrying about the infrastructure that runs those applications
Availability
Described as the % of a time period when the service will be able to respond to your request in some fashion
-
Resiliency
ability to a system to self heal after damage or an event.
Reliability
Reliability is closely related to availability, it is the probability that system will work as designed
-
Load Balancers
LB Type
-
-
CLB
可以有HTTP/HTTPS applications,也可以使用
-
-
If you need the IPv4 address of your end user, look for the X-Forwarded-For header
Advanced
Sticky session
-
can enable Sticky Session for application Load Balancers, but the traffic will be sent to at the Target Group level.
-
-
Autoscaling
3 Components
-
Configuration Templates
Groups uses a launch template or a launch configuration as a configuration template for its EC2 instances
-
Scaling policy types
Target tracking scaling
Increase or decrease the current capacity of the group based on a target value for a specific metric
Step scaling
-
-
有 warm-up time condition, 預防instance 需要長時間的boot up
-
-
Scaling cooldowns
prevent your Auto Scaling group from launching or terminating additional instances before the effects of previous activities are visible
-
-