I have a django 1.3 site using SQLite. It works well.
I recently install django-celery along with django-kombu. I am using supervisord to launch the celery dameon with the command:
python manage.py celeryd -v 2 -B -s celery -E
Everything works, except launching celeryd brings the system to a crawl. When I use top, I see that I am creating a long running python process that consumes anywhere from 5% to 10% of the cpu on my shared server.
During testing, I have no celery tasks scheduled or running.