GoogleCloudStorageDownloadOperator“任务已退出,返回代码为

编程入门 行业动态 更新时间:2024-10-08 02:25:57
本文介绍了GoogleCloudStorageDownloadOperator“任务已退出,返回代码为-6”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我是新手,我正在尝试使用GoogleCloudStorageDownloadOperator做一些简单的事情:

I am new to airflow and I am trying something simple with GoogleCloudStorageDownloadOperator:

default_args = { 'start_date': airflow.utils.dates.days_ago(0), 'schedule_interval': None, 'retries': 1, 'retry_delay': timedelta(minutes=5), 'params': { 'work_dir': '/tmp' } } dag = DAG( 'foo', default_args=default_args, description='This is foobar', schedule_interval=timedelta(weeks=1), dagrun_timeout=timedelta(minutes=60)) mock_download = GoogleCloudStorageDownloadOperator( task_id='download-foo-from-gcp', bucket='foo-data', object='{% if (task_instance.pid % 2 == 0) %}foo{% else %}bar{% endif %}/data.tar.gz', filename='{{ params.work_dir }}/data.tar.gz', google_cloud_storage_conn_id='google_cloud_default', dag=dag )

虽然我可以跑步例如,在PyCharm中执行此任务(使用 airflow test ),从Web界面触发(预定)后,它始终会失败。至少可以说,日志中的错误消息完全没有用:

While I can run this task in PyCharm for example (using airflow test), it fails all the time when triggered from the web interface (scheduled). The error message in the log is completely useless, to say the least:

... [2020-01-09 17:04:18,871] {gcs_download_operator.py:86} INFO - Executing download: crunchbase-mock-data, foo/data.tar.gz, /tmp/data.tar.gz [2020-01-09 17:04:28,751] {logging_mixin.py:112} INFO - [2020-01-09 17:04:28,751] {local_task_job.py:103} INFO - Task exited with return code -6

有人能对此有所了解吗? -6应该是什么意思?有没有办法查看那里发生的事情的更多细节?

Can anyone shed any light on this? What the heck is -6 supposed to mean? Is there a way to see a little more details about what happened there?

推荐答案

我在运行tweepy的气流任务退出,返回码为-6 。

Mac OS High Sierra(或更高版本)?如果是这样,请参考 stackoverflow/a/52230415/4434664 。它解决了我的问题。

Are you on Mac OS High Sierra (or above)? If so, refer stackoverflow/a/52230415/4434664. It solved my issue.

基本上,气流测试 / PyCharm 仅在进程内运行任务,但是调度程序将启动一个工作进程,该工作进程将调用 fork(),显然,High Sierra引入了一些新的安全更改,这些更改已被打破 fork()在python中的用法。

Basically, airflow test/PyCharm merely runs the task in-process, but the scheduler would start a worker process which would call fork(), and apparently, High Sierra introduced some new security changes that's breaking fork() usages in python.

这也引起了ansible问题。请参考 github/ansible/ansible/issues/32499#issuecomment -341578864

This also caused problems in ansible. Refer github/ansible/ansible/issues/32499#issuecomment-341578864

更多推荐

GoogleCloudStorageDownloadOperator“任务已退出,返回代码为

本文发布于:2023-11-12 20:46:14,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1582492.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:代码   GoogleCloudStorageDownloadOperator

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!