I saw that they soon will have an addon for AMQP.
I'm about to learn how to use AMQP with RabbitMQ. I suppose that that addon doesn't deal with RabbitMQ.
Isn't AMQP just a protocol. Are they using any AMQP broker like RabbitMQ or ActiveMQ?
...
At first I thought QPID documentation is great, but now I find it confusing. I'm using the C++ API of QPID-0.6 with the qpid::messaging namespace (I saw I have access to low-level AMQP with qpid::client, but it is not what I wish now).
With AMQP, I would declare an exchange with a type, declare a queue and a binding before sending a mes...
I wanted to get your opinions on the merits of different AMQP implementations to be used with celery. I am looking particularly at message prioritization and job queue sizes.
What are your thoughts?
...
By message-oriented middleware I am referring to technologies such as Advanced Message Queuing Protocol.
Obviously AMQP is a different beast than MPI, but I would think distributed-memory computations that operate in a master-slave manner could be trivially implemented using AMQP, letting AMQP handle equitable work distribution to sla...
I'm trying to learn more information on how apache Qpid works and I do so by following examples from official svn :
http://svn.apache.org/repos/asf
I was looking at :
http://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/example/src/main/java/org/apache/qpid/example/Hello.java
Which uses this configuration/property file :
htt...
Hi,
I have worked with TIBCO RV on applications that require low latency messaging. I have heard of projects where the team had to roll out their own socket code to get messages faster than the speed offered by RV.
Are there any tools out there, probably open source that can come close to or better than TIBCO RV?
Thanks
Hari
...
Have you used Apache qpid with .net Project?
Would like to know your experience about ease of use with .net project/WCF.
Are you happy with it?
Reason i am asking is because we are stuck at making decision between qpid and rabbitmq. I played with rabbitmq not qpid yet. Rabbitmq has it's share of problem with wcf implementation.
Other ...
I am contemplating the possibility of using AMQP as the "glue" to tie together multiple software components (written in different languages) of a big request processing system.
But I don't want the components to blindly insert messages into queues, I want some sort of control over it. So, a "frontend" to the queues is in order - somethi...
Hi,
I have a pylons based webapp and i'd love to use celery + rabbitmq for some time taking tasks. I've taken a look at the celery-pylons project but I haven't succeeded in using it.
My main problem with celery is: where do i put the celeryconfig.py file or is there any other way to specify the celery options eg. BROKER_HOST and the lik...