在AWS MWAA气流上导入Python dask软件包不起作用
我正在尝试使用需求.txt在AWS MWAA(气流)上导入dask软件包,并将“ dask == 2022.6.0”行添加到文件中。 不仅导入不起作用,其他软件包不再导入。 就像MWAA不再识别需求.txt文件。 有人遇到这个吗?
I am trying to import dask package on AWS MWAA (airflow) using requirements.txt, by adding "dask==2022.6.0" line to the file.
Not only the import does not work, the other packages are not imported anymore.
It is like MWAA does not recognize requirements.txt file anymore.
Anyone encountered this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MWAA限于安装
dask == 2021.4.0
。其他版本将不会安装,并且会破坏包装的整体安装。包版本约束的完整列表在这里: https://github.com/aws/aws-mwaa-local-runner/blob/main/main/docker/config/constraints.txts.txtMWAA is constrained to installing
dask==2021.4.0
. Other versions will not install and will break package installation overall. The complete list of package version constraints is here: https://github.com/aws/aws-mwaa-local-runner/blob/main/docker/config/constraints.txt