gpt4 book ai didi

node.js - 将 Lambda 函数更新到新的运行时。为什么 cURL 不再在 AWS Lambda 上的 Node 10 中工作?

转载 作者:太空宇宙 更新时间:2023-11-04 03:00:14 27 4
gpt4 key购买 nike

这是我的 Lambda 函数中引发错误的行:

// running in Node 8
const { execSync } = require('child_process');
execSync('curl https://github.com');

我正在尝试将 Lambda 函数从 Node 8 升级到 Node 10 或 Node 12,因为 Lambda 上的 Node 8 将于 2019 年 12 月底弃用(因此我无法更新它)。但是,当我深入研究 CloudWatch 日志时,我看到以下错误:

bin/sh:curl:找不到命令

当我更新 Lambda 函数以仅运行 which curl 时,我收到类似的错误:bin/sh:其中:找不到命令

根据文档 here ,我知道 Node 8+、Python 3.8+ 和 Java 11+ 正在使用新的 AWS Lambda 运行时 Amazon Linux 2。

感谢任何帮助。

最佳答案

以上 Node V10 和 V12 基于 Amazon Linux 2,无法运行curl。

enter image description here

cURL on AWS Lambda gives command not found error

你有两个选择

  • 在 AWS Lambda 中使用 native 二进制包
  • 使用nodejs request或http内置模块

如何在 AWS Lambda 部署包中使用 Amazon Linux AMI native 二进制包?

简短描述

A Lambda deployment package is a .zip file that contains your code and any dependencies. The Lambda execution environment is based on a specific Amazon Linux AMI and kernel version. Any native binaries that are used in a Lambda deployment package must be compiled in this environment, and only 64-bit binaries are supported.

To use the Amazon Linux AMI native binary packages, you can extract the 64-bit libraries and then include them in your Lambda deployment package. (Another option, that is not covered in this article, is to download the source code to the shared library and then recompile the package.)

lambda-runtimes

因此,正如评论中所建议的,另一种方法是使用 Node 包。

您可以尝试出于测试目的,例如

exports.handler = async (event) => {
const https = require('https');
var response=https.get('https://api.github.com');
return JSON.stringify(response.output)
}

关于node.js - 将 Lambda 函数更新到新的运行时。为什么 cURL 不再在 AWS Lambda 上的 Node 10 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59164723/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com