Lambda - Streaming - Increase quota

0

Hi,

I would like to use RESPONSE_STREAM option on lambda. According to the documentation, we need to increase the payload size: 20 MB instead of 6MB. I tried to increase these values in quotas, but it seems impossible. Not adjustable. How to make it changeable ?

Asynchronous Payload Synchronous Payload

Thanks for help

質問済み 1年前346ビュー
3回答
2

Using Lambda response streaming you can return by default payloads up to 20 MB, and if you need more, you can increase it. There is no need to increase if you do not need more than 20 MB.

The quotas that show in the Service Quota page are for synchronous and asynchronous invocations. Not for stream invocations. I assume that you should create a support ticket to increase the streaming payload size limit.

profile pictureAWS
エキスパート
Uri
回答済み 1年前
0
承認された回答

Ohw ! Seems an issue with Postman. It works perfectly in CLI with Curl. Thanks Uri !

回答済み 1年前
0

Because when I try to implement a node function with RESPONSE_STREAM, it behaves like it is buffering, he here the code : (I followed this tutorial, and I run in Node 16)

export const handler = awslambda.streamifyResponse(async (event, responseStream, context) => {
    responseStream.setContentType("text/plain");
    
    const sentences = [
        "1...",
        "2...",
        "3...",
        "4...",
        "5...",
        "6...",
        "7...",
        "8...",
        "9...",
    ]
    
    const timer = ms => new Promise(res => setTimeout(res, ms));
    
    for (let i = 0; i < sentences.length; i++) {
        responseStream.write(`${sentences[i]}\n`);
        await timer(1000);
    }
    responseStream.end();
});
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ