S3にtarファイルがアップロードされたらLambdaで解凍するソースコードを書いております。
下記ページを参考に作成しましたが解凍されず、CloudWatchのログを確認したところ'NoneType' object has no attribute 'read'となっていました。
https://qiita.com/kitamuratomokazu/items/2c9fe087dfdca4482788
その後調べていたところ下記のページで同じくtarを解凍を試みており、11/20追記で解決したようです。
同じ内容でソースコードを書きましたが変わらず'NoneType' object has no attribute 'read'となってしまいます。
https://teratail.com/questions/224128
Python
1##参考ソースコード 2 3import boto3 4import zipfile 5import traceback 6import os 7 8print('Loading function') 9 10s3 = boto3.resource('s3') 11s3_client = boto3.client('s3') 12 13def lambda_handler(event, context): 14 15 # Get the object from the event and show its content type 16 bucket = event['Records'][0]['s3']['bucket']['name'] 17 key = event['Records'][0]['s3']['object']['key'] 18 19 try: 20 s3_client.download_file(bucket, key, '/tmp/file.zip') 21 print('download') 22 zfile = zipfile.ZipFile('/tmp/file.zip') 23 namelist = zfile.namelist() 24 print(namelist) 25 26 for filename in namelist: 27 if not os.path.basename('/tmp/'+filename): 28 os.mkdir('/tmp/'+filename) 29 else: 30 f = open('/tmp/' + str(filename), 'wb') 31 data = zfile.read(filename) 32 f.write(data) 33 f.close() 34 for filename in namelist: 35 if '.jpg' in filename: 36 s3_client.upload_file('/tmp/'+filename, bucket, key + filename) 37 38 39 except Exception as e: 40 print(e) 41 print(traceback.format_exc()) 42
Python
1##作成したソースコード 2 3import boto3 4import tarfile 5import traceback 6import os 7 8print('Loading function') 9 10s3 = boto3.resource('s3') 11s3_client = boto3.client('s3') 12 13def lambda_handler(event, context): 14 15 # Get the object from the event and show its content type 16 bucket = event['Records'][0]['s3']['bucket']['name'] 17 key = event['Records'][0]['s3']['object']['key'] 18 19 try: 20 s3_client.download_file(bucket, key, '/tmp/file.tar') 21 print('download') 22 zfile = tarfile.TarFile('/tmp/file.tar') 23 namelist = zfile.getnames() 24 print(namelist) 25 for filename in namelist: 26 if not os.path.basename('/tmp/'+filename): 27 os.mkdir('/tmp/'+filename) 28 else: 29 f = open('/tmp/' + str(filename), 'wb') 30 data = zfile.extractfile(filename).read() 31 f.write(data) 32 f.close() 33 for filename in namelist: 34 s3_client.upload_file('/tmp/'+filename, bucket, filename) 35 36 37 except Exception as e: 38 print(e) 39 print(traceback.format_exc())
CloudWatchのログ
Loading function
START RequestId: 0d6618f0-3358-4b89-b53a-ef2ck12cdef0 Version: $LATEST
download
['sample', 'sample/test.xml']
'NoneType' object has no attribute 'read'
Traceback (most recent call last):
File "/var/task/lambda_function.py", line 28, in lambda_handler
data = zfile.extractfile(filename).read()
AttributeError: 'NoneType' object has no attribute 'read'
END RequestId: 0d6618f0-3358-4b89-b53a-ef2ck12cdef0
REPORT RequestId: 0d6618f0-3358-4b89-b53a-ef2ck12cdef0 Duration: 420.92 ms Billed Duration: 421 ms Memory Size: 128 MB Max Memory Used: 71 MB Init Duration: 384.54 ms
※sample.tarという名の圧縮ファイルをアップロードしました。中にはtest.xmlが格納されています。
ご助言いただけますと幸いです。
よろしくお願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。