実現したいこと
LambdaからpostgreSQLに接続したい。
発生している問題・分からないこと
テストを実行するとpsycopg2._psycopgがないと怒られるが、色々な方法を試しても解決しない。有識者のご意見をいただきたいです。
エラーメッセージ
error
1{ 2 "errorMessage": "Unable to import module 'lambda_function': No module named 'psycopg2._psycopg'", 3 "errorType": "Runtime.ImportModuleError", 4 "requestId": "3ed6dd24-2fbd-4e3e-bd25-305f00a10172", 5 "stackTrace": [] 6}
該当のソースコード
Python
1import json 2import psycopg2 3import os 4 5def lambda_handler(event, context): 6 print("Received event:", event) 7 # 環境変数からデータベース接続情報を取得 8 database_host = os.environ.get('DATABASE_HOST') 9 database_name = os.environ.get('DATABASE_NAME') 10 database_user = os.environ.get('DATABASE_USER') 11 database_password = os.environ.get('DATABASE_PASSWORD') 12 13 # マーカー名をリクエストから取得 14 marker_name = event['queryStringParameters']['markerName'] 15 16 # データベース接続 17 try: 18 conn = psycopg2.connect( 19 dbname=database_name, 20 user=database_user, 21 password=database_password, 22 host=database_host 23 ) 24 cur = conn.cursor() 25 # cur.execute("SELECT video_url FROM videos WHERE marker_name = %s", (marker_name,)) 26 cur.execute("SELECT * FROM videos") 27 28 row = cur.fetchone() 29 cur.close() 30 conn.close() 31 32 if row: 33 return { 34 'statusCode': 200, 35 'body': json.dumps({"videoUrl": row[0]}), 36 'headers': { 37 'Content-Type': 'application/json' 38 } 39 } 40 else: 41 return { 42 'statusCode': 404, 43 'body': json.dumps({"error": "Video not found"}), 44 'headers': { 45 'Content-Type': 'application/json' 46 } 47 } 48 except Exception as e: 49 print("Error:", str(e)) 50 return { 51 'statusCode': 500, 52 'body': json.dumps({"error": str(e)}), 53 'headers': { 54 'Content-Type': 'application/json' 55 } 56 } 57
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
方法①
aws-psycopg2のインストールし、Zipでアップロードしテストを実行→エラー
方法②
psycopg2-binaryをインストール→エラー
方法③
Dockerから以下のようにしてバイナリをインストール→エラー
RUN python3 -m pip install psycopg2-binary --no-cache-dir
上記3つの方法を試しましたが、同じエラーが出ています。
比較的新しい記事ですので、方法が古いという可能性は低いと思っています。
もしお時間あるのであれば、どれでも構いませんので試していただければ幸いです。
この方法でやってるよーというのがありましたら教えていただけないでしょうか。
補足
ランタイムのPythonのバージョンは合わせております。
再実施するも以下の通りにエラーが発生
※s3からのアップではなく、Zipからのアップにて実行しています。
Test Event Name (unsaved) test event Response { "errorMessage": "Unable to import module 'lambda_function': No module named 'psycopg2'", "errorType": "Runtime.ImportModuleError", "requestId": "38f35630-ad38-4e74-89de-bd7eced628e0", "stackTrace": [] } Function Logs START RequestId: 38f35630-ad38-4e74-89de-bd7eced628e0 Version: $LATEST LAMBDA_WARNING: Unhandled exception. The most likely cause is an issue in the function code. However, in rare cases, a Lambda runtime update can cause unexpected function behavior. For functions using managed runtimes, runtime updates can be triggered by a function change, or can be applied automatically. To determine if the runtime has been updated, check the runtime version in the INIT_START log entry. If this error correlates with a change in the runtime version, you may be able to mitigate this error by temporarily rolling back to the previous runtime version. For more information, see https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html [ERROR] Runtime.ImportModuleError: Unable to import module 'lambda_function': No module named 'psycopg2' Traceback (most recent call last):END RequestId: 38f35630-ad38-4e74-89de-bd7eced628e0 REPORT RequestId: 38f35630-ad38-4e74-89de-bd7eced628e0 Duration: 1.77 ms Billed Duration: 2 ms Memory Size: 128 MB Max Memory Used: 31 MB
lambda_function.pyは1つ上の階層にあります。
ローカルにpsycopg2をインストールし、レイヤー化
pip install psycopg2 Requirement already satisfied: psycopg2 in /Users/hiro/.pyenv/versions/3.10.6/lib/python3.10/site-packages (2.9.9)
すでに入っていたので、対象フォルダまで移動し、フォルダ内をzip化
新規でラムダ関数を作成し、lambda_function.pyを作成
Zipからレイヤーを作成し、ラムダ関数と紐づけてテスト実行→エラー
Test Event Name test Response { "errorMessage": "Unable to import module 'lambda_function': No module named 'psycopg2'", "errorType": "Runtime.ImportModuleError", "requestId": "33e6915a-072d-4525-95d6-56a280be654c", "stackTrace": [] } Function Logs START RequestId: 33e6915a-072d-4525-95d6-56a280be654c Version: $LATEST LAMBDA_WARNING: Unhandled exception. The most likely cause is an issue in the function code. However, in rare cases, a Lambda runtime update can cause unexpected function behavior. For functions using managed runtimes, runtime updates can be triggered by a function change, or can be applied automatically. To determine if the runtime has been updated, check the runtime version in the INIT_START log entry. If this error correlates with a change in the runtime version, you may be able to mitigate this error by temporarily rolling back to the previous runtime version. For more information, see https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html [ERROR] Runtime.ImportModuleError: Unable to import module 'lambda_function': No module named 'psycopg2' Traceback (most recent call last):END RequestId: 33e6915a-072d-4525-95d6-56a280be654c REPORT RequestId: 33e6915a-072d-4525-95d6-56a280be654c Duration: 9.15 ms Billed Duration: 10 ms Memory Size: 128 MB Max Memory Used: 30 MB Init Duration: 73.11 ms Request ID 33e6915a-072d-4525-95d6-56a280be654c
回答1件
あなたの回答
tips
プレビュー