SAM Lambda:[错误] Runtime.ImportModuleError:无法导入模块“索引”:没有名为“ pg8000”的模块

时间:2019-11-24 16:40:20

标签: python-3.x amazon-web-services aws-lambda aws-sam-cli sam

我已经部署了使用pg8000的lambda(python3.7)

import pg8000
..
def get_connection():
    """
        Method to establish the connection.
    """
    try:
        print ("Connecting to database")
        # Create a low-level client with the service name for rds
        client = boto3.client("rds")
        # Read the environment variables to get DB EndPoint
        DBEndPoint = os.environ.get("DBEndPoint")
        # Read the environment variables to get the Database name
        DatabaseName = os.environ.get("DatabaseName")
        # Read the environment variables to get the Database username which has access to database.
        DBUserName = os.environ.get("DBUserName")
        # Generates an auth token used to connect to a db with IAM credentials.
        password = client.generate_db_auth_token(
            DBHostname=DBEndPoint, Port=5432, DBUsername=DBUserName
        )
        # Establishes the connection with the server using the token generated as password
        conn = pg8000.connect(
            host=DBEndPoint,
            user=DBUserName,
            database=DatabaseName,
            password=password,
            ssl={"sslmode": "verify-full", "sslrootcert": "rds-ca-2015-root.pem"},
        )
        print("Succesful connection!")
        return conn
    except Exception as e:
        print ("While connecting failed due to :{0}".format(str(e)))
        return None
...

我有一个requirements.txt,其中包含:

pg8000==1.13.2
boto3==1.9.67

我正在执行sam构建,sam软件包和sam部署。 sam build不能处理像pg8000这样的依赖项的下载吗?

确切命令:

sam build
sam package --template-file ./template.yml --output-template-file output.yml --s3-bucket xxx-bucket
sam deploy --template-file ./output.yml --stack-name demo --capabilities CAPABILITY_IAM

触发lambda后出现错误:

[ERROR] Runtime.ImportModuleError: Unable to import module 'index': No module named 'pg8000'

1 个答案:

答案 0 :(得分:1)

根据文档

  

Sam构建   查找包含以下内容的清单文件(例如requirements.txt)   依赖性,并自动创建部署工件。

似乎您的模块根本没有部署。

我将逐步说明如何解决此问题:

  • sam build创建了一个文件夹.aws-sam/build,其中包含您的lambda函数,其中包括依赖项和一个非常重要的文件:您使用此 template.yml相对于CodeUri文件夹的.aws-sam/build(lambdas src代码的路径)。

  • sam package命令应将template.yml的位置作为参数传递,这意味着 sam build 目标文件夹url。运行sam package --template-file .\.aws-sam\build\template.yml --output-template-file .\.aws-sam\build\output.yml --s3-bucket your_bucket

  • 最后运行sam deploy --template-file .\.aws-sam\build\output.yml --stack-name demo --capabilities CAPABILITY_IAM

执行以下命令时:sam package --template-file ./template.yml --output-template-file output.yml --s3-bucket xxx-bucket ,模板文件./template.yml指向您的lambda函数,而.\.aws-sam\build\your_lambda.中没有依赖项

还有一件事:

如果您使用多个模块,则应考虑使用Layers

希望这会有所帮助