asked 4.7k views
4 votes
AWS Lambda sourcing from Kinesis - how does it work?

A. AWS Lambda polls a Kinesis stream for new records and invokes your Lambda function to process them.
B. AWS Lambda pushes records from a Kinesis stream to your Lambda function for processing.
C. AWS Lambda and Kinesis are not integrated.
D. AWS Lambda is a serverless computing service that allows you to run code without provisioning or managing servers.

1 Answer

5 votes

Final answer:

AWS Lambda polls a Kinesis stream for new records and invokes your Lambda function to process them.

Step-by-step explanation:

The correct answer is A. AWS Lambda polls a Kinesis stream for new records and invokes your Lambda function to process them.

AWS Lambda is a serverless computing service provided by Amazon Web Services (AWS). It allows you to run code without the need to provision or manage servers. Kinesis is a real-time streaming service provided by AWS that allows you to collect, process, and analyze data in real-time.

With AWS Lambda and Kinesis integration, you can set up event-driven architectures where your Lambda function is triggered when new records are available in a Kinesis stream. Lambda then processes these records according to your code logic.

answered
User Dixhom
by
8.4k points

Related questions

1 answer
5 votes
184k views
1 answer
2 votes
9.6k views
1 answer
0 votes
2.0k views