Topic 1 Question 600
A company is planning to migrate a TCP-based application into the company's VPC. The application is publicly accessible on a nonstandard TCP port through a hardware appliance in the company's data center. This public endpoint can process up to 3 million requests per second with low latency. The company requires the same level of performance for the new public endpoint in AWS.
What should a solutions architect recommend to meet this requirement?
Deploy a Network Load Balancer (NLB). Configure the NLB to be publicly accessible over the TCP port that the application requires.
Deploy an Application Load Balancer (ALB). Configure the ALB to be publicly accessible over the TCP port that the application requires.
Deploy an Amazon CloudFront distribution that listens on the TCP port that the application requires. Use an Application Load Balancer as the origin.
Deploy an Amazon API Gateway API that is configured with the TCP port that the application requires. Configure AWS Lambda functions with provisioned concurrency to process the requests.
ユーザの投票
コメント(4)
- 正解だと思う選択肢: A
Since the company requires the same level of performance for the new public endpoint in AWS.
A Network Load Balancer functions at the fourth layer of the Open Systems Interconnection (OSI) model. It can handle millions of requests per second. After the load balancer receives a connection request, it selects a target from the target group for the default rule. It attempts to open a TCP connection to the selected target on the port specified in the listener configuration.
Link; https://docs.aws.amazon.com/elasticloadbalancing/latest/network/introduction.html
👍 7Sugarbear_012023/09/23 - 正解だと思う選択肢: A
TCP = NLB
👍 3TariqKipkemei2023/11/27 - 正解だと思う選択肢: A
NLBs handle millions of requests per second. NLBs can handle general TCP traffic.
👍 2taustin22023/09/22
シャッフルモード