-
-
Notifications
You must be signed in to change notification settings - Fork 52
Use AWS Lambda response streaming #623
Copy link
Copy link
Open
Labels
help wantedExtra attention is neededExtra attention is neededscope: serversThis has to do something with creating/updating serversThis has to do something with creating/updating serverstype: enhancementNew feature or requestNew feature or request
Description
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededscope: serversThis has to do something with creating/updating serversThis has to do something with creating/updating serverstype: enhancementNew feature or requestNew feature or request
Response streaming is a relatively recent AWS Lambda feature allowing Lambda functions written in Node.js to write their responses to a stream instead of returning them. Notably, the Lambda will continue executing even after the stream is closed. This would avoid the documented caveats with
defer/sendFollowUpin Lambdas.