带有SQS Boto客户端错误的Airflow Celery执行器

时间:2019-11-28 05:47:41

标签: python celery boto3 airflow airflow-scheduler

我正在尝试使用所有配置来启动调度程序。我遇到以下错误

[2019-11-28 12:39:32,163] {credentials.py:1032} INFO - Found credentials in shared credentials file: ~/.aws/credentials
[2019-11-28 12:39:32,191] {connectionpool.py:735} INFO - Starting new HTTPS connection (1): ap-southeast-1.queue.amazonaws.com
[2019-11-28 12:39:32,258] {connectionpool.py:238} INFO - Resetting dropped connection: ap-southeast-1.queue.amazonaws.com
[2019-11-28 12:39:32,804] {connectionpool.py:238} INFO - Resetting dropped connection: ap-southeast-1.queue.amazonaws.com
[2019-11-28 12:39:32,844] {connectionpool.py:238} INFO - Resetting dropped connection: ap-southeast-1.queue.amazonaws.com
[2019-11-28 12:39:32,883] {connectionpool.py:238} INFO - Resetting dropped connection: ap-southeast-1.queue.amazonaws.com
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3.5/threading.py", line 862, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/lib/python3.5/multiprocessing/pool.py", line 429, in _handle_results
    task = get()
  File "/usr/lib/python3.5/multiprocessing/connection.py", line 251, in recv
    return ForkingPickler.loads(buf.getbuffer())
TypeError: __init__() missing 1 required positional argument: 'operation_name'

此错误与boto库客户端有关吗? (我正在使用最新的Boto客户端1.10.28和气流1.10.6

TIA!

0 个答案:

没有答案