python celery - get() is delayed
问题 I am running the following simple example. Submit 20 jobs that take 2 seconds each using a single worker: celery -A celery_test worker --concurrency 10 -l INFO This should take 2 * 2 = 4 seconds. This is true for the worker to process the data. However, getting the data adds an additional delay of 6 seconds. Any ideas how to get rid of this delay? For scripts and outputs see below: celery_call.py: from celery_test import add import time results = [] for i in range(20): results.append(add