Git Product home page Git Product logo

Comments (6)

cdrx avatar cdrx commented on July 4, 2024 1

Try passing use_threads=True when creating a Worker instance:

w = Worker(..., use_threads=True)

from faktory_worker_python.

cdrx avatar cdrx commented on July 4, 2024 1

We are not using pickle specifically -- but it is used Python (internally) in the multiprocessing module.

Using dill would mean needing to modify multiprocessing to use it, and that is more baggage than I want to keep in this project :)

from faktory_worker_python.

antoine-gallix avatar antoine-gallix commented on July 4, 2024

After some investigation, I think the problem comes from the fact that the function that I register is wrapped by a decorator, and that the pickle library has problem pickling decorated functions. In my use case, I am registering data processing tasks that have some parts in common, and I've put all those in a decorator so that my coworkers only have to write the specific part of those tasks. It's part of my design that all the functions I register go through a decorator. That makes it quite problematic if such function cannot be pickled, and that faktory has to pickle registered functions. Any idea how I could work around this problem?

from faktory_worker_python.

antoine-gallix avatar antoine-gallix commented on July 4, 2024

Great, that just made it work; thanks for the answer. It's was already quite unclear for me why the pickle module had a problem with decorated functions, but why using threads solves the problem is even more of a mystery!

from faktory_worker_python.

antoine-gallix avatar antoine-gallix commented on July 4, 2024

I'm reading that using the dill library instead of pickle might solve the problem.

from faktory_worker_python.

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.