在AWS Glue中导入Python模块

时间:2019-06-21 21:46:43

标签: python amazon-web-services amazon-s3 gzip aws-glue

我正在为该项目的AWS Glue作业发送一个zip文件,当它运行时,出现以下错误:

Traceback (most recent call last):
File "redacted.py", line 81, in <module>
'id': id
File "redacted.py", line 53, in update_status
File "redacted.py", line 38, in gzip_compress
AttributeError: 'module' object has no attribute 'compress'
End of LogType:stdout

我已删除了隐私保护的路径。有问题的函数是gzip.compress上的line 38,这是默认的python库(如果我输入错了,请纠正我)。其他人是否曾使用AWS Glue遇到过这种情况,如果是这样,该如何解决?

1 个答案:

答案 0 :(得分:0)

可以使用zlib库通过gzip压缩数据来解决此问题