gpt4 book ai didi

node.js - 带有 Nodejs native 模块的 AWS Lambda

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

最近我开始使用 AWS Lambda 函数,我的 Nodejs 应用程序运行良好,直到我尝试使用 web3.js包裹。添加行后

const Web3 = require('web3');

我收到 HTTP 端点的“内部服务器错误”错误,并在 CloudWatch 日志中看到以下内容

module initialization error: Error
at Object.Module._extensions..node (module.js:681:18)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/var/task/node_modules/scrypt/index.js:3:20)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)

在本地,我使用 web3.js 包没有任何问题。所以我开始更深入地了解这里出了什么问题。依赖项中有一些 native 模块。一些谷歌搜索最终得出这样的想法:这些包应该在 Amazon Linux 平台上编译,否则将无法工作。我开始创建 docker 镜像来实现这个目标。

Dockerfile

FROM amazonlinux:latest

# Install development tools
RUN yum update -y \
&& yum install gcc gcc44 gcc-c++ libgcc44 make cmake tar gzip git -y

# Install nvm and nodejs
RUN touch ~/.bashrc \
&& curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash \
&& source ~/.bashrc \
&& nvm install v8.10

CMD source ~/.bashrc && npm install

现在,在我的应用程序的根目录中,我运行以下命令来安装 npm 软件包并使用 docker 镜像和 Amazon Linux 编译 native 模块

docker run -it --rm -v $(pwd):/app -w /app docker/awslinuximage

我使用serverless部署框架。理论上,部署 Lambda 函数后应该可以工作,但实际上却不能。我在 Stackoverflow 上发现了类似的问题,但没有任何帮助。

而且,我认为这是云函数支持 Nodejs 原生模块的常见问题,应该针对特定操作系统进行编译。

任何解决此问题的想法和帮助表示赞赏。谢谢。

最佳答案

web3 使用的 scrypt 二进制文件必须在 docs 中指定的 Lambda 执行环境上编译。以使该功能正常工作。详细说明可参见this博客文章接近尾声。您可以使用下面的 Dockerfile 来自动化该过程,而无需创建实例。

FROM amazonlinux:2017.03.1.20170812

SHELL ["/bin/bash", "-c"]

RUN yum update -y && \
yum groupinstall -y "Development Tools"

# Install node using nvm
ENV NVM_VERSION v0.33.11
ENV NVM_DIR /root/.nvm
RUN mkdir -p ${NVM_DIR}
RUN touch ~/.bashrc && chmod +x ~/.bashrc

RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

ENV NODE_VERSION v8.10.0
RUN source ${NVM_DIR}/nvm.sh && \
nvm install ${NODE_VERSION} && \
nvm alias default ${NODE_VERSION} && \
nvm use default

ENV NODE_PATH ${NVM_DIR}/${NODE_VERSION}/lib/node_modules
ENV PATH ${NVM_DIR}/versions/node/${NODE_VERSION}/bin:${PATH}

# Install global dependencies
RUN npm install -g node-gyp && \
npm i -g serverless@1.39.1

# Set aws credentials in the image for serverless to use
# Save your aws (credentials/config) files at ./secrets.aws.(credentials/config)
COPY ./secrets.aws.credentials /root/.aws/credentials
COPY ./secrets.aws.config /root/.aws/config

ENV APP_PATH /usr/src/app
WORKDIR ${APP_PATH}

# Install app dependencies
COPY package*.json ./
RUN npm install

COPY . .

CMD [ "sls", "deploy" ]

构建并运行 Dockerfile

docker run --rm -it $(docker build -q .)

希望对你有帮助

关于node.js - 带有 Nodejs native 模块的 AWS Lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51271780/

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