ashb commented on a change in pull request #3830: [AIRFLOW-2156] Parallelize
Celery Executor
URL: https://github.com/apache/incubator-airflow/pull/3830#discussion_r215550609
##########
File path: airflow/executors/celery_executor.py
##########
@@ -72,10 +112,24 @@ class CeleryExecutor(BaseExecutor):
vast amounts of messages, while providing operations with the tools
required to maintain such a system.
"""
- def start(self):
+
+ def __init__(self):
+ super(CeleryExecutor, self).__init__()
+
+ # Parallelize Celery requests here since Celery does not support
parallelization.
Review comment:
I understand what this comment means, but seeing "Celery does not support
parallelization" is... odd.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services