在AWS Lambda中发出POST https请求,无需等待响应

发布于 2025-01-09 07:27:15 字数 723 浏览 0 评论 0原文

我正在尝试使用 Node.js 在我的 AWS Lambda 函数中发出 https 请求(对其他 Lambda 的 API 网关调用),但不等待响应,因此当数据已发送到其他 Lambda(并开始运行)时,我的第一个 Lambda 停止运行。

我一直在尝试执行以下代码:

await new Promise((resolve, reject) => {
    const options = {
        hostname: 'example.com',
        path: '/example/action',
        method: 'POST'
    }
    const req = https.request(options);
    console.log('Request: ', req);
    req.on('error', error => {
        reject(error);
    });
    
    // Send data
    req.write(JSON.stringify(data));
    
    req.end(() => {
        // This is where (in theory) request has been made, and no response received
        resolve(req);
    });
});

由于从未调用解析,因此会导致超时问题。

有什么想法吗?

I am trying to make an https request (API gateway call to other Lambda) in my AWS Lambda function with Node.js, but without waiting for the response, so when the data has already been sent to the other Lambda (and starts running), my first Lambda stops running.

What I've been trying to do is the following code:

await new Promise((resolve, reject) => {
    const options = {
        hostname: 'example.com',
        path: '/example/action',
        method: 'POST'
    }
    const req = https.request(options);
    console.log('Request: ', req);
    req.on('error', error => {
        reject(error);
    });
    
    // Send data
    req.write(JSON.stringify(data));
    
    req.end(() => {
        // This is where (in theory) request has been made, and no response received
        resolve(req);
    });
});

It results in a timeout issue, due to resolve is never called.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文