Yes, it seems that celery does not support using ZeroMQ for both transport (sending the task over the pipe) and the results from said task. A different result backend would need to be used (RabbitMQ, Redis, Mongodb). There is a list of supported backends here: http://celery.readthedocs.org/en/latest/whatsnew-3.1.html#new-rpc-result-backend
Sorry I mangled that second part pretty good. What I meant was, you don't think that retrieving or querying the status from a remote backend for the status of a distributed task would be performant? I am referring to when you said: I’m thinking promises are good for in-process asynchronism and less so for > the distributed kind, due to the overhead of making a remote request. On Fri, May 30, 2014 at 12:47 PM, Marcus Ottosson <[email protected]> wrote: > I just noticed the initial link to the method in question was wrong, > here's is the actual line with if/else statements: > > https://github.com/abstractfactory/labs/blob/ef788903194423c851337f49c8d202f6cb745e1f/python/messaging/chat/peer.py#L76 > > > On 30 May 2014 17:42, Marcus Ottosson <[email protected]> wrote: > >> It looks like you can use ZeroMQ with celery as the transport and >> something else to handle the results (Redis or MongoDB?) >> >> I think I’ll have to wrap my head around how Celery works before I can >> digest this one (a separate MQ to handle return values?) >> >> you don’t think they would be performant do the remote request for the >> status of the task? >> >> Sorry, could you rephrase that? >> >> > > > > -- > *Marcus Ottosson* > [email protected] > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBAh2Fp5AxJi_kMKNy%2BZN%2BBNxdwZhEcaF%3Daz%3D4nPxTNMQ%40mail.gmail.com > <https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOBAh2Fp5AxJi_kMKNy%2BZN%2BBNxdwZhEcaF%3Daz%3D4nPxTNMQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- -tony -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAJhmvsQ_x%2ByiCUYw_Ttx_NTN6gCKtxLLxhkGx-c-hsNbPjGiGA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
