kombu.exceptions.EncodeError:用户不是JSON可序列化的

时间:2018-03-19 23:07:06

标签: python json django celery celery-task

我有芹菜4.1.0的django 1.11.5应用程序,我一直都很喜欢:

kombu.exceptions.EncodeError: <User: testuser> is not JSON serializable

我的settings.py:

CELERY_BROKER_URL = 'amqp://localhost'
CELERY_RESULT_BACKEND = 'amqp://localhost'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TASK_SERIALIZER = 'json'
CELERY_TIMEZONE = 'Asia/Makassar'
CELERY_BEAT_SCHEDULE = {}

tasks.py

from __future__ import absolute_import, unicode_literals
from celery import task
from django.contrib.auth.models import User


@task(serializer='json')
def task_number_one():
    user = User.objects.create(username="testuser", email="test@test.com", password="pass")
    return user

我在视图中调用任务:

def form_valid(self, form):
    form.instance.user = self.request.user
    task_number_one.delay()
    return super().form_valid(form)

2 个答案:

答案 0 :(得分:2)

这是因为您正在使用JSON序列化程序进行任务序列化(如设置CELERY_TASK_SERIALIZER = 'json'所示),但您正在尝试返回模型实例(无法将其序列化为JSON)。

您有两种选择:

1)不要传递实例,传递实例的主键,然后在任务中查找对象。

2)改为使用pickle任务序列化程序。这将允许您将对象作为参数传递给您的任务并返回它们,但它附带了它自己的security concerns

答案 1 :(得分:2)

错误是因为Celery在您返回JSON实例时期望从您的任务函数获取User数据。

如何解决这个问题?
您没有在任何地方使用该返回数据,因此您不必返回它。也就是说,您可以从任务功能中删除return user 或者,
从任务函数返回Json数据也将解决此问题。

解决方案1 ​​

@task(serializer='json')
def task_number_one():
    user = User.objects.create(username="testuser", email="test@test.com", password="pass")


解决方案2

@task(serializer='json')

def task_number_one():
    user = User.objects.create(username="testuser", email="test@test.com", password="pass")
    # return some json data instead of `USER` instance
    return {"status": True}  # Change is here