Lambda Flashcards

1
Q

Q: What solution will reduce the startup latency for Java 11 Lambda functions, reduce cold starts, and be cost-effective?

A

A: Configure Lambda SnapStart.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Q: How should a solutions architect design a serverless application that needs to execute long-running tasks without impacting the application’s performance?

A

A: Use an Amazon SQS queue to receive the tasks. Configure an AWS Lambda function to process the tasks from the queue.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Q: What should a solutions architect do to ensure that an AWS Lambda function has the necessary permissions to access an Amazon DynamoDB table securely?

A

A: Create an IAM role with the required permissions to read and write from the DynamoDB tables. Attach the role to the Lambda function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Q: How should a solutions architect design a scalable and fault-tolerant solution to process messages received by an application using Amazon DynamoDB?

A

A: Use an Amazon SQS FIFO queue to receive the messages. Configure the queue to trigger an AWS Lambda function to process the messages and store the results in DynamoDB.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Q: What solution will meet the requirements of processing streaming data from IoT sensors in a scalable and cost-effective manner?

A

A: Use AWS Lambda with a Python script to process the data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Q: How should a solutions architect design a serverless application to handle unpredictable traffic and minimize operational overhead?

A

A: Use Amazon API Gateway to expose the application’s API and invoke AWS Lambda functions to handle the application logic.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Q: What should a solutions architect do to improve the performance and scalability of a serverless application that uses AWS Lambda and Amazon API Gateway?

A

A: Configure provisioned concurrency for the Lambda function that handles the API requests.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly