Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Solutions Architect - Associate SAA-C03 All Questions

View all questions & answers for the AWS Certified Solutions Architect - Associate SAA-C03 exam

Exam AWS Certified Solutions Architect - Associate SAA-C03 topic 1 question 379 discussion

A company hosts a frontend application that uses an Amazon API Gateway API backend that is integrated with AWS Lambda. When the API receives requests, the Lambda function loads many libraries. Then the Lambda function connects to an Amazon RDS database, processes the data, and returns the data to the frontend application. The company wants to ensure that response latency is as low as possible for all its users with the fewest number of changes to the company's operations.

Which solution will meet these requirements?

  • A. Establish a connection between the frontend application and the database to make queries faster by bypassing the API.
  • B. Configure provisioned concurrency for the Lambda function that handles the requests.
  • C. Cache the results of the queries in Amazon S3 for faster retrieval of similar datasets.
  • D. Increase the size of the database to increase the number of connections Lambda can establish at one time.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
UnluckyDucky
Highly Voted 1 year, 8 months ago
Selected Answer: B
Key: the Lambda function loads many libraries Configuring provisioned concurrency would get rid of the "cold start" of the function therefore speeding up the proccess.
upvoted 17 times
...
kampatra
Highly Voted 1 year, 8 months ago
Selected Answer: B
Provisioned concurrency – Provisioned concurrency initializes a requested number of execution environments so that they are prepared to respond immediately to your function's invocations. Note that configuring provisioned concurrency incurs charges to your AWS account.
upvoted 11 times
...
TariqKipkemei
Most Recent 1 year, 1 month ago
Selected Answer: B
Provisioned concurrency pre-initializes execution environments which are prepared to respond immediately to incoming function requests.
upvoted 7 times
...
Guru4Cloud
1 year, 2 months ago
Selected Answer: B
Provisioned concurrency ensures a configured number of execution environments are ready to serve requests to the Lambda function. This avoids cold starts where the function would otherwise need to load all the libraries on each invocation.
upvoted 4 times
...
Guru4Cloud
1 year, 2 months ago
Selected Answer: B
Provisioned concurrency ensures a configured number of execution environments are ready to serve requests to the Lambda function. This avoids cold starts where the function would otherwise need to load all the libraries on each invocation.
upvoted 2 times
...
elearningtakai
1 year, 7 months ago
Selected Answer: B
Answer B is correct https://docs.aws.amazon.com/lambda/latest/dg/provisioned-concurrency.html Answer C: need to modify the application
upvoted 5 times
elearningtakai
1 year, 7 months ago
This is relevant to "cold start" with keywords: "Lambda function loads many libraries"
upvoted 2 times
...
...
Karlos99
1 year, 8 months ago
Selected Answer: B
https://docs.aws.amazon.com/lambda/latest/dg/provisioned-concurrency.html
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...