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.

已提問 2 個月前檢視次數 602 次
1 個回答
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
專家
已回答 2 個月前
profile pictureAWS
專家
Uri
已審閱 2 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南