Code Monkey home page Code Monkey logo

Comments (3)

irmen avatar irmen commented on September 1, 2024 1

It's just the way the underlying socket connections work: they're fully synchronous (blocking) request/replies. The thread using a socket to do a request sits waiting for the response to come back over the same socket. Other threads interfering with the same socket will destroy the integrity of the communication (hence the sequence number check).

Pyro (the python library) does internal locking in its proxies for you. Pyrolite doesn't so you should lock yourself. Or make a pool of proxies where you allocate one per thread.

from pyrolite.

irmen avatar irmen commented on September 1, 2024

Please show some code that explains how you "call normal method asynchronously".
But yeah the exception is thrown when a Pyro(lite) proxy object somehow gets a reply from the server that didn't belong the the request that was sent in that particular thread. You should not use a single Pyro proxy in multiple different threads.

from pyrolite.

farshidtz avatar farshidtz commented on September 1, 2024

I'm calling pyro methods from handlers of an API. In the example below predict can be called multiple times asynchronously. I can use a mutex or synchronized method to force sequential calls but that would cause long queues.

public class ExternPythonPyro {
    PyroProxy pyro;

    public ExternPythonPyro() throws Exception {
        NameServerProxy ns = NameServerProxy.locateNS(null);
        pyro = new PyroProxy(ns.lookup("python-learning-agent"));
        ns.close();
    }

    public void learn(Object input) throws Exception {
        pyro.call_oneway("learn", input);
    }

    public Integer predict(Object input) throws Exception {
        return (Integer) pyro.call("predict", input);
    }

    public void destroy() throws Exception {
        pyro.close();
    }

}

You should not use a single Pyro proxy in multiple different threads.

Is this the case only for Pyrolite or it's a limitation of Pyro in general?

Thanks a lot

from pyrolite.

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.