Streaming Response from Lambda in Python

1

Hey, I just saw that we can stream responses from lambda using function urls. Is there a way to stream responses if I am using python. As the documentation doesn't show anything regarding python, it shows an example of js. Please help me with this. Thankyou.

asked 2 months ago472 views
1 Answer
1

Hello.

Looking at the documentation below, it appears that Node.js natively supports response streaming, but for other languages ​​you will need to use a custom runtime or Lambda Web Adapter.
https://docs.aws.amazon.com/lambda/latest/dg/configuration-response-streaming.html

Lambda supports response streaming on Node.js managed runtimes. For other languages, you can use a custom runtime with a custom Runtime API integration to stream responses or use the Lambda Web Adapter. You can stream responses through Lambda Function URLs, the AWS SDK, or using the Lambda InvokeWithResponseStream API.

In the case of Lambda Web Adapter, there is sample code on GitHub, so you can refer to it.
https://github.com/awslabs/aws-lambda-web-adapter/tree/main/examples/fastapi

profile picture
EXPERT
answered 2 months ago
profile pictureAWS
EXPERT
Uri
reviewed 2 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions