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 个月前604 查看次数
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 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则