ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[AWS SAP] Architecture Patterns – Compute

2022-03-30 03:00:06  阅读:186  来源: 互联网

标签:Use Compute Application use Patterns traffic EC2 SAP instances


High availability and elastic scalaility for web servers?

Use EC2 Auto Scaling and an ALB across Multi AZs

 

Low-latency connections over UDP to a pool of instances running a gaming application?

Use NLB with a UDP listener

 

Clients need a whitelist static IP addresses for a highly available load balanced application in an AWS Region?

use an NLB and create static IP addresses in each AZ.

 

Application on EC2 in an Auto Scaling group requires disaster recovery across Region?

Create an ASG in another Region with the capacity set to 0. Take snapshots and copy them across region (Lambda or DLM)

 

Application on EC2 must scal in larger increments if a big increase in traffic occurs, compared to small increases in traffic?

Use Auto Scaling with a Step scaling policy and configure a larger capacity increase.

 

Need to Scale EC2 instances behind an ALB based on the number of requrests completed by each instance?

Configure a target tracking policy using the ALBRequestCountPerTarget metric.

 

Need to run a large batch computing job at the lowest cost. Must be managed. Nodes can pick up where others left off in case of interruption?

Use a managed AWS Batch job and use EC2 Spot instances.

 

A tightly coupled High Performance Computing (HPC) workload requries low-latency between nodes and optimum network performance?

Launch EC2 instances in a signle AZ in a cluster placement group and use an Elastic Fabric Adapter (EFA)

 

Application must startup quickly when launched by ASG but requires app dependencies and code to be installed?

Create an AMI that includes the application depnedencies and code.

 

Application runs on EC2 behind an ALB. Once authenticated users should not need to reauthenticate if an instance fails?

Enable Sticky session for the target group or alternatively use a session store such as DynamoDB

 

LOB Application receives weekly burst of traffic and must scale for short periods - need thte most cost-effective solution?

Use reserved instsances for minimum required workload and then use Spot instances for the bursts in traffic.

标签:Use,Compute,Application,use,Patterns,traffic,EC2,SAP,instances
来源: https://www.cnblogs.com/Answer1215/p/16071361.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有