Compress a file while uploading to s3

715 Views Asked by At

I'm writing "bytes" to a file on s3 remote, using boto3.client. Is there a way to write data while compressing it simultaneously? eg. using some option like codec="snappy" or something like that?

Code:

s3 = boto3.client("s3")
bytesio = io.BytesIO()
bytesio.write(bytes_data)
bytesio.seek(0)
key = OUTPUT_REMOTE_DIR + test.avro
s3.put_object(Body=bytesio.getvalue(), Bucket=OUTPUT_BUCKET, Key=key)
0

There are 0 best solutions below