admin管理员组文章数量:1356826
I have an AWS Glue 5.0 job where I am specifying --additional-python-modules s3://my-dev/other-dependencies /MyPackage-0.1.1-py3-none-any.whl
in my job options.
My glue job itself is just a print("hello")
job, because when I save and run this glue job, it runs for 10 minutes 7 seconds in AWS< then fails with this error
LAUNCH ERROR | Glue bootstrap failed. Please refer logs for details. caused by LAUNCH ERROR | Installation of Python modules timed out after 10 minutesPlease refer logs for details.
my packages setup.py does use thee libraires:
from setuptools import setup, find_packages
setup(
name="...",
version="0.1.1",
packages=find_packages(),
install_requires=[
'dask[array]',
'zarr',
'scipy',
'scikit-image',
'bioio',
'bioio-tifffile',
'tifffile',
'opencv-python',
'torch',
'pyyaml',
'xmltodict'
],
entry_points={...},
)
Is there anyway I can tell AWS with a flag in an AWS Glue 5.0 job that I need more then a 10 minute install timeout?
本文标签:
版权声明:本文标题:amazon web services - AWS Glue 5.0 "Installation of Python modules timed out after 10 minutes" - Stack Overflo 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744071942a2586049.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论