質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.37%
Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

AWS IAM

AWS Identity and Access Management (IAM)は、AWS のサービスやリソースにアクセスできるユーザーやグループを指定し、きめ細かいアクセス許可を一元管理することができるサービスです。

Q&A

0回答

91閲覧

s3 オブジェクト読み取りエラー Unexpected error while reading file: expected string or bytes-like object

kazu0403

総合スコア10

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

AWS IAM

AWS Identity and Access Management (IAM)は、AWS のサービスやリソースにアクセスできるユーザーやグループを指定し、きめ細かいアクセス許可を一元管理することができるサービスです。

0グッド

0クリップ

投稿2024/10/28 22:27

実現したいこと

  • aws Lambdaからs3にアップロードしているファイルの読み取りをしたい
  • Unexpected error while reading file: expected string or bytes-like objectというものの解決方法がわからなくて解決したい

発生している問題・分からないこと

aws Lambdaからs3にアップロードしているファイルの読み取りをする際に読み取りエラーが発生する

エラーメッセージ

error

1Error occurred: Unexpected error while reading file: expected string or bytes-like object 2 3- ロガーを入れてみると下の箇所で止まっていた 4```python 5# boto3とbotocoreのロガーを設定 6boto3.set_stream_logger('boto3', logging.DEBUG) 7boto3.set_stream_logger('botocore', logging.DEBUG)
. . . 1730068540959,[DEBUG] 2024-10-27T22:35:40.959Z cee1f473-afd0-4a84-92dc-7c8af65db046 Loading JSON file: /usr/local/lib/python3.8/dist-packages/botocore/data/_retry.json 1730068540959,2024-10-27 22:35:40,959 botocore.client [DEBUG] Registering retry handlers for service: s3 1730068540959,[DEBUG] 2024-10-27T22:35:40.959Z cee1f473-afd0-4a84-92dc-7c8af65db046 Registering retry handlers for service: s3 1730068540959,2024-10-27 22:35:40,959 botocore.utils [DEBUG] Registering S3 region redirector handler 1730068540960,[DEBUG] 2024-10-27T22:35:40.959Z cee1f473-afd0-4a84-92dc-7c8af65db046 Registering S3 region redirector handler 1730068540960,2024-10-27 22:35:40,960 botocore.utils [DEBUG] Registering S3Express Identity Resolver 1730068540960,[DEBUG] 2024-10-27T22:35:40.960Z cee1f473-afd0-4a84-92dc-7c8af65db046 Registering S3Express Identity Resolver 1730068540961,2024-10-27 22:35:40,961 botocore.hooks [DEBUG] Event before-parameter-build.s3.GetObject: calling handler <function sse_md5 at 0x7fa1f386fc10> 1730068540961,[DEBUG] 2024-10-27T22:35:40.961Z cee1f473-afd0-4a84-92dc-7c8af65db046 Event before-parameter-build.s3.GetObject: calling handler <function sse_md5 at 0x7fa1f386fc10> 1730068540961,2024-10-27 22:35:40,961 botocore.hooks [DEBUG] Event before-parameter-build.s3.GetObject: calling handler <function validate_bucket_name at 0x7fa1f386fb80> 1730068540961,[DEBUG] 2024-10-27T22:35:40.961Z cee1f473-afd0-4a84-92dc-7c8af65db046 Event before-parameter-build.s3.GetObject: calling handler <function validate_bucket_name at 0x7fa1f386fb80> ★↑ここで止まっている
### 該当のソースコード ```python ## ソースコード - ローカル環境で、下のモジュールのテストを行いましたがうまく動いたんですよね... ```python:storage_service.py import boto3 import json import logging from botocore.exceptions import ClientError # ロギングの設定 logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger(__name__) # boto3とbotocoreのロガーを設定 boto3.set_stream_logger('boto3', logging.DEBUG) boto3.set_stream_logger('botocore', logging.DEBUG) class StorageService: def __init__(self, aws_access_key_id, aws_secret_access_key): # Amazon S3クライアントの初期化 # 認証情報を明示的に指定 self.s3_client = boto3.client( 's3', aws_access_key_id=aws_access_key_id, aws_secret_access_key=aws_secret_access_key) """ Amazon S3からJSONファイルを読み取る :param bucket_name: S3バケット名 :param path: ファイルが格納されているディレクトリのパス :param file_name: 読み込むファイル名 :return: 読み込んだJSONコンテンツ """ def read_json_from_file(self, bucket_name, path, file_name): try: full_path = f"{path}/{file_name}" response = self.s3_client.get_object(Bucket=bucket_name, Key=full_path) if 'Body' not in response: raise KeyError("'Body' not found in response") body = response['Body'] logger.debug(f"Body type: {type(body)}") if not hasattr(body, 'read'): raise AttributeError(f"'Body' object has no attribute 'read'. Type: {type(body)}") contents = body.read() logger.debug(f"Contents type: {type(contents)}") if not isinstance(contents, (str, bytes)): raise TypeError(f"Unexpected content type: {type(contents)}") if isinstance(contents, bytes): contents = contents.decode('utf-8') # JSONとしてパース return json.loads(contents) except ClientError as e: raise RuntimeError(f'Error reading JSON file: {e}') except json.JSONDecodeError as e: raise RuntimeError(f'Error decoding JSON file: {e}') except Exception as e: raise RuntimeError(f'Unexpected error while reading file: {e}')

yml

1## ポリシー系 2- Lambdaの実行ロールについているポリシー 3```yml 4{ 5 "Version": "2012-10-17", 6 "Statement": [ 7 { 8 "Sid": "VisualEditor0", 9 "Effect": "Allow", 10 "Action": "logs:CreateLogGroup", 11 "Resource": "arn:aws:logs:ap-northeast-1:{user_id}:*" 12 }, 13 { 14 "Sid": "VisualEditor1", 15 "Effect": "Allow", 16 "Action": [ 17 "logs:CreateLogStream", 18 "logs:PutLogEvents", 19 "s3:GetObject", 20 "s3-object-lambda:GetObject" 21 ], 22 "Resource": [ 23 "arn:aws:logs:ap-northeast-1:{user_id}:log-group:/aws/lambda/lambda-api:*", 24 "arn:aws:s3:::{backet_name}/*" 25 ] 26 } 27 ] 28}
  • S3バケットポリシー

yml

1{ 2 "Version": "2012-10-17", 3 "Statement": [ 4 { 5 "Sid": "AllowLambdaAccess", 6 "Effect": "Allow", 7 "Principal": { 8 "AWS": "arn:aws:iam::{user_id}:role/service-role/lambda-api-role-dcozjiys" 9 }, 10 "Action": "s3:GetObject", 11 "Resource": "arn:aws:s3:::{backet_name}/*" 12 } 13 ] 14}
### 試したこと・調べたこと - [x] teratailやGoogle等で検索した - [x] ソースコードを自分なりに変更した - [ ] 知人に聞いた - [x] その他 ##### 上記の詳細・結果 - ポリシーの設定と - ライブラリにでバックログを出力するようにしてみる ### 補足 特になし

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.37%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問