are you using heartbeat in your connection? that can happen if you don't use it.
http://stackoverflow.com/questions/11559369/how-to-configure-heartbeat-for-spring-rabbitmq
Type: Posts; User: flopezluis; Keyword(s):
are you using heartbeat in your connection? that can happen if you don't use it.
http://stackoverflow.com/questions/11559369/how-to-configure-heartbeat-for-spring-rabbitmq
Great answer, Thanks a lot!!
Is there any way to increase the number of consumers without stopping Tomcat?
Like hot deploy, so you can change the configuration file:
from <int-amqp:inbound-channel-adapter...
I'm looking into the code:
public boolean compareAndSet(final int expect, final int update) {
return generalOps.execute(new SessionCallback<Boolean>() {
@SuppressWarnings("unchecked")...
Hi,
I think there is an error with the method compareAndSet in redis Data 2.1.0.
As far as I know this method is atomic, so it cannot be set the value more than once but if you execute the code...
That's exactly what I need :). I don't why I didn't see it when I was looking for in the Spring Integration Reference.
Thanks a lot
I would like to make like a infinite loop with Spring Integration, but I don't know if this can affect the performance of the whole solution. My idea is to have a process which is constantly asking...
Thanks! I've done as you said. I paste the configuration here just in case it's useful for someone.
The consumer:
<rabbit:queue exclusive="true" name="anonymousQueue" />
<rabbit:topic-exchange...
I'm doing a component that is going to work with third party components. So I don't know the queue names in advance, i was thinking to set a pattern:
serviceComponentRequest
.................