I'm trying to run a Python script in which it uses multiple CPU cores by "pool.map of multiprocessing". When I run the script through celery it complains that "daemonic processes are not allowed to have children". I use the command below for Celery:
sudo celery -A script.celery worker -f LOGFILE -l INFO&
I don't know how to make celery call multiple CPU cores for the script.