Coder Social home page Coder Social logo

Comments (8)

Suor avatar Suor commented on September 17, 2024

Problem here is that you can not pickle an instance of dynamically created class, unless it binded into module namespace as statically created one. Here is a monkey patch workaround:

from django.db.models.fields import related
def patched_create_many_to_many_intermediary_model(field, klass):
    model = original_create_many_to_many_intermediary_model(field, klass)
    setattr(sys.modules[model.__module__], model.__name__, model)
    return model
original_create_many_to_many_intermediary_model = related.create_many_to_many_intermediary_model
related.create_many_to_many_intermediary_model = patched_create_many_to_many_intermediary_model

I'll probably should incorporate it into cacheops install.

from django-cacheops.

Suor avatar Suor commented on September 17, 2024

The thing is you should apply this patch very early, before any intermediary model classes are created.
I usually add

from django.core.management import setup_environ
setup_environ(settings)
import monkey

just before

execute_manager(settings)

in manage.py. And then write all my monkey patches into monkey.py in the same directory with manage.py

from django-cacheops.

kevinpostal avatar kevinpostal commented on September 17, 2024

I added your monkey patch and I am still receiving the error. Perhaps its because I am using http://gunicorn.org/ ?

from django-cacheops.

Suor avatar Suor commented on September 17, 2024

Try opening django shell ./manage.py shell and pickling an instance of any intermidiate model there:

>>> from django.contrib.auth.models import User
>>> g = User._meta.get_field('groups').rel.through.objects.all()[0]
>>> from pickle import dumps
>>> dumps(g)
"cmonkey\nmodel_unpickle\np0\n(cdjango.contrib.auth.models\nUser_groups\np1 ..."

If that does not work check if you are loading django.contrib.auth.models before patch - patch should go berfore.

from django-cacheops.

Suor avatar Suor commented on September 17, 2024

I didn't use gunicorn, however if it uses separate startup script (not manage.py) you should add the monkey patch there too.

from django-cacheops.

Suor avatar Suor commented on September 17, 2024

This should be fixed by c413f8b.
Can you confirm that?

from django-cacheops.

Suor avatar Suor commented on September 17, 2024

Some guys confirmed in other threads.

from django-cacheops.

michaelmior avatar michaelmior commented on September 17, 2024

I was wondering if you could help explain more about the nature of the error. I seem to be experiencing a similar issue (same exception value) when pickling a User model with related fields after trying to upgrade to Django 1.5. I'm not using cacheops, but the issue seems similar so any insight you can give would be helpful. Thanks :)

from django-cacheops.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.